diff --git a/ - Copy.gitignore b/ - Copy.gitignore
new file mode 100644
index 0000000..593db2a
--- /dev/null
+++ b/ - Copy.gitignore
@@ -0,0 +1,5 @@
+#Ignore All
+.
+
+#
+!/ArcGIS-Analysis-Python
\ No newline at end of file
diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md
deleted file mode 100644
index b6f363d..0000000
--- a/.github/copilot-instructions.md
+++ /dev/null
@@ -1,50 +0,0 @@
-## Copilot / Agent instructions for DisMAP
-
-Short, actionable notes to help an AI agent be productive in this repository.
-
-- Project split:
- - `data_processing_rcode/` — R scripts to download and compile raw survey data. Entry point: open `DisMAP.Rproj` and run the `Compile_Dismap_Current.R` and `create_data_for_map_generation.R` scripts. These generate the CSV/GDB inputs consumed by the Python/ArcGIS layer.
- - `ArcGIS-Analysis-Python/` — Python-based ArcGIS Pro tooling that reads the processed CSVs and generates interpolated rasters, mosaics and indicators. Main code is under `ArcGIS-Analysis-Python/src/dismap_tools/`.
-
-- Environment and how to run (high level):
- - The Python tools require an ArcGIS Pro Python environment (ArcPy available). Run scripts from the ArcGIS Pro Python interpreter (for example `arcgispro-py3`).
- - R workflows should be run from the R project (`DisMAP.Rproj`) so relative paths and project options work.
-
-- Project-specific patterns and conventions:
- - Windows paths and raw f-strings are used widely (e.g., rf"{home_folder}\{project}.aprx"). Prefer Windows-style paths when editing code examples.
- - The repository uses date-named version folders (e.g., `"August 1 2025"`) that contain geodatabases and build artifacts. Avoid editing large binary datasets in those folders; treat them as outputs.
- - Many Python modules import `arcpy` and call `arcpy.mp.ArcGISProject(...)` (see `src/dismap_tools/publish_to_portal_director.py`, `dismap_project_setup.py`, and `dismap_metadata_processing.py`). Changes to ArcPy usage must be validated inside an ArcGIS Pro environment.
- - The Python package uses a `src/` layout and a `setup.py` that expects `src/version.py`. Confirm `src/version.py` exists or define `__version__` before packaging.
-
-- Key files to open first (quick tour):
- - `README.md` (repo root) — project overview and where R/ArcGIS pieces live.
- - `DisMAP.Rproj` and `data_processing_rcode/Compile_Dismap_Current.R` — how raw data is ingested.
- - `ArcGIS-Analysis-Python/src/dismap_tools/` — main Python processing scripts (directors/workers, publish scripts).
- - `ArcGIS-Analysis-Python/DisMAP.aprx` — base ArcGIS Pro project referenced by scripts.
- - `ArcGIS-Analysis-Python/setup.py` — packaging layout (src/ package style).
-
-- Common developer workflows (what agents should do / check):
- - Before editing processing logic, reproduce a minimal run: run the R compile script to generate the CSV inputs, then run a single Python director (e.g., `dev_dismap_director.py`) inside ArcGIS Pro Python to confirm behavior.
- - When adjusting ArcPy code, test in ArcGIS Pro (or the `arcgispro-py3` conda env) — unit tests are minimal/absent (`conftest.py` is empty), so use small smoke runs.
- - Publishing scripts call portal APIs via ArcPy and require credentials and a valid `.aprx`. Don't attempt to publish during dry edits; mock or dry-run by inspecting `arcpy.mp` calls.
-
-- Examples (where to change things safely):
- - To add a preprocessing step, modify `data_processing_rcode/create_data_for_map_generation.R` so outputs remain CSVs expected by `src/dismap_tools/*`.
- - To run a single processing step in Python, open ArcGIS Pro Python prompt and run the target director script from `ArcGIS-Analysis-Python\\src\\dismap_tools\\`.
-
-- Integration points & external dependencies to be aware of:
- - ArcGIS Pro / ArcPy (required). Scripts assume ArcGIS Pro APIs and Windows paths.
- - ArcGIS Portal (used by `publish_to_portal_director.py`) — publishing requires portal credentials and network access.
- - Large geodatabases and rasters are stored under versioned folders — these are produced artifacts.
-
-- Safety and commit guidance for agents:
- - Do not modify or commit large binary geodatabases/raster files. Prefer changes to scripts that produce them.
- - `.aprx` files are referenced but commonly ignored by `.gitignore`; double-check before committing APRX changes.
- - If `src/version.py` is missing, do not fabricate a version without asking — instead add a comment and propose the change in a PR.
-
-- Quick checklist for a PR from an agent:
- 1. Describe which director/worker you ran and the minimal dataset used.
- 2. Confirm tests or smoke-runs and the ArcGIS Pro environment used (path to Python interpreter and Pro version).
- 3. Point to exact input CSVs and output GDB/rasters affected (path under a version folder).
-
-If anything above is unclear or you want the file to include more specific run commands for your local ArcGIS Pro installation, tell me which pieces you want expanded and I'll iterate.
diff --git a/.gitignore b/.gitignore
index a304de2..593db2a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,49 +1,5 @@
-# History files
-.Rhistory
-.Rapp.history
-.RDataTmp
+#Ignore All
+.
-# Session Data files
-.RData
-
-# User-specific files
-.Ruserdata
-
-# Example code in package build process
-*-Ex.R
-
-# Output files from R CMD build
-/*.tar.gz
-
-# Output files from R CMD check
-/*.Rcheck/
-
-# RStudio files
-.Rproj.user/
-
-# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
-.httr-oauth
-
-# knitr and R markdown default cache directories
-*_cache/
-/cache/
-
-# Temporary files created by R markdown
-*.utf8.md
-*.knit.md
-
-# R Environment Variables
-.Renviron
-
-/data_processing_rcode/data/
-/data_processing_rcode/output/
-/data_processing_rcode/notforgit/
-
-
-/code/.quarto/
-*.zip
-*.tex
-*.log
-*.markdown
-*.rmarkdown
-__init__.py
\ No newline at end of file
+#
+!/ArcGIS-Analysis-Python
\ No newline at end of file
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
new file mode 100644
index 0000000..4eecec7
--- /dev/null
+++ b/.pre-commit-config.yaml
@@ -0,0 +1,23 @@
+# .pre-commit-config.yaml
+repos:
+ - repo: https://github.com/pre-commit/pre-commit-hooks
+ rev: v4.5.0 # Use the latest version
+ hooks:
+ - id: trailing-whitespace
+ - id: end-of-file-fixer
+ - id: check-yaml
+ - id: check-added-large-files
+ - id: check-json
+ - id: detect-private-key
+# - repo: https://github.com/psf/black
+# rev: 24.3.0 # Use the latest version
+# hooks:
+# - id: black
+ - repo: https://github.com/PyCQA/flake8
+ rev: 7.0.0 # Use the latest version
+ hooks:
+ - id: flake8
+ - repo: https://github.com/PyCQA/isort
+ rev: 5.13.2 # Use the latest version
+ hooks:
+ - id: isort
diff --git a/.vscode/settings.json b/.vscode/settings.json
deleted file mode 100644
index 1e39aa5..0000000
--- a/.vscode/settings.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "python.defaultInterpreterPath": "C:\\Users\\john.f.kennedy\\AppData\\Local\\Programs\\ArcGIS\\Pro\\bin\\Python\\envs\\arcgispro-py3\\python.exe"
-}
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/ - Copy.gitignore b/ArcGIS-Analysis-Python/ - Copy.gitignore
new file mode 100644
index 0000000..593db2a
--- /dev/null
+++ b/ArcGIS-Analysis-Python/ - Copy.gitignore
@@ -0,0 +1,5 @@
+#Ignore All
+.
+
+#
+!/ArcGIS-Analysis-Python
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/.gitignore b/ArcGIS-Analysis-Python/.gitignore
index 4b83b4e..8578c70 100644
--- a/ArcGIS-Analysis-Python/.gitignore
+++ b/ArcGIS-Analysis-Python/.gitignore
@@ -1,45 +1,2 @@
-# Global ignore: everything
-*
-
-# allow directories so we can whitelist specific content
-!*/
-
-# Remove selected directories
-.ipynb_checkpoints
-**/.ipynb_checkpoints
-.backups
-__pycache__
-**/__pycache__
-
-
-# include python files anywhere
-!*.py
-!*.pyt
-!**/*.py
-!**/*.pyt
-
-# still ignore py backup variants
-*.~py
-**/*.~py
-# ignore Python init files globally
-__init__.py
-**/__init__.py
-
-# include Scripts folder and its contents
-!Scripts/
-!Scripts/**
-
-# include README files in root, Scripts, and dismap_tools
-!README.md
-!Scripts/README.md
-!src/dismap_tools/README.md
-
-# Notebook folder and its notebooks
-Notebook/**
-*/secure/**
-**/secure/**
-user_credentials.py
-**/user_credentials.py
-
-# explicitly exclude esri folder under dismap_tools
-src/dismap_tools/esri/
+#Ignore All
+.
diff --git a/ArcGIS-Analysis-Python/.pre-commit-config.yaml b/ArcGIS-Analysis-Python/.pre-commit-config.yaml
new file mode 100644
index 0000000..4eecec7
--- /dev/null
+++ b/ArcGIS-Analysis-Python/.pre-commit-config.yaml
@@ -0,0 +1,23 @@
+# .pre-commit-config.yaml
+repos:
+ - repo: https://github.com/pre-commit/pre-commit-hooks
+ rev: v4.5.0 # Use the latest version
+ hooks:
+ - id: trailing-whitespace
+ - id: end-of-file-fixer
+ - id: check-yaml
+ - id: check-added-large-files
+ - id: check-json
+ - id: detect-private-key
+# - repo: https://github.com/psf/black
+# rev: 24.3.0 # Use the latest version
+# hooks:
+# - id: black
+ - repo: https://github.com/PyCQA/flake8
+ rev: 7.0.0 # Use the latest version
+ hooks:
+ - id: flake8
+ - repo: https://github.com/PyCQA/isort
+ rev: 5.13.2 # Use the latest version
+ hooks:
+ - id: isort
diff --git a/ArcGIS-Analysis-Python/August 1 2025/__init__.py b/ArcGIS-Analysis-Python/August 1 2025/__init__.py
deleted file mode 100644
index b2fecfa..0000000
--- a/ArcGIS-Analysis-Python/August 1 2025/__init__.py
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/env python3
-# For relative imports to work in Python 3.11
-from August 1 2025 import user_credentials
diff --git a/ArcGIS-Analysis-Python/August 1 2025/user_credentials.py b/ArcGIS-Analysis-Python/August 1 2025/user_credentials.py
deleted file mode 100644
index d576a4b..0000000
--- a/ArcGIS-Analysis-Python/August 1 2025/user_credentials.py
+++ /dev/null
@@ -1,6 +0,0 @@
-def main():
- credentials={"username" : "", "password" : ""}
- return credentials
-
-if __name__ == '__main__':
- main()
diff --git a/ArcGIS-Analysis-Python/Notebooks/__init__.py b/ArcGIS-Analysis-Python/Notebooks/__init__.py
deleted file mode 100644
index 1f2ba76..0000000
--- a/ArcGIS-Analysis-Python/Notebooks/__init__.py
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/env python3
-# For relative imports to work in Python 3.11
-from DisMap-ArcGIS-Analysis-Python import user_credentials
diff --git a/ArcGIS-Analysis-Python/Notebooks/secure/user_credentials.py b/ArcGIS-Analysis-Python/Notebooks/secure/user_credentials.py
deleted file mode 100644
index d576a4b..0000000
--- a/ArcGIS-Analysis-Python/Notebooks/secure/user_credentials.py
+++ /dev/null
@@ -1,6 +0,0 @@
-def main():
- credentials={"username" : "", "password" : ""}
- return credentials
-
-if __name__ == '__main__':
- main()
diff --git a/ArcGIS-Analysis-Python/README.md b/ArcGIS-Analysis-Python/README.md
index 5f000d6..6900a4d 100644
--- a/ArcGIS-Analysis-Python/README.md
+++ b/ArcGIS-Analysis-Python/README.md
@@ -1,7 +1,7 @@
# DisMAP ArcGIS Pro Analysis using Python
> This code is always in development. Find the code used for various reports in the code [releases](https://github.com/nmfs-fish-tools/DisMAP/releases).
-#### Explanation of this Folder
+#### Explanation of this Folder
This folder is part of the overall DisMAP repository and inparticular the ArcGIS Python Process fork. The "src" folder coontains a folder called "dismap_tools", which contains the set of Python scripts to process raw data into other datasets and eventually the interpolated biomass rasters.
@@ -11,7 +11,7 @@ If you see that the data, product, or metadata can be improved, you are invited
#### NOAA-NMFS GitHub Enterprise Disclaimer
-This repository is a scientific product and is not official communication of the National Oceanic and Atmospheric Administration, or the United States Department of Commerce. All NOAA GitHub project code is provided on an ‘as is’ basis and the user assumes responsibility for its use. Any claims against the Department of Commerce or Department of Commerce bureaus stemming from the use of this GitHub project will be governed by all applicable Federal law. Any reference to specific commercial products, processes, or services by service mark, trademark, manufacturer, or otherwise, does not constitute or imply their endorsement, recommendation or favoring by the Department of Commerce.
+This repository is a scientific product and is not official communication of the National Oceanic and Atmospheric Administration, or the United States Department of Commerce. All NOAA GitHub project code is provided on an ‘as is’ basis and the user assumes responsibility for its use. Any claims against the Department of Commerce or Department of Commerce bureaus stemming from the use of this GitHub project will be governed by all applicable Federal law. Any reference to specific commercial products, processes, or services by service mark, trademark, manufacturer, or otherwise, does not constitute or imply their endorsement, recommendation or favoring by the Department of Commerce.
The Department of Commerce seal and logo, or the seal and logo of a DOC bureau, shall not be used in any manner to imply endorsement of any commercial product or activity by DOC or the United States Government.
#### NOAA License
diff --git a/ArcGIS-Analysis-Python/Scripts/README.md b/ArcGIS-Analysis-Python/Scripts/README.md
deleted file mode 100644
index f4ad17f..0000000
--- a/ArcGIS-Analysis-Python/Scripts/README.md
+++ /dev/null
@@ -1,23 +0,0 @@
-# DisMAP ArcGIS Pro Analysis using Python
-> This code is always in development. Find the code used for various reports in the code [releases](https://github.com/nmfs-fish-tools/DisMAP/releases).
-
-### Explanation of this Folder
-* dismap_tools folder - This folder contains the current version of Python scripts for generating the interpolated biomass and calculating the distribution indicators (latitude, depth, range limits, etc).
-
-#### Suggestions and Comments
-
-If you see that the data, product, or metadata can be improved, you are invited to create a [pull request](https://github.com/nmfs-fish-tools/DisMAP/pulls) or [submit an issue to the code’s repository](https://github.com/nmfs-fish-tools/DisMAP/issues).
-
-#### NOAA-NMFS GitHub Enterprise Disclaimer
-
-This repository is a scientific product and is not official communication of the National Oceanic and Atmospheric Administration, or the United States Department of Commerce. All NOAA GitHub project code is provided on an ‘as is’ basis and the user assumes responsibility for its use. Any claims against the Department of Commerce or Department of Commerce bureaus stemming from the use of this GitHub project will be governed by all applicable Federal law. Any reference to specific commercial products, processes, or services by service mark, trademark, manufacturer, or otherwise, does not constitute or imply their endorsement, recommendation or favoring by the Department of Commerce.
-The Department of Commerce seal and logo, or the seal and logo of a DOC bureau, shall not be used in any manner to imply endorsement of any commercial product or activity by DOC or the United States Government.
-
-#### NOAA License
-
-Software code created by U.S. Government employees is not subject to copyright in the United States (17 U.S.C. §105). The United States/Department of Commerce reserve all rights to seek and obtain copyright protection in countries other than the United States for Software authored in its entirety by the Department of Commerce. To this end, the Department of Commerce hereby grants to Recipient a royalty-free, nonexclusive license to use, copy, and create derivative works of the Software outside of the United States.
-
-
-
-[U.S. Department of Commerce](https://www.commerce.gov/) \| [National Oceanographic and Atmospheric Administration](https://www.noaa.gov) \| [NOAA Fisheries](https://www.fisheries.noaa.gov/)
-
diff --git a/ArcGIS-Analysis-Python/Scripts/__pycache__/__init__.cpython-313.pyc b/ArcGIS-Analysis-Python/Scripts/__pycache__/__init__.cpython-313.pyc
deleted file mode 100644
index ed2c952..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/__pycache__/__init__.cpython-313.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/README.md b/ArcGIS-Analysis-Python/Scripts/dismap_tools/README.md
deleted file mode 100644
index ad2fbf0..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/README.md
+++ /dev/null
@@ -1,1979 +0,0 @@
-# DisMAP ArcGIS Pro Analysis using Python
-> This code is always in development. Find the code used for various reports in the code [releases](https://github.com/nmfs-fish-tools/DisMAP/releases).
-
-### Table of contents ###
-
-> - [*Purpose*](#purpose)
-> - [*DisMAP Processing Steps*](#dismap-processing-steps)
-> - [*DisMAP ArcGIS Python Processing Setup*](#dismap-arcigs-python-processing-setup)
-> - [Zip and Unzip CSV Data](#zip-and-unzip-csv-data)
-> - [Zip and Unzip Shapefile Data](#zip-and-unzip-shapefile-data)
-> - [DisMAP Tools](#dismap-tools)
-> - [DisMAP Project Setup](#dismap-project-setup)
-> - [Create Base Bathymetry](#create-base-bathymetry)
-> - [Create Data Dictionary JSON Files](#create-data-dictionary-json-files)
-> - [Create Metadata JSON Files](#create-metadata-json-files)
-> - [Import Datasets Species Filter CSV Data](#import-datasets-species-filter-csv-data)
-> - [*DisMAP ArcGIS Python Processing*](#dismap-arcigs-python-processing)
-> - [Create Regions from Shapefiles Director and Worker](#create-regions-from-shapefiles-director-and-worker)
-> - [Create Region Fishnets Director and Worker](#create-region-fishnets-director-and-worker)
-> - [Create Region Bathymetry Director and Worker](#create-region-bathymetry-director-and-worker)
-> - [Create Region Sample Locations Director and Worker](#create-region-sample-locations-director-and-worker)
-> - [Create Region Species Year Image Name Table Director and Worker](#create-region-species-year-image-name-table-director-and-worker)
-> - [Create Region Rasters Director and Worker](#create-region-rasters-director-and-worker)
-> - [Create Region Species Richness Director and Worker](#create-region-species-richness-director-and-worker)
-> - [Create Region Mosaics Director and Worker](#create-region-mosaics-director-and-worker)
-> - [Create Region Indicators Table Direcor and Worker](#create-region-indicators-table-director-and-worker)
-> - [Publish to Portal Director](#publish-to-portal-director)
-> - [*Suggestions and Comments*](#suggestions-and-comments)
-> - [*NOAA README*](#noaa-readme)
-> - [*NOAA-NMFS GitHub Enterprise Disclaimer*](#noaa-nmfs-github-enterprise-disclaimer)
-> - [*NOAA License*](#noaa-license)
-
-### *Purpose*
-These Python scripts were developed for the DisMAP ArcGIS Python Processing phase of the project. In general the scripts listed below are ran in the order they are presented in a Python IDE such as [*Pyscripter*](https://sourceforge.net/projects/pyscripter/).
-
-# DisMAP Processing Steps
-- ### Step 1 create a folder for this project
-
-- ### Step 2 create an ArcGIS Pro project, call it DisMAP, and save in the folder above
-
-- ### Step 3 create three folders: Bathymetry, Dataset Shapefiles, and Initial Data, or use the python script dismap_base_project.py script
-
-- ### Step 4 place the contents of the Bathemetry zip file into the "Bathemetry folder"
-
-- ### Step 5 place the contents of the CSV zip file intp the "Initial Data" folder
-
-- ### Step 6 place the contents of the Dataset Shapefiles.zip file into the Dataset Shapefiles folder
-
-- ### Step 7 Update the create_base_bathymetry.py file by changing the project_folder variable to the base project folder created above
-
-- ### Step 8 Update the dismap_version_project_setup.py file by changing the new_project_folder variable to a version date, like "February 1 2026". Then run the script
-
-- ### Step 9 Update the create_data_dictionary_json_files.py file by changing the project_gdb variable to a version date, like "February 1 2026". Then run the script
-
-- ### Step 10 Update the create_metadata_json_files.py file by changing the project_folder variable to a version date, like "February 1 2026". Then run the script
-
-- ### Step 11 Update the import_datasets_species_filter_csv_data.py file by changing the project_gdb variable to a version date, like "February 1 2026". Then run the script
-
-- ### Step 12 Copy the contents from the folder "Dataset Shapefiles" to the version project folder "Dataset_Shapefiles"
-
-- ### Step 13 Update the create_regions_from_shapefiles_director.py file by changing the project_gdb variable to a version date, like "February 1 2026". Then run the script
-
-- ### Step 14 Update the create_region_fishnets_director.py file by changing the project_gdb variable to a version date, like "February 1 2026". Then run the script
-
-- ### Step 15 Update the create_region_bathymetry_director.py file by changing the project_gdb variable by updating the version folder. For example: from "Project Folder\August 1 2025\August 1 2025.gdb" to "Project Folder\February 1 2026\February 1 2026.gdb". Then run the script
-
-- ### Step 16 Update the create_species_year_image_name_table_director.py file by changing the project_gdb variable by updating the version folder. For example: from "Project Folder\August 1 025\August 1 2025.gdb" to "Project Folder\February 1 2026\February 1 2026.gdb". Then run the script
-
-- ### Step 17 Update the create_region_sample_locations_director.py file by changing the project_gdb variable by updating the version folder. For example: from "Project Folder\August 1 025\August 1 2025.gdb" to "Project Folder\February 1 2026\February 1 2026.gdb". Then run the script
--
-- ### Step 18 Update the create_rasters_director.py file by changing the project_gdb variable by updating the version folder. For example: from "Project Folder\August 1 025\August 1 2025.gdb" to "Project Folder\February 1 2026\February 1 2026.gdb". Then run the script
-
-- ### Step 19 Update the create_species_richness_rasters_director.py file by changing the project_gdb variable by updating the version folder. For example: from "Project Folder\August 1 025\August 1 2025.gdb" to "Project Folder\February 1 2026\February 1 2026.gdb". Then run the script
-
-- ### Step 20 Update the create_mosaics_director.py file by changing the project_gdb variable by updating the version folder. For example: from "Project Folder\August 1 025\August 1 2025.gdb" to "Project Folder\February 1 2026\February 1 2026.gdb". Then run the script
-
-- ### Step 21 Update the create_indicators_table_director.py file by changing the project_gdb variable by updating the version folder. For example: from "Project Folder\August 1 025\August 1 2025.gdb" to "Project Folder\February 1 2026\February 1 2026.gdb". Then run the script
-
-- ### Step 22 Update the publish_to_portal_director.py file by changing the project_gdb variable by updating the version folder. For example: from "Project Folder\August 1 025\August 1 2025.gdb" to "Project Folder\February 1 2026\February 1 2026.gdb". Then run the script
-
-### *DisMAP ArcGIS Python Processing Project Setup*
-- #### Zip and Unzip CSV Data
- - The [zip_and_unzip_csv_data.py](zip_and_unzip_csv_data.py) file archives/extracts sample location and biomass measurements in a CSV data file
- - The script takes the target location of were the file will be extracted and the source Zip file path
- - Extracts CSV survey data from a ZIP archive, renames files, and attaches metadata:
- 1. **Extract ZIP** — Unzips files from source ZIP (e.g., `CSV Data 2025 08 01.zip`) into the project's `CSV_Data` folder
- 2. **Rename CSV files** — Copies extracted `*_survey.csv` files and renames them to `*_IDW.csv` (e.g., `AI_IDW_survey.csv` → `AI_IDW.csv`)
- 3. **Clean up** — Removes the temporary `python/` extraction subdirectory
- 4. **Attach metadata** — For each `*_IDW.csv` file:
- - Synchronizes ArcGIS metadata
- - Imports contact/organizational metadata from `DisMAP Contacts 2025 08 01.xml`
- - Parses XML with lxml, sorts elements by a predefined `root_dict` order
- - Writes updated metadata back to file
- 5. **Return path** — Returns the `CSV_Data` output directory path
-
- - Uses ArcGIS tool parameters and defaults to `~\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025`.
-
-- #### Zip and Unzip Shapefile Data
- - The [zip_and_unzip_shapefile_data.py](zip_and_unzip_shapefile_data.py) file contains functions to archive/extract the shapefiles that represent each region
- - The script takes the target location of were the file will be extracted and the source Zip file path
- - No metadata processing or file renaming; straightforward extraction of shapefiles (e.g., `AI_IDW_Region.shp`, `EBS_IDW_Region.shp`, etc.) into their target directory
- - Extracts shapefile data from a ZIP archive:
- 1. **Extract ZIP** — Unzips files from source ZIP into the project's `Dataset_Shapefiles` folder (changes working directory with `os.chdir()`)
- 2. **Return path** — Returns the `Dataset_Shapefiles` output directory path
- - Uses ArcGIS tool parameters and defaults to `~\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025`.
- - Follows ArcGIS tool conventions (parameter access via `arcpy.GetParameterAsText()`, messaging via `arcpy.AddMessage()`, error handling with `arcpy.ExecuteError`)
-
-- #### DisMAP Tools
- - The [dismap_tools.py](dismap_tools.py) file is a utility library with XML/metadata parsing, field transformation, and spatial analysis helpers using lxml & ArcPy that is imported into many of the project scripts
-
- **XML & Metadata Functions:**
- - **`parse_xml_file_format_and_save(csv_data_folder, xml_file, sort)`** — Parses and reformats XML metadata using lxml; optionally sorts elements by predefined priority order from `root_dict.json`; writes back to file
- - **`print_xml_file(xml_file, sort)`** — Displays formatted XML metadata to ArcGIS messages
- - **`compare_metadata_xml(file1, file2)`** — Compares two metadata XML files
- - **`export_metadata(csv_data_folder, in_table)`** — Exports ArcGIS metadata from a dataset
- - **`import_metadata(csv_data_folder, dataset)`** — Imports standardized metadata from JSON definitions into GDB dataset
-
- **Field & Table Management:**
- - **`add_fields(csv_data_folder, in_table)`** — Adds fields to a GDB table based on schema from `table_definitions.json` + `field_definitions.json`
- - **`alter_fields(csv_data_folder, in_table)`** — Updates field aliases and properties on existing fields
- - **`field_definitions(csv_data_folder, field)`** — Loads field schema dictionary from `field_definitions.json`
- - **`dTypesCSV(csv_data_folder, table)`** — Returns pandas data types for CSV columns based on table schema
- - **`dTypesGDB(csv_data_folder, table)`** — Returns NumPy data types for GDB fields based on table schema
-
- **Data Inspection & Utilities:**
- - **`check_datasets(datasets)`** — Logs detailed metadata (extent, cell size, date created, spatial reference, sample rows) for feature classes, rasters, and tables
- - **`check_transformation(ds, cs)`** — Validates spatial reference transformation compatibility
- - **`get_transformation(gsr_wkt, psr_wkt)`** — Gets geographic transformation between two coordinate systems
- - **`clear_folder(folder)`** — Removes all files from a folder
- - **`backup_gdb(project_gdb)`** — Creates a backup copy of geodatabase and compacts both
-
- **Data Lookup & Conversion:**
- - **`date_code(version)`** — Generates/extracts DateCode from project version name (e.g., `"August 1 2025"` → `"20250801"`)
- - **`convertSeconds(seconds)`** — Converts seconds to HH:MM:SS format
- - **`get_encoding_index_col(csv_file)`** — Detects CSV file encoding using `chardet`
- - **`dataset_title_dict(project_gdb)`** — Builds lookup dictionary mapping region/dataset codes to display titles
- - **`metadata_dictionary_json(csv_data_folder, dataset_name)`** — Loads metadata templates from JSON
- - **`table_definitions(csv_data_folder, field)`** — Loads table-to-fields schema mapping from JSON
-
- **Pattern**: Serves as central helper library for other DisMAP tools; heavily uses JSON schema files (`field_definitions.json`, `table_definitions.json`) as single source of truth for GDB structure; consistent exception handling with ArcPy logging; all functions clean up local variables at completion.
-
-- #### DisMAP Project Setup
- - The [dismap_project_setup.py](dismap_project_setup.py) ArcGIS/ArcPy/Python script creates ArcGIS Pro project folder structure: GDB, scratch workspace, subfolders, and configures toolboxes/databases in `.aprx`
- - The input for the script is the Project Folder path (i.e. "Documents/ArcGIS/Projects/DisMAP/ArcGIS-Analysis-Python/December 1 2025")
-
- **Main function: `script_tool(new_project_folder, project_folders)`**
-
- 1. **Get home folder**
- - Accesses current ArcGIS Pro project's home folder via `arcpy.mp.ArcGISProject("CURRENT")`
-
- 2. **Create project folder structure**:
- - Creates main project folder (e.g., `"September 1 2025"`)
- - Creates project GDB: `{new_project_folder}\{new_project_folder}.gdb`
- - Creates Scratch folder: `{new_project_folder}\Scratch`
- - Creates scratch GDB: `Scratch\scratch.gdb`
- - Creates subfolders from comma-separated list (e.g., `CRFs;CSV_Data;Dataset_Shapefiles;Images;Layers;Metadata_Export;Publish`)
-
- 3. **Configure `.aprx` file**:
- - Saves a copy of the current project as `{new_project_folder}.aprx`
- - Opens the new APRX file
- - Removes all existing maps
- - Updates project databases: sets the new project GDB as default database
- - Updates project toolboxes: registers `DisMAP.atbx` as default toolbox
- - Saves the configured APRX
-
- 4. **Parameters**:
- - `new_project_folder` — Name of new project folder (defaults to `"September 1 2025"`)
- - `project_folders` — Semicolon-separated subfolder names (defaults to `"CRFs;CSV_Data;Dataset_Shapefiles;Images;Layers;Metadata_Export;Publish"`)
-
- **Pattern**: Designed to be called from ArcGIS Pro as a script tool; uses standard toolbox parameter conventions (`arcpy.GetParameterAsText()`, `arcpy.SetParameterAsText()`) and follows DisMAP folder/naming conventions (date-based project folders, standard GDB/subfolder structure).
-
-- #### Create Base Bathymetry
- - The [create_base_bathymetry.py](create_base_bathymetry.py) ArcGIS/ArcPy/Python script processes bathymetry data for use in later scripts
- - The input for the script is the Project Folder path (i.e. "Documents/ArcGIS/Projects/DisMAP/ArcGIS-Analysis-Python/December 1 2025")
- - All functions follow ArcGIS Pro logging/error handling patterns, manage ArcPy environments (workspace, cellsize, resampling), and clean up local variables at the end.
- - The script contains four main functions:
-
- 1. **`raster_properties_report()`** — Utility that logs raster metadata (spatial reference, extent, cell size, statistics, pixel type) using `arcpy.AddMessage()`.
-
- 2. **`create_alasaka_bathymetry(project_folder)`** — Processes Alaska bathymetry:
- - Copies ASCII GRID files (AI, EBS, GOA) into a geodatabase
- - Converts positive depth values to negative
- - Appends/clips rasters to ensure full coverage
- - Reprojects each region's bathymetry to its regional spatial reference (AI_IDW, EBS_IDW, etc.)
- - Copies final rasters to the project bathymetry GDB and compacts the database
-
- 3. **`create_hawaii_bathymetry(project_folder)`** — Processes Hawaii bathymetry:
- - Converts a polygon shapefile grid (BFISH_PSU.shp) to a raster using depth field
- - Negates values and saves to GDB
- - Copies final rasters to the project bathymetry GDB and compacts the database
-
- 4. **`gebco_bathymetry(project_folder)`** — Processes GEBCO data for all other regions:
- - Converts GEBCO ASCII rasters to GDM rasters for each region
- - Copies final rasters to the project bathymetry GDB and compacts the database
-
-- #### Create Data Dictionary JSON Files
- - The [create_data_dictionary_json_files.py](create_data_dictionary_json_files.py) ArcGIS/ArcPy/Python script that generates JSON metadata definitions for all GDB tables and fields in the DisMAP project:
-
- ***Main function: `script_tool(project_folder)`***
-
- 1. **Field Definitions Dictionary** (massive hardcoded dict covering ~200+ fields):
- - Defines every GDB field used in DisMAP with metadata:
- - `field_aliasName`, `field_name`, `field_type`, `field_length`, `field_precision`, `field_scale`
- - `field_editable`, `field_isNullable`, `field_required`
- - `field_attrdef`, `field_attrdefs`, `field_attrdomv` (ArcGIS ISO metadata attributes)
- - `field_domain` (for referential integrity links)
- - Examples: `CSVFile`, `Category`, `CellSize`, `CenterOfGravityDepth`, `CommonName`, `DateCode`, `Depth`, `Dimensions`, etc.
-
- 2. **Table Field Mappings** (hardcoded list patterns):
- - Defines which fields belong to each table type:
- - `_Datasets` — dataset catalog fields (DatasetCode, CSVFile, TableName, Region, Season, DateCode, etc.)
- - `_Indicators` — distribution indicator fields (CenterOfGravity*, MinimumLatitude, MaximumDepth, etc.)
- - `_IDW` — Inverse Distance Weighting survey data (Species, WTCPUE, MapValue, Coordinates, Depth)
- - `_Sample_Locations` — sample point data (SampleID, Year, Species, WTCPUE, Stratum, Coordinates)
- - `_Species_Filter` — species metadata (Species, CommonName, TaxonomicGroup, FilterRegion, ManagementBody)
- - `_DisMAP_Survey_Info` — survey metadata (SurveyName, Region, Season, GearType, Years, DataSource)
- - `_SpeciesPersistenceIndicatorTrend`, `_SpeciesPersistenceIndicatorPercentileBin` — persistence indicators
- - Region-specific: `_Boundary`, `_Extent_Points`, `_Fishnet`, `_Lat_Long`, `_Mosaic`, `_Raster_Mask`
-
- 3. **Dynamic Table-to-Fields Mapping**:
- - Iterates over hardcoded table names (15 IDW regions + 6 metadata tables)
- - For each `*_IDW` region: assigns fields + auto-generates derived table variants (Sample_Locations, Indicators, Bathymetry, Boundary, Extent_Points, Fishnet, LayerSpeciesYearImageName, Lat_Long, Latitude, Longitude, Mosaic, Raster_Mask, Region)
- - Special handling for metadata tables (Datasets, DisMAP_Regions, Indicators, Species_Filter, DisMAP_Survey_Info, SpeciesPersistenceIndicatorTrend, SpeciesPersistenceIndicatorPercentileBin)
-
- 4. **JSON Output**:
- - Exports `field_definitions.json` → all field metadata (keyed by field name)
- - Exports `table_definitions.json` → all table field lists (keyed by table name, values are lists of field names)
- - Both written to `{project_folder}\CSV_Data\`
-
- 5. **Cleanup & Validation**:
- - Logs all table/field mappings
- - Cross-checks that all mapped fields exist in `field_definitions`
- - Compacts GDB
-
- **Key Pattern**: Serves as schema/metadata registry for the entire DisMAP project; JSON files are consumed by downstream tools (e.g., import_datasets_species_filter_csv_data.py loads field schemas) to enforce consistent data types and field properties across all CSV imports and GDB operations.
-
-- #### Create Metadata JSON Files
- - The [create_metadata_json_files.py](create_metadata_json_files.py) ArcGIS/ArcPy/Python script that generates standardized XML metadata ordering dictionaries and contact information JSON files for ArcGIS Pro metadata templates:
-
- **Main function: `script_tool(project_gdb)`**
- Creates and exports multiple JSON lookup/mapping files to `{project_folder}\CSV_Data\`:
-
- 1. **`root_dict.json`**
- - XML element priority ordering for top-level ISO 19139 metadata sections:
- - Maps 21 root elements to sort order (e.g., `Esri: 0`, `dataIdInfo: 1`, `dqInfo: 2`, `distInfo: 3`)
- - Used to normalize/sort XML metadata trees consistently
-
- 2. **`esri_dict.json`** — ArcGIS Esri-specific metadata element ordering:
- - Nested structure for `DataProperties` (lineage, itemProps, nativeExtBox, itemLocation, coordRef)
- - Maps ~15 Esri metadata subelements to sort priorities
-
- 3. **`dataIdInfo_dict.json`** — ISO 19139 Data Identification nested element hierarchy:
- - Complex nested mapping for keyword sections (discKeys, themeKeys, placeKeys, tempKeys, otherKeys)
- - Maps spatial representation, data extent, temporal elements, and citation structures
-
- 4. **`idCitation_dict.json`** — Resource citation element ordering:
- - Maps citation subelements (resTitle, date, presForm, citRespParty) to priorities
-
- 5. **`contact_element_order_dict.json`** — Contact/responsible party element ordering:
- - Defines sort order for ~35 contact metadata fields (name, organization, email, phone, role, citation info)
-
- 6. **`distInfo_dict.json`** — Distribution information element ordering:
- - Maps distribution channel metadata (distorFormat, distorCont, distTranOps)
-
- 7. **`RoleCd_dict.json`** — Role code lookup table:
- - Maps codes (`"001"` → `"Resource Provider"`, `"007"` → `"Point of Contact"`, etc.) for 15 ISO roles
-
- 8. **`tpCat_dict.json`** — ISO Topic Category XML snippets:
- 3- Maps topic codes to pre-formatted XML strings (e.g., `"002"` → `......`)
-
- 9. **`contact_dict.json`** — DisMAP team hardcoded contact information:
- - Defines role-based contacts: Custodian, Point of Contact, Distributor, Author, Principal Investigator, Processors
- - Names: Timothy J Haverland, Melissa Ann Karp, John F Kennedy (with @noaa.gov emails)
- - Used to populate metadata for all DisMAP datasets
-
- **Pattern**: All dicts are created, serialized to JSON, then immediately re-read to verify round-trip integrity. These JSON files are consumed by other tools (e.g., import_datasets_species_filter_csv_data.py, dismap_metadata_processing.py) to ensure consistent metadata formatting and sort order across all GDB objects and portal publications.
-
-- #### Import Datasets Species Filter CSV Data
- - The [import_datasets_species_filter_csv_data.py](import_datasets_species_filter_csv_data.py) ArcGIS/ArcPy/Python script creates ArcGIS Pro project folder structure: GDB, scratch workspace, subfolders, and configures toolboxes/databases in `.aprx`
- - The input for the script is the Project Folder path (i.e. "Documents/ArcGIS/Projects/DisMAP/ArcGIS-Analysis-Python/December 1 2025") and CSV files for:
- 1. Datasets
- 2. Species_Filter
- 3. DisMAP_Survey_Info
- 4. SpeciesPersistenceIndicatorTrend
- 5. SpeciesPersistenceIndicatorPercentileBin
- - Multi-function script that imports survey metadata CSVs into an ArcGIS Pro GDB and manages related utilities:
-
- 1. **`get_encoding_index_col(csv_file)`** — Detects CSV encoding using `chardet` and identifies index column:
- - Reads raw file bytes and auto-detects character encoding
- - Uses pandas to load CSV and check if first column is `"Unnamed: 0"` (pandas-generated index)
- - Returns encoding and index column position
-
- 2. **`worker(project_gdb, csv_file)`** — Main worker function; converts CSV to GDB table:
- - Validates GDB and CSV exist; sets ArcGIS logging/environment
- - Uses `dismap_tools` helper functions to load CSV dtypes and GDB field schema
- - Loads CSV with pandas, handling encoding/index column detection
- - Replaces NaN with empty strings; strips whitespace
- - Converts pandas DataFrame to NumPy structured array matching GDB field types
- - Writes array to temporary in-memory table, then copies to GDB using `arcpy.da.NumPyArrayToTable()`
- - Cleans up string fields (replaces None with empty strings)
- - Calls `dismap_tools.alter_fields()` to adjust field properties
- - Calls `dismap_tools.import_metadata()` to attach metadata from JSON definitions
- - Compacts the GDB
-
- 3. **`update_datecode(csv_file, project_name)`** — Updates DateCode values in CSV:
- - Loads CSV with pandas
- - Extracts old DateCode from first row
- - Replaces all DateCode occurrences with new code based on project_name (using `dismap_tools.date_code()`)
- - Writes updated CSV back to disk
-
- 4. **`script_tool(project_folder)`** — Orchestrates full import workflow:
- - Copies dated CSV files from `home_folder\Datasets\` to project's `CSV_Data\` folder (e.g., `Datasets_20250801.csv` → `Datasets.csv`)
- - Loads metadata template mapping from `root_dict.json`
- - Imports contact metadata from `DisMAP Contacts 2025 08 01.xml` into each CSV file
- - Parses XML with lxml, sorts elements by priority order from `root_dict`
- - Calls `update_datecode()` to update date codes in Datasets.csv
- - Calls `worker()` for each of five tables: Datasets, Species_Filter, DisMAP_Survey_Info, SpeciesPersistenceIndicatorTrend, SpeciesPersistenceIndicatorPercentileBin
- - Logs elapsed time
-
- - Key pattern: Heavy use of pandas for CSV parsing + NumPy array conversion to ensure type safety between CSV and GDB; metadata synchronization with lxml XML manipulation
-
-### *DisMAP ArcGIS Python Processing*
-
-- #### Director/Worker Pattern (parallel-capable processing):
- The codebase follows a **director** → **worker** architecture for scalability:
-- **Directors** orchestrate workflows and can spawn parallel jobs using `multiprocessing.Pool`
- - create_rasters_director.py — Orchestrates raster creation; supports sequential or multiprocess execution
- - create_regions_from_shapefiles_director.py — Builds region geometries
- - create_region_bathymetry_director.py — Bathymetry preprocessing
- - Similar pairs for: species richness, sample locations, fishnets, year/image name tables
-
-- **Workers** perform the actual ArcGIS/ArcPy operations:
- - create_rasters_worker.py — Creates interpolated rasters per region
- - create_regions_from_shapefiles_worker.py — Converts shapefiles to GDB regions
- - And corresponding worker files for each director
-
-- **Pattern Notes:**
- - All modules use raw f-strings with Windows paths (e.g., `rf"{project_folder}\Bathymetry\Bathymetry.gdb"`)
- - Consistent error handling: ArcPy exception catching + traceback + `sys.exit()`
- - Functions clear local variables at completion (`del var`) and warn about remaining keys
- - ArcGIS Pro logging is configured (history, metadata, message levels)
-
-- ### Create Regions from Shapefiles Director and Worker
- - This director/worker pair converts survey region shapefiles into feature classes within the DisMAP geodatabase.
-
- - #### **Director (create_regions_from_shapefiles_director.py)**
-
- - **Purpose**: Orchestrates the creation of region boundaries and extent polygons from shapefiles for all IDW regions (AI, EBS, GOA, GMEX, SEUS, etc.).
-
- - **Key Functions:**
-
- 1. **`create_dismap_regions(project_gdb)`** — Initializes the DisMAP_Regions polyline template feature class:
- - Creates empty `DisMAP_Regions` feature class in project GDB (spatial reference: WGS_1984_Web_Mercator_Auxiliary_Sphere)
- - Adds schema fields via `dismap_tools.add_fields()`
- - Imports metadata via `dismap_tools.import_metadata()`
-
- 2. **`director(project_gdb, Sequential, table_names)`** — Main orchestration function:
- - **Pre-processing** (sequential):
- - Calls `create_dismap_regions()` to initialize template
- - For each region (e.g., "AI_IDW", "EBS_IDW"):
- - Creates region-specific GDB and scratch workspace (`{scratch_folder}\{table_name}.gdb`)
- - Copies `Datasets` table and `DisMAP_Regions` template to region GDB
- - Synchronizes metadata via `arcpy.metadata.Metadata`
-
- - **Sequential or parallel processing**:
- - **Sequential mode**: Calls `worker()` for each region sequentially
- - **Parallel mode**: Uses `multiprocessing.Pool` (processes = CPU count - 2) with `apply_async()` to spawn workers; monitors job completion with status polling every ~7.5×processes seconds; gracefully handles exceptions with pool termination
-
- - **Post-processing** (sequential):
- - Walks scratch folder for all generated feature classes (Polygon/Polyline)
- - Copies each result to project GDB
- - For `*_Boundary` feature classes, appends them to the master `DisMAP_Regions` feature class
- - Compacts project GDB
-
- 3. **`script_tool(project_gdb)`** — Entry point (ArcGIS Pro tool parameter wrapper):
- - Supports test/dev toggles for processing specific regions (hardcoded table names or empty list)
- - Calls `director()` with default parallel processing (`Sequential=False`)
- - Logs timing and environment info
-
- - #### **Worker (create_regions_from_shapefiles_worker.py)**
-
- - **Purpose**: Processes a single region; converts a region's boundary shapefile to feature classes (Region polygon + Boundary polyline).
-
- - **Key Steps in `worker(region_gdb)`:**
-
- 1. **Extract region metadata** — Queries `Datasets` table to fetch region info:
- - Fields: TableName, GeographicArea, DatasetCode, Region, Season, DistributionProjectCode
- - Example result: `['AI_IDW', 'AI_IDW_Region', 'AI', 'Aleutian Islands', None, 'IDW']`
-
- 2. **Set spatial reference** — Loads `.prj` file from `Dataset_Shapefiles\{table_name}\{geographic_area}.prj`:
- - Adjusts cell size and XY tolerance based on linear unit (Kilometer → 1 cell size; Meter → 1000 cell size)
-
- 3. **Create region feature class** — Creates POLYGON feature class:
- - Uses `DisMAP_Regions` template as schema source
- - Applies region-specific spatial reference
-
- 4. **Append shapefile data** — Imports geometry and attributes from source shapefile:
- - `arcpy.management.Append()` copies features from `{geographic_area}.shp` into the new feature class
-
- 5. **Calculate region fields** — Populates DatasetCode, Region, Season, DistributionProjectCode fields with values from Datasets table
-
- 6. **Create boundary feature class** — Uses `FeatureToLine()` to extract boundary polylines from the region polygon; deletes auto-generated FID field
-
- 7. **Alter field metadata** — Calls `dismap_tools.alter_fields()` to set field aliases and properties for both Region and Boundary feature classes
-
- 8. **Synchronize metadata** — Copies metadata from source region feature class to boundary feature class via `arcpy.metadata.Metadata`
-
- 9. **Cleanup** — Deletes template tables (`DisMAP_Regions`, `Datasets`), compacts region GDB
-
- - ##### **Key Architectural Patterns**
-
- - **Scalable parallelism**: Director spawns region workers in parallel pool; each worker processes independently with isolated GDB workspaces
- - **Metadata cascade**: Copies metadata templates between feature classes to maintain consistency
- - **Region isolation**: Each worker uses separate `.gdb` to avoid locking; director merges results post-processing
- - **Workspace cleanup**: Removes intermediate templates and compacts GDBs to minimize database size
-
- - ##### **Integration Points**
-
- - Depends on `Dataset_Shapefiles\{region}\{geographic_area}.shp/.prj` files
- - Reads region metadata from `Datasets` table (populated by `import_datasets_species_filter_csv_data.py`)
- - Outputs region boundaries appended to master `DisMAP_Regions` feature class
- - Boundary feature classes available for fishnet creation and region extent workflows downstream
-
- - ### Create Region Fishnets Director and Worker
- - This director/worker pair generates fishnet grids, extent points, and latitude/longitude rasters for each survey region.
-
- - #### **Director (create_region_fishnets_director.py)**
-
- - **Purpose**: Orchestrates fishnet generation for all IDW regions, supporting parallel processing with batch grouping for CPU efficiency.
-
- - **Key Functions:**
-
- 1. **`director(project_gdb, Sequential, table_names)`** — Main orchestration function:
- - **Pre-processing** (sequential):
- - Validates that `Datasets` and `*_Region` feature classes exist and contain records
- - Creates region-specific GDB and scratch workspaces (`{scratch_folder}\{table_name}.gdb`)
- - Copies `Datasets` table and `{table_name}_Region` feature class to each region GDB
-
- - **Sequential or parallel processing**:
- - **Sequential mode**: Calls `worker()` sequentially for each region
- - **Parallel mode**: Uses `multiprocessing.Pool` (processes = CPU count - 2, maxtasksperchild=1); monitors job completion with status polling every ~7.5×processes seconds
-
- - **Post-processing** (sequential):
- - Walks scratch folder collecting all generated datasets (rasters, feature classes)
- - Copies each result to project GDB
- - Deletes source intermediate files from scratch workspace
- - Compacts each region GDB and the project GDB
-
- 2. **`script_tool(project_gdb)`** — Entry point with hardcoded batch grouping:
- - Supports test/dev toggles with region subsets
- - **Production batches** (parallel): Processes regions in two parallel director calls:
- - Batch 1: `WC_TRI_IDW, GMEX_IDW, AI_IDW, GOA_IDW, WC_ANN_IDW`
- - Batch 2: `NEUS_SPR_IDW, EBS_IDW, NEUS_FAL_IDW, SEUS_SUM_IDW`
- - Logs timing and environment info
-
- - #### **Worker (create_region_fishnets_worker.py)**
-
- **Purpose**: For a single region, creates fishnet grid cells, extent points, and geographic coordinate rasters.
-
- **Key Outputs Generated:**
-
- 1. **Raster Mask** (`{table_name}_Raster_Mask`):
- - Converts region boundary polygon to raster using cell size from Datasets table
- - Serves as template for coordinate rasters
-
- 2. **Extent Points** (`{table_name}_Extent_Points`):
- - Creates 3 corner points (lower-left, upper-left, upper-right) of region boundary
- - Calculates both projected (Easting/Northing) and geographic (Longitude/Latitude) coordinates using `AddXY()` and field aliasing
-
- 3. **Fishnet** (`{table_name}_Fishnet`):
- - Creates regular grid of POLYGON cells (cell size from Datasets table)
- - Overlays fishnet on region boundary and removes cells outside region using `SelectLayerByLocation()` with 2×cell_size buffer
- - Result: Only cells intersecting the region are retained
-
- 4. **Lat-Long Centroids** (`{table_name}_Lat_Long`):
- - Extracts fishnet cell centroids as point feature class
- - Calculates both projected (Easting/Northing) and geographic (Longitude/Latitude) coordinates
-
- 5. **Latitude Raster** (`{table_name}_Latitude`):
- - Converts Lat-Long point centroids to raster using "Latitude" field
- - Extracts values within raster mask using `ExtractByMask()`
-
- 6. **Longitude Raster** (`{table_name}_Longitude`):
- - Converts Lat-Long point centroids to raster using "Longitude" field
- - Extracts values within raster mask using `ExtractByMask()`
-
- **Technical Details:**
-
- - **Coordinate system handling**:
- - Uses `EnvManager` context managers to temporarily override output coordinate system
- - Converts from region's projected system (via `.prj` file) to WGS84 (EPSG:4326) for geographic coordinates
- - Uses `dismap_tools.check_transformation()` to get geographic transformation parameters
-
- - **Field renaming pattern**:
- - `POINT_X` → `Easting` (projected) or `Longitude` (geographic)
- - `POINT_Y` → `Northing` (projected) or `Latitude` (geographic)
-
- - **Metadata & cleanup**:
- - Calls `dismap_tools.alter_fields()` for field aliases
- - Calls `dismap_tools.import_metadata()` to attach standardized metadata
- - Synchronizes metadata via `arcpy.metadata.Metadata`
- - Deletes intermediate `Datasets` and `{table_name}_Region` templates
- - Compacts region GDB
-
- ##### **Key Architectural Patterns**
-
- - **Batch parallelism**: Director runs multiple fishnet directors in sequence but each director spawns workers in parallel pool
- - **Coordinate duality**: Each feature class maintains both projected (Easting/Northing) and geographic (Longitude/Latitude) coordinates
- - **Region masking**: Fishnet cells are intelligently filtered to align with region boundary
- - **Raster template**: Raster mask constrains all downstream latitude/longitude raster generation
-
- ##### **Integration Points**
-
- - Reads region geometry from `{table_name}_Region` feature class (from `create_regions_from_shapefiles_worker`)
- - Reads cell size and dataset metadata from `Datasets` table
- - Outputs fishnet cells, extent points, and coordinate rasters available for downstream IDW interpolation
- - Longitude/Latitude rasters used for geographic coordinate layers in map displays
-
-- ### Create Region Bathymetry Director and Worker
- - This director/worker pair generates region-specific bathymetry rasters using zonal statistics over fishnet grids.
-
- - #### **Director (create_region_bathymetry_director.py)**
-
- - **Purpose**: Orchestrates bathymetry processing for all IDW regions, handling data staging and parallel worker coordination.
-
- - **Key Functions:**
-
- 1. **`director(project_gdb, Sequential, table_names)`** — Main orchestration function:
- - **Pre-processing**:
- - Calls `preprocessing()` to stage fishnet, raster mask, and bathymetry data for each region into separate GDBs
- - Creates region-specific workspaces under Scratch folder
-
- - **Sequential or parallel processing**:
- - **Sequential mode**: Calls `worker()` sequentially for each region (currently commented/disabled)
- - **Parallel mode**: Uses `multiprocessing.Pool` (processes = CPU count - 2, maxtasksperchild=1) to execute workers in parallel; monitors job completion with status polling every ~7.5×processes seconds
-
- - **Post-processing** (sequential):
- - Walks scratch folder collecting all generated raster datasets
- - Copies each bathymetry raster to project GDB
- - Calls `dismap_tools.alter_fields()` for feature classes/tables/mosaics
- - Compacts project GDB
-
- 2. **`script_tool(project_gdb)`** — Entry point with hardcoded batch grouping:
- - **Production batches** (parallel): Processes regions in three parallel director calls:
- - Batch 1: `NBS_IDW, ENBS_IDW, HI_IDW, SEUS_FAL_IDW, SEUS_SPR_IDW, SEUS_SUM_IDW`
- - Batch 2: `WC_TRI_IDW, GMEX_IDW, AI_IDW, GOA_IDW, WC_ANN_IDW, NEUS_FAL_IDW`
- - Batch 3: `NEUS_SPR_IDW, EBS_IDW`
- - Logs timing and environment info
-
- - #### **Worker (create_region_bathymetry_worker.py)**
-
- This file contains three functions:
-
- #### **1. `preprocessing(project_gdb, table_names, clear_folder)`**
- Stages data for all regions into scratch workspace:
- - Clears scratch folder if `clear_folder=True`
- - For each region (e.g., `AI_IDW`), creates:
- - Region-specific GDB: `{scratch_folder}\{table_name}.gdb`
- - Region scratch workspace: `{scratch_folder}\{table_name}\scratch.gdb`
- - Copies `Datasets` table from project GDB
- - Copies `{table_name}_Fishnet` feature class from project GDB
- - Copies `{table_name}_Raster_Mask` raster from project GDB
- - Copies `{table_name}_Bathymetry` from `Bathymetry\Bathymetry.gdb` and renames to `{table_name}_Fishnet_Bathymetry`
-
- #### **2. `worker(region_gdb)`**
- Performs zonal statistics computation for a single region:
-
- **Inputs:**
- - `{table_name}_Fishnet` — Polygon feature class with fishnet grid cells (OID field)
- - `{table_name}_Raster_Mask` — Template raster defining cell size, extent, and spatial reference
- - `{table_name}_Fishnet_Bathymetry` — Bathymetry raster with depth values
-
- **Processing:**
- - Extracts cell size from raster mask metadata
- - Sets environment: cell size, extent, mask, snapRaster from raster template
- - Executes `arcpy.sa.ZonalStatistics()`:
- - **Zone data**: Fishnet grid (one value per cell)
- - **Zone field**: OID (unique cell identifier)
- - **Value raster**: Bathymetry (depth values)
- - **Statistics**: MEDIAN (median depth per cell)
- - **Ignore NoData**: DATA (include NoData pixels in calculation)
- - **Percentile**: 90th percentile (optional, for reference)
-
- **Output:**
- - `{table_name}_Bathymetry` — Raster with median depth value for each fishnet cell
-
- **Cleanup:**
- - Calls `dismap_tools.import_metadata()` to attach metadata
- - Deletes intermediate files: `Datasets`, `Raster_Mask`, `Fishnet`, `Fishnet_Bathymetry`
- - Compacts region GDB
-
- #### **3. `script_tool(project_gdb)`**
- Development entry point (currently runs single region test):
- - Calls `preprocessing()` to stage data
- - Calls `worker()` for test region (`HI_IDW`)
- - Used for single-region testing/debugging
-
- #### **Key Architectural Patterns**
-
- - **Two-stage processing**: Preprocessing stages all data in parallel-safe workspaces, then workers compute independently
- - **Raster template pattern**: Raster mask provides all spatial environment parameters (cell size, extent, SR) for consistency
- - **Zonal statistics optimization**: Uses median depth to provide representative bathymetry per fishnet cell
- - **Batch grouping**: Director distributes 15 regions across 3 parallel batches to balance load across CPU cores
-
- #### **Integration Points**
-
- - **Inputs**:
- - Fishnet grid from `create_region_fishnets_worker` outputs
- - Raster mask from `create_region_fishnets_worker` outputs
- - Bathymetry raster from `create_base_bathymetry.py` or bathymetry GDB
-
- - **Outputs**:
- - `{table_name}_Bathymetry` rasters available for downstream analysis and visualization
- - Rasters propagated to project GDB for inclusion in maps and services
-
- - **Data flow**:
- ```
- Bathymetry GDB → preprocessing() → region GDB → worker() → ZonalStatistics
- Fishnet ─────────────────────────→ region GDB → worker() → (zone field)
- Raster Mask ───────────────────────→ region GDB → worker() → (environment template)
- ```
-
- #### **Technical Details**
-
- - **Zonal Statistics parameters**:
- - Ignores NoData in value raster (DATA mode) so pixels with No Data still participate in zone calculations
- - Uses MEDIAN to handle outliers better than MEAN for depth measurements
- - Produces one output value per zone (fishnet cell) linked by OID
-
- - **Environment management**:
- - Uses `EnvManager` context manager for scratch workspace isolation
- - Cell size derived from raster metadata: `arcpy.Describe(raster/Band_1).meanCellWidth`
- - Linear unit handling: Kilometer → cell size 1 km; Meter → cell size 1000 m
-
-- ### Create Region Sample Locations Director and Worker
- - This director/worker pair creates sample location point feature classes from survey data CSVs, converting raw data into spatial datasets with standardized fields and metadata.
-
- - ### **Director (create_region_sample_locations_director.py)**
-
- - **Purpose**: Orchestrates sample location processing for all IDW regions, handling data staging and parallel worker coordination.
-
- - **Key Functions:**
-
- 1. **`director(project_gdb, Sequential, table_names)`** — Main orchestration function:
- - **Pre-processing** (sequential):
- - Clears scratch folder
- - Creates region-specific GDBs under Scratch folder
- - Copies `Datasets` table and `{table_name}_Region` feature class to each region GDB
-
- - **Sequential or parallel processing**:
- - **Sequential mode**: Calls `worker()` sequentially for each region
- - **Parallel mode**: Uses `multiprocessing.Pool` (processes = CPU count - 2, maxtasksperchild=1); monitors job completion with status polling every ~7.5×processes seconds
-
- - **Post-processing** (sequential):
- - Walks scratch folder collecting all generated tables and feature classes
- - Copies each result to project GDB
- - Compacts project GDB
-
- 2. **`script_tool(project_gdb)`** — Entry point with test mode:
- - Default test mode: Single region (`GMEX_IDW`)
- - Can run all 15 IDW regions in non-sequential mode
- - Logs timing and environment info
-
- - ### **Worker (create_region_sample_locations_worker.py)**
-
- - **Purpose**: For a single region, imports survey CSV data, transforms and enriches fields, converts to GDB table, then exports as point feature class with spatial reference.
-
- - **Processing Pipeline (3 Major Phases):**
-
- #### **Phase 1: CSV Loading & Field Extraction**
-
- - Detects CSV encoding using `dismap_tools.get_encoding_index_col()` (chardet-based)
- - Loads CSV with pandas using schema-based data types from `dismap_tools.dTypesCSV()`
- - Queries `Datasets` table to extract region metadata:
- - TableName, GeographicArea, DatasetCode, Region, Season, DistributionProjectCode
-
- - **Column renaming** (22 aliases handled):
- - `spp` / `spp_sci` → `Species`
- - `common` / `spp_common` → `CommonName`
- - `lon` / `Longitude`; `lat` / `Latitude`
- - `lon_UTM` / `Easting`; `lat_UTM` / `Northing`
- - `haulid` / `sampleid` → `SampleID`
- - `wtcpue` → `WTCPUE`
- - `median_est` / `mean_est` → `MedianEstimate` / `MeanEstimate`
- - `est5` / `est95` → `Estimate5` / `Estimate95`
- - `year` → `Year`; `depth_m` → `Depth`
- - `stratum` → `Stratum`; `transformed` → `MapValue`
-
- #### **Phase 2: DataFrame Transformation & Enrichment**
-
- **Insert new columns with derived/default values:**
-
- - `DatasetCode`: From Datasets table
- - `Region`: From Datasets table (or default if None)
- - `Season`: From Datasets table (or empty string if None)
- - `StdTime`: Calculated from Year (pd.to_datetime with GMT+12 timezone)
- - `MapValue`: Cube root transformation of WTCPUE (`WTCPUE ^ (1/3)`)
- - `SpeciesCommonName`: Format `"Species (CommonName)"` where CommonName exists
- - `CommonNameSpecies`: Format `"CommonName (Species)"` where CommonName exists
- - `SummaryProduct`: Set to "Yes"
- - `TransformUnit`: Set to "cuberoot" (documents MapValue transformation)
- - `CoreSpecies`: Set to "No" (default; could be calculated later)
-
- **Handle null/missing values:**
-
- - Replace `NaN` with empty string for string fields (CommonName, DistributionProjectName)
- - Replace `Inf` and `-Inf` with `NaN` in numeric fields (WTCPUE, coordinates, depth)
- - Fill numeric nulls appropriately for Latitude, Longitude, Depth, WTCPUE
-
- - **Reorder columns** using `dismap_tools.table_definitions()` to match schema order
-
- #### **Phase 3: GDB Table Creation & Feature Conversion**
- - Convert enriched DataFrame to NumPy structured array using GDB field types (`dismap_tools.dTypesGDB()`)
- - Create temporary GDB table via `arcpy.da.NumPyArrayToTable()`
- - Copy rows to output table: `{table_name}` (permanent table in region GDB)
- - Delete temporary table
-
- **Convert Table to Feature Class:**
-
- - Create XY Event Layer from output table using:
- - X field: `Longitude` (geographic coordinates, WGS84)
- - Y field: `Latitude` (geographic coordinates, WGS84)
- - Spatial reference: WGS84 (EPSG:4326)
- - Geographic transformation: Auto-determined via `dismap_tools.get_transformation()`
-
- - Export XY Event Layer to feature class: `{table_name}_Sample_Locations`
- - Add attribute index on: Species, CommonName, SpeciesCommonName, Year
- - Delete temporary XY Event Layer
-
- **Metadata & Field Aliasing:**
-
- - Copy metadata from CSV to output table via `arcpy.metadata.Metadata`
- - Call `dismap_tools.alter_fields()` to set field aliases and properties for both table and feature class
- - Synchronize metadata for both
-
- **Cleanup:**
-
- - Delete intermediate datasets: `{table_name}_Boundary`, `{table_name}_Region`, `Datasets`
- - Compact region GDB
-
- - #### **Key Data Transformations**
- 1. **MapValue (WTCPUE Cube Root)**: Normalizes highly skewed WTCPUE distribution for visualization
- 2. **SpeciesCommonName/CommonNameSpecies**: Dual naming conventions for UI display flexibility
- 3. **StdTime**: Creates ISO 8601 timestamp for temporal queries
- 4. **Field Reordering**: Enforces consistent column order matching GDB schema
-
- - #### **Integration Points**
-
- - **Inputs**:
- - Survey CSV files from `{project_folder}\CSV_Data\{table_name}.csv`
- - Region geometry from `{table_name}_Region` (from `create_regions_from_shapefiles_worker`)
- - Schema definitions from `field_definitions.json` and `table_definitions.json`
- - Datasets metadata table (populated by `import_datasets_species_filter_csv_data.py`)
-
- - **Outputs**:
- - `{table_name}` — GDB table with all survey records and enriched fields
- - `{table_name}_Sample_Locations` — Point feature class in WGS84 (for web/portal publishing)
- - Spatial index on (Species, CommonName, Year) for fast queries
-
- - **Data flow**:
- ```
- CSV File → pandas DataFrame (with encoding detection)
- → Column rename & enrichment (22+ derived fields)
- → NumPy array conversion (type casting)
- → GDB table creation
- → XY Event Layer (geographic coordinates)
- → Point Feature Class (WGS84)
- ```
-
- - #### **Technical Details**
-
- - **Encoding detection**: chardet-based; handles non-ASCII characters in CommonName fields
- - **Data type schema**: Schema-driven via JSON; ensures type safety across CSV→DataFrame→NumPy→GDB pipeline
- - **Coordinate systems**:
- - CSV source: Latitude/Longitude (WGS84) and Easting/Northing (projected, region-specific)
- - Output table: Both coordinate systems preserved
- - Output feature class: WGS84 only (for portal interoperability)
- - **Transformation chain**: WTCPUE → MapValue (cube root) documented via TransformUnit field for traceability
- - **Pandas optimizations**: Set display options for logging; use `inplace=False` operations for clarity; delete DataFrame after NumPy conversion to free memory
-
-- ### Create Species Year Image Name Table Director and Worker
- - This director/worker pair generates a catalog table mapping species/year combinations to image names, which coordinates what rasters should be created during downstream workflows (IDW, richness, mosaics).
-
- - #### **Director (create_species_year_image_name_table_director.py)**
-
- - **Purpose**: Orchestrates the creation of `LayerSpeciesYearImageName` metadata tables for all IDW regions, which serve as operational catalogs for subsequent raster generation workflows.
-
- **Key Functions:**
-
- 1. **`director(project_gdb, Sequential, table_names)`** — Main orchestration function:
- - **Pre-processing** (sequential):
- - Calls `preprocessing()` to stage sample location data and species filter tables for each region
- - Creates region-specific GDBs under Scratch folder
-
- - **Sequential or parallel processing**:
- - **Sequential mode**: Calls `worker()` sequentially for each region
- - **Parallel mode**: Uses `multiprocessing.Pool` (processes = CPU count - 2, maxtasksperchild=1); monitors job completion with status polling every ~7.5×processes seconds
-
- - **Post-processing** (sequential):
- - Walks scratch folder collecting all generated `*_LayerSpeciesYearImageName` tables
- - Copies each table to project GDB
- - Replaces None values with empty strings in string fields
- - Compacts project GDB
-
- 2. **`script_tool(project_gdb)`** — Entry point with hardcoded batch grouping:
- - **Production batches** (parallel):
- - Batch 1: `GMEX_IDW, HI_IDW, WC_ANN_IDW, WC_TRI_IDW` (4 regions, test mode)
- - Batch 2: `AI_IDW, EBS_IDW, ENBS_IDW, GOA_IDW, NBS_IDW` (5 regions, commented)
- - Batch 3: `HI_IDW, WC_ANN_IDW, WC_TRI_IDW` (3 regions, commented)
- - Batch 4: `GMEX_IDW, NEUS_FAL_IDW, NEUS_SPR_IDW` (3 regions, commented)
- - Batch 5: `NEUS_FAL_IDW, NEUS_SPR_IDW, SEUS_FAL_IDW, SEUS_SPR_IDW, SEUS_SUM_IDW` (5 regions, active)
- - Logs timing and environment info
-
- - #### **Worker (create_species_year_image_name_table_worker.py)**
- - **Purpose**: For a single region, generates a `LayerSpeciesYearImageName` table that catalogs all species/year combinations and assigns standardized image names for raster outputs.
-
- - **Processing Pipeline (Multi-Stage):**
-
- #### **Phase 1: Create Base LayerSpeciesYearImageName Table**
-
- - Creates new empty table: `{table_name}_LayerSpeciesYearImageName`
- - Calls `dismap_tools.add_fields()` to populate schema (200+ fields from `field_definitions.json`)
- - Calls `dismap_tools.import_metadata()` to attach metadata templates
-
- #### **Phase 2: Load Reference Data**
-
- **a) Datasets Table:**
- - Queries `Datasets` table for region metadata
- - Extracts: FilterRegion, FilterSubRegion
- - Example: `['Aleutian Islands', 'Alaska']`
-
- **b) Region IDW Table:**
- - The main sample location table: `{table_name}` (e.g., `AI_IDW`)
- - Contains all survey records with Species, Year, CommonName, etc.
- - Logs unique species count
-
- **c) Species Filter Table:**
- - Filters to: `FilterSubRegion = '{filter_subregion}' AND DistributionProjectName = 'NMFS/Rutgers IDW Interpolation'`
- - Builds species_filter dict: `{species: [CommonName, TaxonomicGroup, FilterRegion, FilterSubRegion, ManagementBody, ManagementPlan, DistributionProjectName]}`
- - Example entry: `'Anoplopoma fimbria': ['Sablefish', 'Perciformes/Cottoidei (sculpins)', 'Alaska', 'Aleutian Islands', 'NPFMC', '...', 'NMFS/Rutgers IDW Interpolation']`
-
- #### **Phase 3: Generate Base Species/Year Records**
-
- **Statistical Aggregation:**
- - Uses `arcpy.analysis.Statistics()` to get unique species/year combinations from sample locations
- - Case fields: Filters to fields that appear in both LayerSpeciesYearImageName schema and region IDW table
- - Removes COUNT/FREQUENCY fields to create unique species/year records
- - Result: `{table_name}_tmp` temporary table with one row per species/year combination
-
- **Field Addition:**
- - Adds 5 new fields to `{table_name}_tmp`:
- - FilterRegion, FilterSubRegion, TaxonomicGroup, ManagementBody, ManagementPlan, DistributionProjectName
- - Variable, Value, Dimensions, ImageName
-
- **Row Population with Update Cursor:**
-
- For each species/year combination:
- - **Variable**: Species name (parentheses/periods removed) → e.g., `"Anoplopoma fimbria"` becomes `"Anoplopoma_fimbria"`
- - **Value**: Set to `"Species"` (literal)
- - **Dimensions**: Set to `"StdTime"` (standard time dimension)
- - **ImageName**: Formatted as `{table_name}_{variable}_{year}` → e.g., `AI_IDW_Anoplopoma_fimbria_2020`
- - **FilterRegion/FilterSubRegion**: Looked up from species_filter dict if species found, else empty string
- - **TaxonomicGroup/ManagementBody/ManagementPlan/DistributionProjectName**: Looked up from species_filter dict
-
- **Append to Output Table:**
- - Appends populated records to `layer_species_year_image_name` table
-
- #### **Phase 4: Generate Species Richness Records (Core)**
-
- **Statistical Aggregation for Core Species:**
- - Applies second `arcpy.analysis.Statistics()` to group by non-species fields
- - Creates `{table_name}_tmp_stats` with unique region/season/dataset records
- - Adds Variable, Value, Dimensions, ImageName fields
-
- **Row Population - Core Species Richness:**
-
- For each region/season combination (only where core species exist):
- - **Variable**: `"Core Species Richness"`
- - **Value**: `"Core Species Richness"`
- - **Dimensions**: `"StdTime"`
- - **ImageName**: `{table_name}_Core_Species_Richness_{year}`
- - **CoreSpecies**: Set to `"Yes"` (signals core richness raster)
- - **FilterRegion/FilterSubRegion**: From region metadata
-
- **Append Core Records to Output Table**
-
- #### **Phase 5: Generate Species Richness Records (Total)**
-
- **Row Population - Total Species Richness:**
-
- For each region/season combination (all species):
- - **Variable**: `"Species Richness"` (differs from core)
- - **Value**: `"Species Richness"`
- - **Dimensions**: `"StdTime"`
- - **ImageName**: `{table_name}_Species_Richness_{year}`
- - **CoreSpecies**: Set to `"No"` (signals all-species richness raster)
-
- **Append Total Records to Output Table**
-
- #### **Phase 6: Finalization**
-
- - Calls `dismap_tools.alter_fields()` to set field aliases and properties
- - Sets metadata on `layer_species_year_image_name`: synchronizes ArcGIS metadata
- - Deletes intermediate tables: `{table_name}_tmp`, `{table_name}_tmp_stats`, and optionally temporary dataset tables
- - Compacts region GDB
-
- ### **Output Table Structure**
-
- `{table_name}_LayerSpeciesYearImageName` contains records with fields:
-
- | Field Name | Purpose | Example |
- |---|---|---|
- | DatasetCode | Region code | `AI` |
- | Region | Region name | `Aleutian Islands` |
- | Species | Scientific species name | `Anoplopoma fimbria` |
- | CommonName | Common species name | `Sablefish` |
- | SpeciesCommonName | Formatted combo | `Anoplopoma fimbria (Sablefish)` |
- | Year | Survey year | `2020` |
- | StdTime | Standard time (derived) | (calculated) |
- | Variable | Raster type | `Anoplopoma_fimbria` or `Species Richness` |
- | Value | Raster value description | `Species` or `Species Richness` |
- | Dimensions | Analysis dimension | `StdTime` |
- | ImageName | Output raster name | `AI_IDW_Anoplopoma_fimbria_2020` or `AI_IDW_Species_Richness_2020` |
- | CoreSpecies | Flag for richness rasters | `Yes` (core) / `No` (total) / blank (species) |
- | FilterRegion/FilterSubRegion | Geographic filters | From species_filter lookup |
- | TaxonomicGroup | Taxonomic class | From species_filter lookup |
- | ManagementBody | Fishery management org | From species_filter lookup |
- | ManagementPlan | Management plan reference | From species_filter lookup |
- | DistributionProjectName | Distribution project | `NMFS/Rutgers IDW Interpolation` |
-
- #### **Key Data Operations**
-
- 1. **Statistical Deduplication:**
- - Uses `arcpy.analysis.Statistics()` twice:
- - First: Identify unique species/year combinations from sample locations
- - Second: Identify unique region/season combinations for richness catalogs
-
- 2. **Multi-Stage Table Generation:**
- - Three types of rows generated in sequence:
- 1. Species-specific rasters (one per species/year)
- 2. Core species richness rasters (aggregate)
- 3. Total species richness rasters (aggregate)
-
- 3. **Dictionary Lookup for Metadata:**
- - Species filter dict enables efficient lookups during cursor operations
- - Prevents repeated database queries (performance optimization)
-
- 4. **Name Standardization:**
- - Removes special characters (parentheses, periods) from species names for file naming
- - Creates consistent `ImageName` format: `{region}_{variable}_{year}`
-
- #### **Integration Points**
-
- - **Inputs**:
- - `{table_name}` (sample locations table from `create_region_sample_locations_worker`)
- - `Species_Filter` table (metadata table with species/management mappings)
- - `Datasets` table (region metadata: FilterRegion, FilterSubRegion)
-
- - **Outputs**:
- - `{table_name}_LayerSpeciesYearImageName` table — Catalog of all rasters to generate
- - Contains 3 record types: species-specific (many), core richness (few), total richness (few)
-
- - **Data flow**:
- ```
- Sample Locations (Species/Year data)
- → Statistics → unique combinations
- ↓
- Species Filter (Taxonomy/Management)
- ↓
- Update Cursor (populate Variable/ImageName/Metadata)
- ↓
- LayerSpeciesYearImageName Table (operational catalog)
-
- Used downstream by:
- - create_rasters_worker.py (species rasters per ImageName)
- - create_species_richness_rasters_worker.py (richness rasters per ImageName)
- - create_mosaics_worker.py (mosaic generation)
- ```
-
- #### **Technical Architecture**
-
- - **Deduplication Strategy**: Uses ArcGIS `Statistics` tool rather than manual cursor loops for efficient unique-value extraction
- - **Temporary Tables**: Uses `_tmp` suffix for intermediate working tables; cleaned up post-processing
- - **Cursor Operations**: Three separate update cursor passes to populate different record types (species, core richness, total richness)
- - **Metadata Lookup**: Builds in-memory dict from Species_Filter to avoid repeated database queries
- - **Name Formatting**: Removes special characters from species names to ensure valid raster filenames
- - **Batch Parallelism**: Director processes multiple regions in parallel batches; each worker independently generates catalog
-
-- ### Create Rasters Director and Worker
- - This director/worker pair creates interpolated rasters from sample location data using Inverse Distance Weighting (IDW) geostatistical analysis.
-
- - #### **Director (create_rasters_director.py)**
-
- - **Purpose**: Orchestrates raster creation for all IDW regions, generating spatially-interpolated surfaces from survey data with parallel processing support.
-
- - **Key Functions:**
-
- 1. **`director(project_gdb, Sequential, table_names)`** — Main orchestration function:
- - **Pre-processing** (sequential):
- - Calls `preprocessing()` to stage sample location data for each region into separate GDBs
- - Creates region-specific workspaces under Scratch folder
-
- - **Sequential or parallel processing**:
- - **Sequential mode**: Calls `worker()` sequentially for each region
- - **Parallel mode**: Uses `multiprocessing.Pool` (processes = CPU count - 2, maxtasksperchild=1); monitors job completion with status polling every ~7.5×processes seconds
-
- - **Post-processing** (sequential):
- - Compacts project GDB only (no explicit raster copying—results already in region GDBs)
-
- 2. **`script_tool(project_gdb)`** — Entry point with hardcoded batch grouping:
- - **Production batches** (parallel):
- - Batch 1: `AI_IDW` (single region, default test)
- - Batch 2: `EBS_IDW, ENBS_IDW, GMEX_IDW, GOA_IDW, NBS_IDW` (5 regions)
- - Batch 3: `HI_IDW` (single region)
- - Batch 4: `WC_ANN_IDW, WC_TRI_IDW` (2 regions)
- - Batch 5: `SEUS_FAL_IDW, SEUS_SPR_IDW, SEUS_SUM_IDW` (3 regions)
- - Batch 6: `NEUS_FAL_IDW, NEUS_SPR_IDW` (2 regions, currently active in code)
- - Logs timing and environment info
-
- - #### **Worker (create_rasters_worker.py)**
- - **Purpose**: For a single region, generates IDW interpolated rasters for each species/year combination using survey sample locations.
-
- - **Processing Pipeline:**
-
- - #### **Phase 1: Data Staging (`preprocessing()` function)**
-
- Pre-processes data for all regions into isolated region GDBs:
-
- - Clears scratch folder if `clear_folder=True`
- - For each region (e.g., `AI_IDW`), creates:
- - Region-specific GDB: `{scratch_folder}\{table_name}.gdb`
- - Region scratch workspace: `{scratch_folder}\{table_name}\scratch.gdb`
-
- - Copies data to region GDB:
- - `Datasets` table (metadata for region parameters: cell size, geographic area)
- - `{table_name}_LayerSpeciesYearImageName` table (catalog of rasters to generate)
- - `{table_name}_Sample_Locations` feature class (survey data points filtered for IDW species distribution)
- - `{table_name}_Raster_Mask` raster (spatial template: extent, cell size, coordinate system)
-
- - Extracts FilterRegion and FilterSubRegion values for later reference
-
- - #### **Phase 2: Raster Generation (`worker()` function)**
-
- For each species/year combination, executes multi-step IDW interpolation:
-
- **1. Prepare Output Raster Catalog:**
- - Queries `{table_name}_LayerSpeciesYearImageName` table for all rasters to generate
- - Extracts 4 fields: ImageName, Variable, Species, Year
- - Filters to exclude "Species Richness" rasters (handled by separate workflow)
- - Builds output_rasters dict: `{image_name: [image_name, variable, species, year, output_raster_path]}`
- - Creates folder structure: `{project_folder}\Images\{table_name}\{variable}\{image_name}.tif`
-
- **2. Prepare Sample Location Feature Layer:**
- - Creates feature layer from `{table_name}_Sample_Locations` for attribute selection
- - Filters for `DistributionProjectName = 'NMFS/Rutgers IDW Interpolation'` (IDW-compatible data)
- - If `SummaryProduct == "Yes"`: Adds `YearWeights` field (short integer, alias "Year Weights")
-
- **3. For Each Raster to Generate:**
-
- **a) Select Species and Year Data:**
- - Clears previous selection
- - Selects sample points where `Species = '{species}' AND Year = {year}`
- - Logs count of selected records
-
- **b) Set IDW Search Neighborhood:**
- - Extracts cell size from region metadata
- - Calculates search ellipse:
- - Major axis: `cell_size × 1000` (converts kilometers to meters)
- - Minor axis: `cell_size × 1000`
- - Angle: 0 (no rotation)
- - Max neighbors: 15
- - Min neighbors: 10
- - Sector type: ONE_SECTOR
- - Uses `arcpy.SearchNeighborhoodStandard()` for neighbor selection
-
- **c) Weight Years for Temporal Smoothing:**
- - Selects weighted years: `Year >= (year-2) AND Year <= (year+2)` (±2 years from target year)
- - Calculates YearWeights using: `YearWeights = 3 - abs(year_target - year_sample)`
- - Target year: weight = 3
- - ±1 year: weight = 2
- - ±2 years: weight = 1
- - Logs count of weighted records
-
- **d) Execute IDW Interpolation:**
- - Checks out GeoStats extension: `arcpy.CheckOutExtension("GeoStats")`
- - Sets environment parameters:
- - Extent, mask, snapRaster from `region_raster_mask` (spatial alignment)
- - Cell size from region metadata
- - Output coordinate system from raster mask
- - Calls `arcpy.ga.IDW()` with parameters:
- - Input features: `sample_locations_path_layer` (selected points)
- - Z field: `MapValue` (cube-root transformed WTCPUE from sample locations)
- - Output raster: `memory\{output_raster}` (temporary in-memory raster)
- - Cell size: region-specific
- - Power: 2 (standard IDW power for distance weighting)
- - Search neighborhood: calculated ellipse with temporal weights
- - Weight field: `YearWeights` (applies temporal smoothing)
-
- **e) Reverse MapValue Transformation:**
- - Executes `arcpy.sa.Power(tmp_raster, 3)` to cube the interpolated values
- - Reverses the cube-root transformation: `MapValue^3 = WTCPUE`
- - Saves power-transformed raster to output TIF file path
-
- **f) Build Pyramids:**
- - Constructs pyramid levels (-1 = all levels)
- - Resampling: BILINEAR
- - Compression: DEFAULT with 75% quality
- - Skip existing: OVERWRITE
-
- **4. Metadata & Cleanup:**
- - Sets raster metadata title: image_name with underscores replaced by spaces
- - Synchronizes metadata: `tif_md.synchronize("ALWAYS")`
- - Deletes intermediate in-memory raster
- - Resets YearWeights field to None
- - Clears feature layer selection
-
- **5. Final Cleanup:**
- - Deletes sample location feature layer
- - Deletes intermediate datasets: `Datasets`, `Raster_Mask`, `LayerSpeciesYearImageName`
- - Compacts region GDB
-
- - #### **Key Data Transformations**
-
- 1. **MapValue → WTCPUE (Cube Root Reversal):**
- - Input rasters: Cube-root transformed WTCPUE (MapValue) from sample locations
- - IDW interpolates across landscape: `MapValue = WTCPUE^(1/3)`
- - Output: `interpolated_MapValue^3 = WTCPUE` (restores original units)
- - Justification: Cube root normalizes highly skewed WTCPUE distribution for interpolation
-
- 2. **Temporal Weighting:**
- - For target year Y: selects sample data from years Y-2 to Y+2
- - Weight formula: `3 - |Y_target - Y_sample|`
- - Effect: Center year has 3× influence; ±2 years have 1× influence
- - Reduces temporal noise while maintaining year-specific estimates
-
- 3. **Search Neighborhood:**
- - Ellipse major/minor axes = `cell_size × 1000` meters
- - Ensures interpolation uses local sample points (not global)
- - Min/Max neighbors: 10–15 points per cell (balance: detail vs. stability)
-
- - #### **Integration Points**
-
- - **Inputs**:
- - `{table_name}_Sample_Locations` feature class (from `create_region_sample_locations_worker`)
- - `{table_name}_Raster_Mask` raster (from `create_region_fishnets_worker`)
- - `{table_name}_LayerSpeciesYearImageName` table (mapping of species/year to raster outputs)
- - `Datasets` table (region cell size, metadata)
- - MapValue field (cube-root WTCPUE from sample enrichment)
-
- - **Outputs**:
- - Raster TIFs saved to: `{project_folder}\Images\{table_name}\{variable}\{image_name}.tif`
- - One interpolated surface per species/year/region combination
- - Rasters include pyramids and spatial reference from region mask
-
- - **Data flow**:
- ```
- Sample Locations (points with MapValue)
- → Feature selection by species/year
- → IDW interpolation (with YearWeights neighbor weighting)
- → Power transform (cube back to WTCPUE)
- → TIF output with pyramids
- ```
-
- - #### **Technical Details**
-
- - **Geostatistical Analyst Requirements**: Raster creation depends on ArcGIS GeoStats extension checkout/check-in
- - **Memory Management**: Uses in-memory raster (`memory\{name}`) for temporary IDW output before power transform and final TIF save
- - **Raster Masking**: Extent, mask, and snapRaster from `region_raster_mask` ensure outputs conform to fishnet grid alignment
- - **Year Weights Implementation**: CalculateField expressions: `3 - (abs({year} - !Year!))` dynamically applied to selected records
- - **Coordinate System**: Output rasters inherit spatial reference from `region_raster_mask` (region-specific projection)
- - **Parallel Batching**: Director splits 15 IDW regions into 6 sequential batches (sizes 1–5 regions) to manage CPU load across multiple `director()` calls
-
-- ### Create Species Richness Rasters Director and Worker
-
-This director/worker pair generates species richness rasters by counting the presence/absence of species across interpolated surfaces for each year and region.
-
-### **Director (create_species_richness_rasters_director.py)**
-
-**Purpose**: Orchestrates species richness raster generation for all IDW regions, aggregating species count rasters from existing interpolated species distributions.
-
-**Key Functions:**
-
-1. **`director(project_gdb, Sequential, table_names)`** — Main orchestration function:
- - **Pre-processing** (sequential):
- - Calls `preprocessing()` to stage required data for each region into separate GDBs
- - Creates region-specific workspaces under Scratch folder
-
- - **Sequential or parallel processing**:
- - **Sequential mode**: Calls `worker()` sequentially for each region
- - **Parallel mode**: Uses `multiprocessing.Pool` (processes = CPU count - 2, maxtasksperchild=1); monitors job completion with status polling every ~7.5×processes seconds
-
- - **Post-processing** (sequential):
- - Compacts project GDB
-
-2. **`script_tool(project_gdb)`** — Entry point with hardcoded batch grouping:
- - **Production batches** (parallel):
- - Batch 1: `AI_IDW, EBS_IDW, GOA_IDW` (3 regions, currently in test mode)
- - Batch 2: `ENBS_IDW, GOA_IDW, NBS_IDW` (3 regions, alt batch)
- - Batch 3: `SEUS_FAL_IDW, SEUS_SPR_IDW, SEUS_SUM_IDW` (3 regions)
- - Batch 4: `HI_IDW, WC_ANN_IDW, WC_TRI_IDW` (3 regions)
- - Batch 5: `GMEX_IDW, NEUS_FAL_IDW, NEUS_SPR_IDW` (3 regions)
- - Currently in test mode with single region: `SEUS_FAL_IDW`
- - Logs timing and environment info
-
-### **Worker (create_species_richness_rasters_worker.py)**
-
-**Purpose**: For a single region, generates species richness rasters (total and core species) by counting presence/absence across all interpolated species distributions for each year.
-
-**Processing Pipeline:**
-
-#### **Phase 1: Data Staging (`preprocessing()` function)**
-
-Pre-processes data for all regions into isolated region GDBs:
-
-- Clears scratch folder if `clear_folder=True`
-- For each region (e.g., `AI_IDW`), creates:
- - Region-specific GDB: `{scratch_folder}\{table_name}.gdb`
- - Region scratch workspace: `{scratch_folder}\{table_name}\scratch.gdb`
-
-- Copies data to region GDB:
- - `Datasets` table (metadata for region parameters: cell size, DatasetCode)
- - `{table_name}_LayerSpeciesYearImageName` table (catalog of rasters; contains metadata about which species/years have interpolated surfaces)
- - `{table_name}_Raster_Mask` raster (spatial template: extent, cell size, coordinate system)
-
-- Creates these tables by:
- - Filtering Datasets to matching region
- - Copying LayerSpeciesYearImageName table
- - Copying Raster_Mask raster
-
-#### **Phase 2: Richness Raster Generation (`worker()` function)**
-
-For each year, generates two types of species richness rasters:
-
-**1. Prepare Raster Catalog:**
-- Queries `{table_name}_LayerSpeciesYearImageName` table for all interpolated surfaces
-- Extracts 5 fields: DatasetCode, CoreSpecies, Year, Variable, ImageName
-- Filters for: `Variable NOT IN ('Core Species Richness', 'Species Richness')` (excludes pre-computed richness layers)
-- Further filters: `DatasetCode = '{datasetcode}'` (single dataset per region)
-- Builds `input_rasters` dict: `{image_name.tif: [variable, corespecies, year, path_to_tif]}`
-- Result: Catalog of all species/year raster TIF files available
-
-**2. Prepare Output Paths:**
-- Total richness path: `{project_folder}\Images\{table_name}\_Species Richness\{table_name}_Species_Richness_{year}.tif`
-- Core richness path: `{project_folder}\Images\{table_name}\_Core Species Richness\{table_name}_Core_Species_Richness_{year}.tif`
-- Scratch paths for temporary working space
-- Creates directories if they don't exist
-
-**3. Extract Raster Dimensions and Extent:**
-- Gets row count and column count from `{table_name}_Raster_Mask` using `GetRasterProperties()`
-- Extracts lower-left corner point from mask extent (used as spatial reference for output raster)
-- Used to create zero-initialized NumPy arrays
-
-**4. Generate Total Species Richness Rasters:**
-
-For each unique year in the input rasters:
-
- **a) Initialize richness array:**
- - Creates zero-filled NumPy array: `shape=(rowCount, columnCount), dtype='float32'`
- - Will accumulate presence counts per raster cell
-
- **b) Process all species for the year:**
- - Filters input_rasters to only records where `Year == {target_year}`
- - For each species/year combination:
- - Loads raster as NumPy array: `arcpy.RasterToNumPyArray(_in_raster, nodata_to_value=np.nan)`
- - Replaces negative values with NaN (removes invalid data)
- - Converts positive values (>0.0) to 1.0 (binary presence indicator)
- - Adds species binary array to accumulating richness array: `richnessArray += rasterArray`
-
- **c) Convert array to raster:**
- - Casts array as float32 for consistency
- - Converts NumPy array to raster using `arcpy.NumPyArrayToRaster()` with:
- - Lower-left corner point (spatial reference)
- - Cell size (from region metadata)
- - NoData value: -3.40282346639e+38 (minimum float32)
- - Saves raster to TIF file path
- - Calculates statistics: `arcpy.management.CalculateStatistics()`
-
- **d) Set metadata:**
- - Sets raster title: image filename with underscores replaced by spaces
- - Synchronizes metadata: `raster_md.synchronize("ALWAYS")`
-
-**5. Generate Core Species Richness Rasters:**
-
-Similar process as total richness, but filters to only core species (`CoreSpecies == "Yes"`):
-
- - Extracts unique years where core species data exists
- - For each core-species year:
- - Filters input_rasters to `Year == {year} AND CoreSpecies == "Yes"`
- - Accumulates presence/absence binary counts per cell
- - Saves to core richness output path
- - Sets metadata
-
-**Output Result:**
-
-For each region and year:
-- `{table_name}_Species_Richness_{year}.tif` — Count of all species present in each fishnet cell
-- `{table_name}_Core_Species_Richness_{year}.tif` — Count of core species only
-
-**Technical Details:**
-
-- **NumPy Operations**: Uses NumPy array operations for efficient raster counting (all species processed in-memory)
-- **Binary Conversion**: All input rasters (interpolated surfaces with WTCPUE values) converted to 1.0 (presence) or NaN (absence/nodata)
-- **Accumulation**: `np.add(richnessArray, rasterArray)` counts species presence per cell
-- **Output Type**: float32 for compatibility with ArcGIS raster formats
-- **NoData Handling**: NoData pixels from input treated as NaN (not counted toward richness)
-- **Coordinate System**: Output rasters inherit spatial reference from `region_raster_mask`
-
-#### **Phase 3: Cleanup**
-
-- Deletes intermediate datasets: `Datasets`, `LayerSpeciesYearImageName`, `Raster_Mask`
-- Compacts region GDB
-- Logs completion message
-
-### **Key Data Transformations**
-
-1. **Interpolated Surface → Binary Presence:**
- - Input: WTCPUE values (cube-root transformed from IDW rasters)
- - Conversion: Any value > 0.0 becomes 1.0; negative/NaN values remain NaN
- - Effect: Creates presence/absence indicator for each species
-
-2. **Raster Accumulation:**
- - Sum across all species rasters for a given year
- - Result: Each fishnet cell contains count of species observed (0 to N species)
- - Semantics: Higher values = greater species diversity
-
-3. **Core Species Filtering:**
- - Subset of species marked with `CoreSpecies = "Yes"` in metadata
- - Richness rasters generated separately: total vs. core
- - Enables comparison: all species diversity vs. managed/target species diversity
-
-### **Integration Points**
-
-- **Inputs**:
- - Interpolated species rasters from `create_rasters_worker` outputs (saved to `{project_folder}\Images\{table_name}\{variable}\{image_name}.tif`)
- - `{table_name}_LayerSpeciesYearImageName` table (maps species/year to raster files; from data catalog)
- - `{table_name}_Raster_Mask` raster (spatial template)
- - `Datasets` table (region metadata: DatasetCode, CellSize)
-
-- **Outputs**:
- - `_Species Richness\{table_name}_Species_Richness_{year}.tif` — Total richness rasters
- - `_Core Species Richness\{table_name}_Core_Species_Richness_{year}.tif` — Core richness rasters
- - Rasters saved to: `{project_folder}\Images\{table_name}\`
- - One raster per year per richness type per region
-
-- **Data flow**:
- ```
- Interpolated Species Rasters (TIF files)
- → Binary presence/absence conversion (NumPy)
- → Accumulation per cell across species (NumPy.add)
- → NumPy array → Raster conversion
- → Richness TIF output with statistics & metadata
- ```
-
- - #### **Technical Architecture**
-
- - **Array-based computation**: All raster operations performed via NumPy for efficiency (avoids pixel-by-pixel cursor operations)
- - **Lazy evaluation**: Rasters loaded only when needed (one species/year at a time)
- - **Memory efficiency**: Processes complete regions before cleanup; avoids storing all input rasters simultaneously
- - **Coordinate system consistency**: Output rasters tied to `region_raster_mask` extent/resolution/SR
- - **Batch parallelism**: Director splits 15 IDW regions into 5 sequential batches (3 regions each) to manage CPU load across multiple `director()` calls
- - **Dual richness generation**: Single worker pass generates both total and core richness by filtering CoreSpecies flag during accumulation
-
-
-- ### Create Region Mosaics Director and Worker
- - This director/worker pair creates mosaic datasets and Cloud Raster Format (CRF) files from interpolated species rasters, enabling efficient multi-band image services for portal publishing.
-
- ### **Director (create_mosaics_director.py)**
-
- **Purpose**: Orchestrates mosaic dataset creation for all IDW regions, aggregating species rasters into multi-dimensional mosaic structures for web services.
-
- **Key Functions:**
-
- 1. **`director(project_gdb, Sequential, table_names)`** — Main orchestration function:
- - **Pre-processing** (sequential):
- - Calls `preprocessing()` to stage data for each region into separate GDBs
- - Creates region-specific workspaces under Scratch folder
-
- - **Sequential or parallel processing**:
- - **Sequential mode**: Calls `worker()` sequentially for each region
- - **Parallel mode**: Uses `multiprocessing.Pool` (processes = CPU count - 2, maxtasksperchild=1); monitors job completion with status polling every ~7.5×processes seconds
-
- - **Post-processing** (sequential):
- - Walks scratch folder collecting all mosaic datasets and `.crf` files
- - Copies mosaic datasets to project GDB
- - Copies `.crf` files to `CRFs` folder
- - Calls `dismap_tools.import_metadata()` to attach metadata
- - Deletes source datasets from scratch
- - Compacts project GDB
-
- 2. **`script_tool(project_gdb)`** — Entry point with test mode:
- - Currently in test mode: `Sequential=True, table_names=["SEUS_FAL_IDW"]`
- - Alternative production batches commented (non-sequential options available)
- - Logs timing and environment info
-
- ### **Worker (create_mosaics_worker.py)**
-
- **Purpose**: For a single region, creates a mosaic dataset by aggregating all interpolated species rasters, then exports to Cloud Raster Format (CRF) for efficient storage and web service delivery.
-
- **Processing Pipeline:**
-
- #### **Phase 1: Prepare Output Paths & Metadata**
-
- - Queries `Datasets` table for region metadata:
- - Extracts: TableName, DatasetCode, CellSize, MosaicName, MosaicTitle
-
- - Sets output coordinate system from `{table_name}_Raster_Mask` spatial reference
-
- #### **Phase 2: Build Input Raster List**
-
- - Queries `{table_name}_LayerSpeciesYearImageName` table for all rasters to include
- - Filters by: `DatasetCode = '{datasetcode}'` (region-specific data)
- - Extracts: Variable, ImageName
- - Constructs input raster paths:
- - Path format: `{project_folder}\Images\{table_name}\{variable}\{image_name}.tif`
- - Special handling: Prepends underscore to "Species Richness" variable for folder naming
- - Validates: Each raster file must exist; logs errors for missing files
- - Result: List of input_raster_paths for mosaic ingestion
-
- #### **Phase 3: Create Mosaic Dataset**
-
- - Calls `arcpy.management.CreateMosaicDataset()`:
- - Workspace: region GDB
- - Name: `{mosaic_name}` (e.g., `AI_IDW_Mosaic`)
- - Coordinate system: From region raster mask (region-specific projection)
- - Pixel type: 32-bit float (matches interpolated raster values)
- - One band (single-band species/richness rasters)
-
- #### **Phase 4: Load Rasters into Mosaic**
-
- - Calls `arcpy.management.AddRastersToMosaicDataset()` with parameters:
- - Raster type: "Raster Dataset" (add pre-existing TIF rasters)
- - Input path: List of all input_raster_paths from Phase 2
- - **Cell size handling**:
- - `update_cellsize_ranges = "UPDATE_CELL_SIZES"` — Automatically determine cell size ranges
- - **Boundary handling**:
- - `update_boundary = "UPDATE_BOUNDARY"` — Update mosaic extent from input rasters
- - **Pyramid/statistics**:
- - `build_pyramids = "NO_PYRAMIDS"` — Skip pyramid building for now
- - `calculate_statistics = "NO_STATISTICS"` — Skip statistics calculation during load
- - `estimate_statistics = "NO_STATISTICS"` — Don't estimate statistics
- - **Duplicate handling**:
- - `duplicate_items_action = "EXCLUDE_DUPLICATES"` — Skip duplicate rasters
- - **Spatial reference**:
- - `force_spatial_reference = "FORCE_SPATIAL_REFERENCE"` — Force region-specific SR
- - Minimum dimension: 1500 (cells) — Only include larger rasters
-
- #### **Phase 5: Join Metadata Attributes**
-
- - Calls `arcpy.management.JoinField()`:
- - Join on: Mosaic catalog Name field ← LayerSpeciesYearImageName ImageName field
- - Joins fields:
- - DatasetCode, Region, Season, Species, CommonName, SpeciesCommonName
- - CoreSpecies, Year, StdTime, Variable, Value, Dimensions
- - Result: Mosaic catalog rows enriched with species/year/metadata attributes
-
- #### **Phase 6: Create Attribute Indexes**
-
- - Removes existing index if present: `{table_name}_MosaicSpeciesIndex`
- - Creates new non-unique index on: Species, CommonName, SpeciesCommonName, Year
- - Improves query performance for species-based filtering in web services
-
- #### **Phase 7: Calculate Statistics**
-
- - Calls `arcpy.management.CalculateStatistics()` with:
- - Skip existing: False (recalculate)
- - x_skip_factor / y_skip_factor: 1 (use all data)
-
- #### **Phase 8: Configure Mosaic Properties**
-
- - Calls `arcpy.management.SetMosaicDatasetProperties()` with detailed configuration:
- - **Image sizing**:
- - Maximum image size: 4100×15000 pixels (supports large composite images)
- - **Compression**:
- - Allowed: LZ77, None
- - Default: LZ77
- - JPEG quality: 75%
- - LERC tolerance: 0.01
- - **Resampling/display**:
- - Resampling: BILINEAR
- - Clip to footprints: NOT_CLIP
- - Clip to boundary: CLIP (constrain to mosaic extent)
- - Blend width: 10 pixels (feather edges)
- - Viewpoint: 600×300 (north corner bias)
- - **Mosaic operations**:
- - Method: FIRST (display first raster when overlapping)
- - Max items per mosaic: 50 (limit composite slices)
- - Cell size tolerance: 0.8 (80% match required)
- - Cell size: `{cell_size} {cell_size}` (from region metadata)
- - **Metadata**:
- - Level: FULL (include all metadata)
- - Transmission fields: All mosaic catalog fields
- - **Temporal dimension**:
- - Time enabled: YES
- - Start/end time field: StdTime (same field for point-in-time data)
- - Time format: "YYYY" (year-only dimension)
- - Time interval: 1 year
- - Time interval units: Years
- - **Service capabilities**:
- - Max download items: 20
- - Max records returned: 1000
- - Data source type: GENERIC
- - Minimum pixel contribution: 1 (include all valid pixels)
-
- #### **Phase 9: Analyze Mosaic Dataset**
-
- - Calls `arcpy.management.AnalyzeMosaicDataset()` with checker keywords:
- - FOOTPRINT, FUNCTION, RASTER, PATHS, SOURCE_VALIDITY, STALE
- - PYRAMIDS, STATISTICS, PERFORMANCE, INFORMATION
- - Validates: All rasters are accessible, pyramids/statistics present, performance optimal
-
- #### **Phase 10: Build Multidimensional Information**
-
- - Calls `arcpy.md.BuildMultidimensionalInfo()`:
- - Variable field: "Variable" (species name or "Species Richness")
- - Dimension fields: StdTime (Time Step, Year)
- - Enables time-based slicing: Web services can query by year
- - Deletes existing multidimensional info before rebuilding
-
- #### **Phase 11: Export to Cloud Raster Format (CRF)**
-
- - Calls `arcpy.management.CopyRaster()`:
- - Source: Mosaic dataset (in-memory processed)
- - Output: `{scratch_folder}\{table_name}\{mosaic_name}.crf`
- - Format: CRF (Cloud Raster Format — compressed, cloud-optimized)
- - Pixel type: 32-bit float (maintains scientific precision)
- - NoData value: -3.40282e+38 (minimum float32 sentinel)
- - Process as multidimensional: ALL_SLICES (export all time steps)
- - No transpose (keep dimension order)
-
- - Calls `arcpy.management.CalculateStatistics()` on CRF output
-
- #### **Phase 12: Cleanup**
-
- - Deletes intermediate tables: Datasets, LayerSpeciesYearImageName, Raster_Mask
- - Compacts region GDB
-
- ### **Key Data Operations**
-
- 1. **Multi-Dimensional Raster Assembly:**
- - Combines many 2D rasters (species/year) into 4D mosaic (X, Y, Species, Time)
- - Dimension fields enable web service queries: "Get richness for 2020"
-
- 2. **Metadata Enrichment via Join:**
- - Links mosaic catalog (N rows = N input rasters) to species/year metadata
- - Enables filtering/sorting by taxonomy, management body, temporal attributes
-
- 3. **Temporal Dimension:**
- - StdTime field as single timestamp per year (point-in-time data)
- - Time format "YYYY" enables time-series visualization in web services
-
- 4. **Cloud Raster Format Export:**
- - CRF enables efficient tiling, caching, and pyramid generation
- - Supports efficient web delivery without additional processing
-
- ### **Integration Points**
-
- - **Inputs**:
- - Interpolated species rasters from `create_rasters_worker` (TIF files)
- - Species richness rasters from `create_species_richness_rasters_worker` (TIF files)
- - `{table_name}_LayerSpeciesYearImageName` table (raster metadata catalog)
- - `Datasets` table (region metadata: CellSize, MosaicName)
- - `{table_name}_Raster_Mask` (spatial template: extent, resolution, SR)
-
- - **Outputs**:
- - `{table_name}_Mosaic` mosaic dataset in project GDB
- - `{table_name}.crf` cloud raster format file in `CRFs` folder
- - Mosaic indexed on: Species, CommonName, Year (for web service queries)
- - Multidimensional structure: Variable (species) × Time (year)
-
- - **Data flow**:
- ```
- Interpolated Species/Richness TIFs
- → AddRastersToMosaicDataset → Build Mosaic Catalog
- ↓
- LayerSpeciesYearImageName Table (Metadata)
- → JoinField → Enrich Catalog
- ↓
- SetMosaicDatasetProperties (Configure temporal, compression, bounds)
- → BuildMultidimensionalInfo (Enable time-series)
- → CopyRaster to CRF (Cloud-optimized export)
- ↓
- CRF File (Portal publishing) + Mosaic Dataset (Project GDB)
- ```
-
- - #### **Technical Architecture**
-
- - **Mosaic as aggregation layer**: Combines isolated raster files (TIFs) into unified queryable structure
- - **Temporal indexing**: StdTime field enables time-series web services without refactoring
- - **Cloud Raster Format**: Enables efficient caching and pyramid generation for web services
- - **Multidimensional support**: Allows portal to expose "Variable" (species) and "Year" (time) as separate dimensions
- - **Metadata join pattern**: Links mosaic records to taxonomy/management attributes for UI filtering
- - **Batch parallelism**: Director processes multiple regions in parallel; each worker independently creates mosaic
-
-- ### Create Indicators Table Director and Worker
- - This director/worker pair generates distribution indicators (center of gravity, min/max coordinates, depth statistics) for each species/year combination using spatial statistics derived from interpolated raster surfaces.
-
- - #### **Director (create_indicators_table_director.py)**
-
- - **Purpose**: Orchestrates distribution indicator calculation for all IDW regions, aggregating species-specific spatial statistics into region-level indicator tables.
-
- - **Key Functions:**
-
- 1. **`director(project_gdb, Sequential, table_names)`** — Main orchestration function:
- - **Pre-processing** (sequential):
- - Calls `preprocessing()` to stage raster and metadata data for each region
- - Creates region-specific GDBs under Scratch folder
-
- - **Sequential or parallel processing**:
- - **Sequential mode**: Calls `worker()` sequentially for each region
- - **Parallel mode**: Uses `multiprocessing.Pool` (processes = CPU count - 2, maxtasksperchild=1); monitors job completion with status polling every ~7.5×processes seconds
-
- - **Post-processing** (sequential):
- - Walks scratch folder collecting all generated `*_Indicators` tables and feature classes
- - Copies each to project GDB
- - Compacts project GDB
-
- 2. **`process_indicator_tables(project_gdb)`** — Consolidation function:
- - Creates master `Indicators` table in project GDB
- - Adds standardized fields via `dismap_tools.add_fields()`
- - Appends all region-specific `*_Indicators` tables into master table
- - Replaces None values with empty strings in string fields
- - Updates DateCode field using `dismap_tools.date_code()` for standardization
- - Synchronizes metadata
-
- 3. **`script_tool(project_gdb)`** — Entry point with test mode:
- - Currently disabled: Test=False (director calls commented out)
- - Calls `process_indicator_tables()` to combine all indicator tables into master
- - Logs timing and environment info
-
- ### **Worker (create_indicators_table_worker.py)**
-
- **Purpose**: For a single region, calculates distribution indicators (center of gravity, percentile bounds, offsets, standard errors) for each species/year from biomass rasters.
-
- **Processing Pipeline:**
-
- #### **Phase 1: Create Indicators Table & Load Data**
-
- - Creates empty table: `{table_name}_Indicators`
- - Calls `dismap_tools.add_fields()` to populate schema (200+ fields from `field_definitions.json`)
- - Queries `Datasets` table for region metadata:
- - Extracts: DatasetCode, TableName, CellSize, Region, Season, DateCode, DistributionProjectCode, DistributionProjectName, SummaryProduct
-
- #### **Phase 2: Set Spatial Environment**
-
- - Sets environment parameters:
- - Cell size: From region metadata
- - Extent, mask, snapRaster: From `{table_name}_Raster_Mask` (spatial alignment)
- - Prepares raster references:
- - `{table_name}_Bathymetry` — Depth values per cell (negative values; zero is surface)
- - `{table_name}_Latitude` — Geographic latitude per cell
- - `{table_name}_Longitude` — Geographic longitude per cell (0-360 initially, converted to -180 to 180)
-
- #### **Phase 3: Prepare Raster Catalog**
-
- - Queries `{table_name}_LayerSpeciesYearImageName` for all species rasters
- - Filters: `DatasetCode = '{datasetcode}'` AND `NOT Species Richness`
- - Builds input_rasters nested dict structure: `{variable: {year: [metadata + path]}}`
- - Validates: Each raster file exists
-
- #### **Phase 4: Calculate Distribution Indicators (Per Species/Year)**
-
- For each species and year, calculates 5 dimensions of distribution:
-
- ##### **A. Biomass Statistics**
- - Loads biomass raster as NumPy array (from species/year interpolated surface)
- - Replaces negative/zero values with NaN
- - Calculates: `sumBiomassArray = np.nansum(biomassArray)`
- - Logs: Maximum biomass value (>0 indicates valid data)
-
- ##### **B. Center of Gravity & Percentile Bounds — Latitude**
-
- - Loads latitude raster array; aligns with biomass (NaN where biomass is NaN)
- - **Percentile calculation**:
- - Sorts latitude values by latitude coordinate
- - Calculates cumulative biomass sum: `cumSum = np.nancumsum(sorted_biomass)`
- - Converts to quantile: `quantile = cumSum / total_biomass`
- - Finds 95th and 5th percentile latitude bounds using closest quantile match
- - Result: `MaximumLatitude` (95th percentile), `MinimumLatitude` (5th percentile)
-
- - **Center of Gravity**:
- - Calculates weighted latitude: `weighted = biomass × latitude`
- - Result: `CenterOfGravityLatitude = Σ(weighted) / Σ(biomass)`
-
- - **Offset**:
- - On first year of species: `first_year_offset_latitude = CenterOfGravityLatitude`
- - For subsequent years: `OffsetLatitude = CenterOfGravityLatitude - first_year_offset_latitude`
- - Semantics: Tracks migration direction relative to baseline year
-
- - **Standard Error**:
- - `variance = np.nanvar(weighted_array)`
- - `count = np.count_nonzero(~np.isnan(weighted_array))`
- - Result: `CenterOfGravityLatitudeSE = √variance / √count`
-
- ##### **C. Center of Gravity & Percentile Bounds — Longitude**
-
- - **International Date Line Handling**:
- - Converts longitude from -180/180 to 0/360 range: `lon_360 = np.mod(longitude, 360)`
- - Applies same percentile/CoG/offset/SE calculations as latitude
- - Converts back: `lon_180 = np.mod(lon_360 - 180, 360) - 180`
- - Result: Handles species crossing Pacific antimeridian without wrapping errors
-
- ##### **D. Center of Gravity & Percentile Bounds — Depth (Bathymetry)**
-
- - Loads bathymetry raster array (negative values for depth below surface; zero at surface)
- - Aligns with biomass (NaN where biomass is NaN)
- - Applies same percentile/CoG/offset/SE calculations as lat/lon
- - Result: `CenterOfGravityDepth` (weighted mean depth), `MinimumDepth` (5th percentile shallow), `MaximumDepth` (95th percentile deep)
-
- #### **Phase 5: Row Population**
-
- For each species/year combination with biomass > 0:
- - Creates row with 26 fields:
- - Standard fields: DatasetCode, Region, Season, DateCode, Species, CommonName, CoreSpecies, Year, DistributionProjectName, DistributionProjectCode, SummaryProduct (11 fields)
- - Latitude indicators: CenterOfGravityLatitude, MinimumLatitude, MaximumLatitude, OffsetLatitude, CenterOfGravityLatitudeSE (5 fields)
- - Longitude indicators: CenterOfGravityLongitude, MinimumLongitude, MaximumLongitude, OffsetLongitude, CenterOfGravityLongitudeSE (5 fields)
- - Depth indicators: CenterOfGravityDepth, MinimumDepth, MaximumDepth, OffsetDepth, CenterOfGravityDepthSE (5 fields)
-
- For species/years with biomass = 0:
- - All indicator fields set to None (null in GDB)
-
- #### **Phase 6: Insert Rows into Table**
-
- - Accumulates all row_values in memory
- - Uses `InsertCursor` to bulk-insert all rows
- - Replaces NaN values (self != self check) with None for proper null handling in GDB
- - Logs final record count: `"{table_name}_Indicators has N records"`
-
- #### **Phase 7: Cleanup**
-
- - Deletes intermediate datasets: Datasets, Bathymetry, Latitude, Longitude, Raster_Mask, LayerSpeciesYearImageName
- - Compacts region GDB
-
- ### **Key Data Operations**
-
- 1. **Weighted Center of Gravity**:
- - Formula: `CoG = Σ(biomass × coordinate) / Σ(biomass)`
- - Effect: Locates mean position weighted by species abundance
- - Used for: Tracking population distribution shifts over time
-
- 2. **Percentile Bounds (5th/95th)**:
- - Accumulates cumulative biomass sum along sorted coordinate axis
- - Finds coordinate where 95% of biomass lies beyond (upper bound) and 5% lies beyond (lower bound)
- - Effect: Robust bounds capturing 90% of population (insensitive to outliers)
-
- 3. **Offset Tracking**:
- - Baseline: First year of each species' data
- - Subsequent years: Difference from baseline CoG
- - Semantics: Measures northward/southward/deepward migration relative to initial distribution
-
- 4. **Standard Error Calculation**:
- - Measures variability in weighted coordinate values
- - Formula: `SE = √(variance) / √(count)`
- - Effect: Indicates confidence in CoG estimate (lower SE = more concentrated distribution)
-
- ### **Integration Points**
-
- - **Inputs**:
- - Interpolated species rasters from `create_rasters_worker` (TIF files with WTCPUE)
- - `{table_name}_LayerSpeciesYearImageName` table (species/year catalog)
- - `{table_name}_Raster_Mask` (spatial template)
- - `{table_name}_Bathymetry` (depth raster from `create_region_bathymetry_worker`)
- - `{table_name}_Latitude` and `{table_name}_Longitude` (coordinate rasters from `create_region_fishnets_worker`)
- - `Datasets` table (region metadata)
-
- - **Outputs**:
- - `{table_name}_Indicators` table — Distribution statistics per species/year
- - Master `Indicators` table (consolidated from all regions)
- - One row per species/year combination with valid biomass
-
- - **Data flow**:
- ```
- Interpolated Species Rasters (Biomass)
- → NumPy array loading
- ↓
- Latitude/Longitude/Bathymetry Rasters
- → Weighted CoG calculation
- → Percentile bound extraction
- ↓
- Offset tracking (baseline year subtraction)
- → Standard error calculation
- ↓
- Indicators Table Row Construction
- → InsertCursor → Region-specific table
- ↓
- Master Indicators Table (all regions appended)
- ```
-
- ### **Computational Architecture**
-
- - **NumPy-based efficiency**: All spatial statistics computed via array operations (no pixel-by-pixel cursors)
- - **Multi-dimensional calculation**: Single pass over rasters generates 5 spatial dimensions (lat, lon, depth × CoG + bounds)
- - **Baseline year tracking**: Per-species first year stored to enable offset calculation
- - **International date line handling**: Special modulo arithmetic prevents wrapping errors at ±180°
- - **Zero-biomass handling**: Skips computation when `maximumBiomass == 0` (avoids NaN propagation)
- - **Batch parallelism**: Director processes multiple regions; each worker independently calculates indicators
-
- ### **Field Output Summary**
-
- | Field Group | Fields | Calculation |
- |---|---|---|
- | **Identifiers** | DatasetCode, Region, Season, Year | From Datasets table & raster metadata |
- | **Taxonomy** | Species, CommonName, CoreSpecies | From LayerSpeciesYearImageName |
- | **Spatial Center** | CenterOfGravityLatitude, CenterOfGravityLongitude, CenterOfGravityDepth | Σ(biomass × coordinate) / Σ(biomass) |
- | **Percentile Bounds** | MinimumLatitude, MaximumLatitude, MinimumLongitude, MaximumLongitude, MinimumDepth, MaximumDepth | 5th/95th percentile of coordinate distribution |
- | **Migration** | OffsetLatitude, OffsetLongitude, OffsetDepth | CoG(year) - CoG(first_year) |
- | **Uncertainty** | CenterOfGravityLatitudeSE, CenterOfGravityLongitudeSE, CenterOfGravityDepthSE | √(variance / count) of weighted coordinates |
-
-- ### Publish to Portal Director
- - Publishes processed datasets to ArcGIS Portal with credentials
- - #### **Director(publish_to_portal_director.py)**
-
- **Purpose & Architecture:**
- This is the final (10th) director-only file in the DisMAP pipeline, responsible for orchestrating ArcGIS Portal publishing workflows. Unlike previous director/worker pairs that execute parallel spatial processing, this director manages sequential feature service creation, service definition draft generation, metadata enrichment, and portal upload operations. It serves as the gateway for publishing all DisMAP-processed datasets (feature classes, tables, indicators, mosaics) as web services to ArcGIS Portal.
-
- **Core Functions:**
-
- 1. **`feature_sharing_draft_report(sd_draft="")`** (Lines 17-60)
- - Parses XML service definition draft files (`.sddraft`)
- - Extracts all Key-Value property pairs via DOM parsing
- - Displays configuration details for manual validation before publishing
- - Used for transparency: shows maxRecordCount, ServiceTitle, and all portal configurations
- - Error handling: comprehensive exception catching for XML parsing failures
-
- 2. **`create_feature_class_layers(project_gdb="")`** (Lines 62-420)
- - **Pre-processing phase**: Workspace setup, scratch GDB creation, ArcPy environment configuration
- - **Core logic**: Iterates over all publishable datasets (feature classes + tables):
- - `*Sample_Locations` feature classes
- - `DisMAP_Regions` feature class
- - `Indicators`, `Species_Filter`, `DisMAP_Survey_Info`, species persistence tables
- - **Layer file creation**: For each dataset:
- - Creates feature layer (MakeFeatureLayer) or table view (MakeTableView)
- - Saves as `.lyrx` file to `Layers\` folder with dataset title name
- - Applies metadata copying (title, tags, summary, description, credits, access constraints)
- - Exports layer to PNG thumbnail (288×192 px, 96 DPI)
- - **Time enablement**: Detects `StdTime` field and configures temporal layer properties
- - Sets UTC timezone, calculates temporal extent (start/end dates)
- - Outputs time range diagnostic information
- - **Map & metadata lifecycle**:
- - Creates/overwrites ArcGIS Pro map per dataset
- - Adds layer file + "Terrain with Labels" basemap
- - Saves layer file metadata (title, tags, summary) to XML export
- - Calls `parse_xml_file_format_and_save()` for formatted metadata export
- - **Post-processing**: Cleanup—deletes temporary maps, saves project
- - Integration: Depends on upstream `{table_name}` features created by prior directors
-
- 3. **`create_feature_class_services(project_gdb="")`** (Lines 422-900)
- - **Purpose**: Primary service publishing function—creates feature service definitions, stages, and uploads to Portal
- - **Pre-processing**: Same workspace setup as `create_feature_class_layers()`
- - **Service definition draft generation** (Lines 550-630):
- - Loads layer files from `Layers\` folder
- - Calls `map.getWebLayerSharingDraft()` for FEATURE service type on HOSTING_SERVER
- - Configures draft properties:
- - `allowExporting = False`
- - `offline = False`
- - `overwriteExistingService = True`
- - `portalFolder = "DisMAP {project_name}"`
- - Metadata: credits, description, summary, tags, useLimitations from layer metadata
- - Exports draft to `.sddraft` file in `Publish\` folder
- - **SD Draft XML modification** (Lines 632-680):
- - Parses `.sddraft` XML with DOM
- - Updates `maxRecordCount`: 2000 → 10000 (supports larger queries)
- - Updates `ServiceTitle` to feature service title
- - Writes modified XML back to `.sddraft`
- - Calls `feature_sharing_draft_report()` for validation display
- - **Service staging & upload** (Lines 682-710):
- - `arcpy.server.StageService()`: Creates `.sd` service definition from `.sddraft`
- - `arcpy.server.UploadServiceDefinition()`: Publishes to Portal with parameters:
- - `in_server = "HOSTING_SERVER"` (cloud-based Portal, not federated)
- - `in_folder_type = "FROM_SERVICE_DEFINITION"` (uses embedded folder path)
- - `in_startupType = "STARTED"` (service starts immediately after publishing)
- - `in_override = "OVERRIDE_DEFINITION"` (replaces existing service)
- - `in_my_contents = "NO_SHARE_ONLINE"` (no automatic sharing)
- - `in_public = "PRIVATE"` (private by default; organization can publish)
- - `in_organization = "NO_SHARE_ORGANIZATION"` (no org-wide sharing)
- - **Post-publishing**: Lists all maps in project, saves APRX, cleanup
- - **Integration**: Consumes layer files from `create_feature_class_layers()`, outputs web services on Portal
-
- 4. **`create_image_services(project_gdb="")`** (Lines 902-1220)
- - **Status**: Partially implemented/commented out; framework present but not fully active
- - **Intended purpose**: Image service publishing for mosaic datasets (multidimensional rasters)
- - **Expected workflow** (from commented code):
- - Creates mosaic dataset from source rasters
- - Generates image service definition draft via `CreateImageSDDraft()`
- - Stages and uploads image service to Portal via ArcGIS Server
- - Supports multidimensional imagery with time and variable dimensions
- - **Current state**: Only skeleton implementation; all operational logic in commented sections
- - **Note**: Mosaic creation itself handled by `create_mosaics_director/worker` (prior stage); this would consume those mosaics
-
- 5. **`create_maps(project_gdb="")` & metadata template functions** (Lines 1222-2550+)
- - **Status**: Mostly commented out (development/archive code)
- - **Purpose**: Map layout generation, XML metadata template creation/import, thumbnails
- - **Key archived patterns** (from commented code):
- - Dataset enumeration via `arcpy.da.Walk()` (GDB traversal)
- - Metadata template assignment per dataset type (Indicators, Sample_Locations, Mosaic, etc.)
- - XML metadata export/import: `saveAsXML()`, metadata copying from templates
- - Year range extraction for temporal datasets: `unique_years()` function
- - Layout creation and export to JPEG (map thumbnails)
- - **Note**: These functions likely evolve as Portal metadata publishing strategy matures
-
- 6. **`script_tool(project_gdb="")`** (Lines 2563-2700)
- - **Orchestration driver**: Central control logic for all publishing functions
- - **Execution flags** (all currently False for development/testing):
- - `CreateFeatureClassLayers = False`
- - `CreateFeaturClasseServices = False`
- - `CreateImagesServices = False`
- - `CreateMaps = False`
- - **Timing & diagnostics**:
- - Captures start time via `time.time()`
- - Logs: Python version, environment name, execution location
- - Calculates elapsed time in H:M:S format
- - **Workspace setup**: Creates scratch GDB if missing; sets ArcPy environment
- - **Integration point**: Takes `project_gdb` parameter (default: `August 1 2025.gdb`)
- - **Error handling**: Wraps all function calls in try/except with SystemExit propagation
-
- **Data Pipeline Integration:**
-
- ```
- Upstream inputs:
- ├── Feature Classes (created by create_region_sample_locations)
- │ └── *Sample_Locations, DisMAP_Regions
- ├── Tables (created by create_indicators_table, create_species_year_image_name_table)
- │ └── Indicators, Species_Filter, LayerSpeciesYearImageName, Survey Info
- └── Mosaics & CRFs (created by create_mosaics_director/worker)
- └── {Region}_Mosaic, {Region}_Mosaic.crf
-
- Publishing outputs:
- ├── Feature Services (hosted on Portal)
- │ └── {Dataset Service Title} (with web-accessible points, regions, indicators)
- ├── Image Services (intended, currently inactive)
- │ └── Multidimensional mosaic services (species × year)
- ├── Layer Files (.lyrx format)
- │ └── Stored locally for reuse, metadata-enriched
- └── Metadata XML exports
- └── Formatted metadata in Metadata_Export folder
- ```
-
- **Technical Patterns & Features:**
-
- - **Metadata-driven architecture**: Uses `dataset_title_dict()` to lookup service titles, descriptions, credits from centralized metadata dictionary—enables dynamic naming without hardcoding
- - **XML DOM manipulation**: Direct parsing/modification of `.sddraft` files to adjust service parameters (maxRecordCount, ServiceTitle) before staging
- - **Layer file hierarchy**: `.lyrx` files serve as reusable layer definitions—contain symbology, field visibility (e.g., specific fields marked VISIBLE NONE for filtering), time configuration
- - **Portal folder organization**: All services grouped under `"DisMAP {project_name}"` folder for organizational clarity
- - **Temporal configuration**: Automatic time enablement for datasets with `StdTime` field; UTC timezone standardization
- - **Metadata synchronization**: `metadata.synchronize("ALWAYS")` ensures dataset metadata propagates to feature layers and maps
- - **Field visibility control**: Table views configured with specific field info string (26+ fields enumerated for Indicators table with VISIBLE/NONE flags)
-
- **Known Limitations & Development Notes:**
-
- - **Image services incomplete**: Framework present but all operational code commented out; mosaic publishing not yet activated
- - **Hardcoded test paths**: Default `project_gdb` points to `"August 1 2025"` directory; production deployment requires parameterization
- - **Portal connection**: Requires authenticated ArcGIS Pro environment; commented code shows Portal URL examples (`https://noaa.maps.arcgis.com/`)
- - **Single-script execution**: No multiprocessing (unlike previous 9 directors); sequential service publishing—upload time depends on dataset complexity
- - **Service definition draft report**: XML parsing via custom function; relies on specific key/value structure (fragile if ArcGIS service format changes)
-
- **Execution Dependencies & Prerequisites:**
-
- - ArcGIS Pro with valid Portal credentials
- - Active workspace: project GDB with all upstream datasets
- - Layer files pre-created (normally output from `create_feature_class_layers()`)
- - Scratch workspace for temporary operations
- - Network access to Portal for upload/publish operations
-
-#### Suggestions and Comments
-
-If you see that the data, product, or metadata can be improved, you are invited to create a [pull request](https://github.com/nmfs-fish-tools/DisMAP/pulls) or [submit an issue to the code’s repository](https://github.com/nmfs-fish-tools/DisMAP/issues).
-
-#### NOAA-NMFS GitHub Enterprise Disclaimer
-
-This repository is a scientific product and is not official communication of the National Oceanic and Atmospheric Administration, or the United States Department of Commerce. All NOAA GitHub project code is provided on an ‘as is’ basis and the user assumes responsibility for its use. Any claims against the Department of Commerce or Department of Commerce bureaus stemming from the use of this GitHub project will be governed by all applicable Federal law. Any reference to specific commercial products, processes, or services by service mark, trademark, manufacturer, or otherwise, does not constitute or imply their endorsement, recommendation or favoring by the Department of Commerce.
-The Department of Commerce seal and logo, or the seal and logo of a DOC bureau, shall not be used in any manner to imply endorsement of any commercial product or activity by DOC or the United States Government.
-
-#### NOAA License
-
-Software code created by U.S. Government employees is not subject to copyright in the United States (17 U.S.C. §105). The United States/Department of Commerce reserve all rights to seek and obtain copyright protection in countries other than the United States for Software authored in its entirety by the Department of Commerce. To this end, the Department of Commerce hereby grants to Recipient a royalty-free, nonexclusive license to use, copy, and create derivative works of the Software outside of the United States.
-
-
-
-[U.S. Department of Commerce](https://www.commerce.gov/) \| [National Oceanographic and Atmospheric Administration](https://www.noaa.gov) \| [NOAA Fisheries](https://www.fisheries.noaa.gov/)
-
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/XML b/ArcGIS-Analysis-Python/Scripts/dismap_tools/XML
new file mode 160000
index 0000000..aa78eef
--- /dev/null
+++ b/ArcGIS-Analysis-Python/Scripts/dismap_tools/XML
@@ -0,0 +1 @@
+Subproject commit aa78eef520a7d1803d9ddaae10d5001e73d4f846
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/__init__.cpython-311.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/__init__.cpython-311.pyc
deleted file mode 100644
index e25f806..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/__init__.cpython-311.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/__init__.cpython-313.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/__init__.cpython-313.pyc
deleted file mode 100644
index ff94afb..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/__init__.cpython-313.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/bar.cpython-311.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/bar.cpython-311.pyc
deleted file mode 100644
index 4ad330e..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/bar.cpython-311.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_indicators_table_worker.cpython-311.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_indicators_table_worker.cpython-311.pyc
deleted file mode 100644
index e36a14e..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_indicators_table_worker.cpython-311.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_indicators_table_worker.cpython-313.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_indicators_table_worker.cpython-313.pyc
deleted file mode 100644
index ee158c4..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_indicators_table_worker.cpython-313.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_mosaics_director.cpython-313.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_mosaics_director.cpython-313.pyc
deleted file mode 100644
index a7be841..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_mosaics_director.cpython-313.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_mosaics_worker.cpython-311.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_mosaics_worker.cpython-311.pyc
deleted file mode 100644
index 463f912..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_mosaics_worker.cpython-311.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_mosaics_worker.cpython-313.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_mosaics_worker.cpython-313.pyc
deleted file mode 100644
index 2356d69..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_mosaics_worker.cpython-313.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_rasters_director.cpython-313.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_rasters_director.cpython-313.pyc
deleted file mode 100644
index 93b4e28..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_rasters_director.cpython-313.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_rasters_worker.cpython-311.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_rasters_worker.cpython-311.pyc
deleted file mode 100644
index a4ea3d6..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_rasters_worker.cpython-311.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_rasters_worker.cpython-313.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_rasters_worker.cpython-313.pyc
deleted file mode 100644
index af328fc..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_rasters_worker.cpython-313.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_region_bathymetry_director.cpython-313.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_region_bathymetry_director.cpython-313.pyc
deleted file mode 100644
index c6aab6d..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_region_bathymetry_director.cpython-313.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_region_bathymetry_worker.cpython-311.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_region_bathymetry_worker.cpython-311.pyc
deleted file mode 100644
index 9b10c7e..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_region_bathymetry_worker.cpython-311.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_region_bathymetry_worker.cpython-313.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_region_bathymetry_worker.cpython-313.pyc
deleted file mode 100644
index 9fd28d5..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_region_bathymetry_worker.cpython-313.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_region_fishnets_worker.cpython-311.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_region_fishnets_worker.cpython-311.pyc
deleted file mode 100644
index 4b1355a..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_region_fishnets_worker.cpython-311.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_region_fishnets_worker.cpython-313.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_region_fishnets_worker.cpython-313.pyc
deleted file mode 100644
index f0a95b1..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_region_fishnets_worker.cpython-313.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_region_sample_locations_worker.cpython-311.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_region_sample_locations_worker.cpython-311.pyc
deleted file mode 100644
index aa680bf..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_region_sample_locations_worker.cpython-311.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_region_sample_locations_worker.cpython-313.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_region_sample_locations_worker.cpython-313.pyc
deleted file mode 100644
index e8da020..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_region_sample_locations_worker.cpython-313.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_regions_from_shapefiles_director.cpython-311.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_regions_from_shapefiles_director.cpython-311.pyc
deleted file mode 100644
index 8a591c0..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_regions_from_shapefiles_director.cpython-311.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_regions_from_shapefiles_worker.cpython-311.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_regions_from_shapefiles_worker.cpython-311.pyc
deleted file mode 100644
index cbeda8e..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_regions_from_shapefiles_worker.cpython-311.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_regions_from_shapefiles_worker.cpython-313.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_regions_from_shapefiles_worker.cpython-313.pyc
deleted file mode 100644
index 2f4a92e..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_regions_from_shapefiles_worker.cpython-313.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_species_richness_rasters_director.cpython-311.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_species_richness_rasters_director.cpython-311.pyc
deleted file mode 100644
index e037e05..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_species_richness_rasters_director.cpython-311.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_species_richness_rasters_director.cpython-313.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_species_richness_rasters_director.cpython-313.pyc
deleted file mode 100644
index 8898020..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_species_richness_rasters_director.cpython-313.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_species_richness_rasters_worker.cpython-311.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_species_richness_rasters_worker.cpython-311.pyc
deleted file mode 100644
index 59cc890..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_species_richness_rasters_worker.cpython-311.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_species_richness_rasters_worker.cpython-313.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_species_richness_rasters_worker.cpython-313.pyc
deleted file mode 100644
index f1f025d..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_species_richness_rasters_worker.cpython-313.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_species_year_image_name_table_director.cpython-313.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_species_year_image_name_table_director.cpython-313.pyc
deleted file mode 100644
index 0bb981c..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_species_year_image_name_table_director.cpython-313.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_species_year_image_name_table_worker.cpython-311.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_species_year_image_name_table_worker.cpython-311.pyc
deleted file mode 100644
index 255fd60..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_species_year_image_name_table_worker.cpython-311.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_species_year_image_name_table_worker.cpython-313.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_species_year_image_name_table_worker.cpython-313.pyc
deleted file mode 100644
index b7821b0..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/create_species_year_image_name_table_worker.cpython-313.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/dismap_tools.cpython-311.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/dismap_tools.cpython-311.pyc
deleted file mode 100644
index 1a245a1..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/dismap_tools.cpython-311.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/dismap_tools.cpython-313.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/dismap_tools.cpython-313.pyc
deleted file mode 100644
index 0e0544e..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/__pycache__/dismap_tools.cpython-313.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/copy_initial_data.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/copy_initial_data.py
deleted file mode 100644
index bd39a21..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/copy_initial_data.py
+++ /dev/null
@@ -1,193 +0,0 @@
-"""
-Script documentation
-- Tool parameters are accessed using arcpy.GetParameter() or
- arcpy.GetParameterAsText()
-- Update derived parameter values using arcpy.SetParameter() or
- arcpy.SetParameterAsText()
-"""
-import os
-
-import arcpy
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- filename = sys.path[0] + os.sep + "test.py"
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def script_tool(project_folder="", csv_data_file="", dataset_shapefiles="", contacts_file=""):
- """Script code goes below"""
- try:
- from zipfile import ZipFile
- from arcpy import metadata as md
- from lxml import etree
- from io import StringIO
-
- arcpy.env.overwriteOutput = True
-
- #aprx = arcpy.mp.ArcGISProject("CURRENT")
- #aprx.save()
- #project_folder = aprx.homeFolder
- arcpy.AddMessage(project_folder)
- out_data_path = rf"{project_folder}\CSV_Data"
-
- import json
- json_path = rf"{out_data_path}\root_dict.json"
- with open(json_path, "r") as json_file:
- root_dict = json.load(json_file)
- del json_file
- del json_path
- del json
-
- arcpy.AddMessage(out_data_path)
- # Change Directory
- os.chdir(out_data_path)
- arcpy.AddMessage(f"Un-Zipping files from {os.path.basename(csv_data_file)}")
- with ZipFile(csv_data_file, mode="r") as archive:
- for file in archive.namelist():
- archive.extract(file, ".")
- del file
- del archive
- arcpy.AddMessage(f"Done Un-Zipping files from {os.path.basename(csv_data_file)}")
- tmp_workspace = arcpy.env.workspace
- arcpy.env.workspace = rf"{out_data_path}\python"
-
- csv_files = arcpy.ListFiles("*_survey.csv")
-
- arcpy.AddMessage("Copying CSV Files and renaming the file")
- for csv_file in csv_files:
- arcpy.management.Copy(rf"{out_data_path}\python\{csv_file}", rf"{out_data_path}\{csv_file.replace('_survey', '_IDW')}")
- del csv_file
- del csv_files
-
- arcpy.env.workspace = tmp_workspace
- del tmp_workspace
-
- if arcpy.Exists(rf"{out_data_path}\python"):
- arcpy.AddMessage("Removing the extract folder")
- arcpy.management.Delete(rf"{out_data_path}\python")
- else:
- pass
-
- arcpy.AddMessage("Adding metadata to CSV file")
- tmp_workspace = arcpy.env.workspace
- arcpy.env.workspace = out_data_path
-
- csv_files = arcpy.ListFiles("*_IDW.csv")
- for csv_file in csv_files:
- arcpy.AddMessage(f"\t{csv_file}")
- dataset_md = md.Metadata(rf"{out_data_path}\{csv_file}")
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- dataset_md.importMetadata(contacts_file, "ARCGIS_METADATA")
- dataset_md.save()
- dataset_md.synchronize("OVERWRITE")
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- target_tree = etree.parse(StringIO(dataset_md.xml), parser=etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root = target_tree.getroot()
- target_root[:] = sorted(target_root, key=lambda x: root_dict[x.tag])
- new_item_name = target_root.find("Esri/DataProperties/itemProps/itemName").text
- arcpy.AddMessage(new_item_name)
-## onLineSrcs = target_root.findall("distInfo/distTranOps/onLineSrc")
-## #arcpy.AddMessage(onLineSrcs)
-## for onLineSrc in onLineSrcs:
-## if onLineSrc.find('./protocol').text == "ESRI REST Service":
-## old_linkage_element = onLineSrc.find('./linkage')
-## old_linkage = old_linkage_element.text
-## #arcpy.AddMessage(old_linkage)
-## old_item_name = old_linkage[old_linkage.find("/services/")+len("/services/"):old_linkage.find("/FeatureServer")]
-## new_linkage = old_linkage.replace(old_item_name, new_item_name)
-## #arcpy.AddMessage(new_linkage)
-## old_linkage_element.text = new_linkage
-## #arcpy.AddMessage(old_linkage_element.text)
-## del old_linkage_element
-## del old_item_name, old_linkage, new_linkage
-## onLineSrc.find('./orName').text = f"{new_item_name} Feature Service"
-## del onLineSrcs, new_item_name
- etree.indent(target_root, space=' ')
- dataset_md.xml = etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
-
- del dataset_md
-
- del csv_file
- del csv_files
-
- arcpy.env.workspace = tmp_workspace
- del tmp_workspace
-
- # Imports
- del md
-
- # Function Variables
- del project_folder, csv_data_file, dataset_shapefiles, contacts_file
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-if __name__ == "__main__":
- try:
- project_folder = arcpy.GetParameterAsText(0)
- if not project_folder:
- project_folder = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026")
- else:
- pass
-
- csv_data_file = arcpy.GetParameterAsText(1)
- if not csv_data_file:
- csv_data_file = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\Initial Data\\CSV Data 20260201.zip")
- else:
- pass
-
- dataset_shapefiles = arcpy.GetParameterAsText(2)
- if not dataset_shapefiles:
- dataset_shapefiles = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\Initial Data\\Dataset Shapefiles 20260201.zip")
- else:
- pass
-
- contacts_file = arcpy.GetParameterAsText(3)
- if not contacts_file:
- contacts_file = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\Initial Data\\DisMAP Contacts 20260201.xml")
- else:
- pass
-
-
- script_tool(project_folder, csv_data_file, dataset_shapefiles, contacts_file)
-
- arcpy.SetParameterAsText(3, True)
-
- del project_folder, csv_data_file, dataset_shapefiles, contacts_file
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_base_bathymetry.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_base_bathymetry.py
deleted file mode 100644
index 81bd73c..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_base_bathymetry.py
+++ /dev/null
@@ -1,742 +0,0 @@
-# -*- coding: utf-8 -*-
-#-------------------------------------------------------------------------------
-# Name: create_base_bathymetry
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 05/03/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-#-------------------------------------------------------------------------------
-import os
-import sys
-
-import arcpy # third-parties second
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- filename = sys.path[0] + os.sep + "test.py"
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def raster_properties_report(dataset=""):
- try:
- if not dataset:
- arcpy.AddWarning(f"{dataset} is missing")
- else:
- pixel_types = {"U1" : "1 bit", "U2" : "2 bits", "U4" : "4 bits",
- "U8" : "Unsigned 8-bit integers", "S8" : "8-bit integers",
- "U16" : "Unsigned 16-bit integers", "S16" : "16-bit integers",
- "U32" : "Unsigned 32-bit integers", "S32" : "32-bit integers",
- "F32" : "Single-precision floating point",
- "F64" : "Double-precision floating point",}
-
- raster = arcpy.Raster(dataset)
-
- arcpy.AddMessage(f"\t\t {raster.name}")
- arcpy.AddMessage(f"\t\t\t Spatial Reference: {raster.spatialReference.name}")
- arcpy.AddMessage(f"\t\t\t XYResolution: {raster.spatialReference.XYResolution} {raster.spatialReference.linearUnitName}s")
- arcpy.AddMessage(f"\t\t\t XYTolerance: {raster.spatialReference.XYTolerance} {raster.spatialReference.linearUnitName}s")
- arcpy.AddMessage(f"\t\t\t Extent: {raster.extent.XMin} {raster.extent.YMin} {raster.extent.XMax} {raster.extent.YMax} (XMin, YMin, XMax, YMax)")
- arcpy.AddMessage(f"\t\t\t Cell Size: {raster.meanCellHeight}, {raster.meanCellWidth} (H, W)")
- arcpy.AddMessage(f"\t\t\t Rows, Columns: {raster.height} {raster.width} (H, W)")
- arcpy.AddMessage(f"\t\t\t Statistics: {raster.minimum} {raster.maximum} {raster.mean} {raster.standardDeviation} (Min, Max, Mean, STD)")
- arcpy.AddMessage(f"\t\t\t Pixel Type: {pixel_types[raster.pixelType]}")
-
- del raster
- del pixel_types
- del dataset
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def create_alasaka_bathymetry(project_folder=""):
- try:
- # Imports
- from dismap_tools import check_transformation
-
- # Set History and Metadata logs, set serverity and message level
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(1) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- # Set basic workkpace variables
- arcpy.env.workspace = rf"{project_folder}\Bathymetry\Bathymetry.gdb"
- arcpy.env.scratchWorkspace = rf"{project_folder}\Scratch\scratch.gdb"
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- arcpy.env.cellSize = 1000
-
- arcpy.env.pyramid = "PYRAMIDS -1 BILINEAR DEFAULT 75 NO_SKIP"
- arcpy.env.rasterStatistics = "STATISTICS 1 1"
- arcpy.env.resamplingMethod = "BILINEAR"
-
- arcpy.env.outputCoordinateSystem = None
-
- arcpy.AddMessage("Processing Alaska Bathymetry")
-
-# ###--->>> Setting up the base folder bathymetry for all projects
- # Set Alaska Bathymetry
-
- ai_bathy = rf"{project_folder}\Bathymetry\Alaska Bathymetry\AI_IDW_Bathy.grd" # ASCII GRIDs
- ebs_bathy = rf"{project_folder}\Bathymetry\Alaska Bathymetry\EBS_IDW_Bathy.grd" # ASCII GRIDs
- goa_bathy = rf"{project_folder}\Bathymetry\Alaska Bathymetry\GOA_IDW_Bathy.grd" # ASCII GRIDs
-
- ai_bathy_grid = rf"{project_folder}\Bathymetry\Bathymetry.gdb\AI_IDW_Bathy_Grid" # ASCII GRIDs imported to the FGDB
- ebs_bathy_grid = rf"{project_folder}\Bathymetry\Bathymetry.gdb\EBS_IDW_Bathy_Grid" # ASCII GRIDs imported to the FGDB
- goa_bathy_grid = rf"{project_folder}\Bathymetry\Bathymetry.gdb\GOA_IDW_Bathy_Grid" # ASCII GRIDs imported to the FGDB
-
- ai_bathy_raster = rf"{project_folder}\Bathymetry\Bathymetry.gdb\AI_IDW_Bathy_Raster"
- ebs_bathy_raster = rf"{project_folder}\Bathymetry\Bathymetry.gdb\EBS_IDW_Bathy_Raster"
- goa_bathy_raster = rf"{project_folder}\Bathymetry\Bathymetry.gdb\GOA_IDW_Bathy_Raster"
-
- ai_bathymetry = rf"{project_folder}\Bathymetry\Bathymetry.gdb\AI_IDW_Bathymetry"
- ebs_bathymetry = rf"{project_folder}\Bathymetry\Bathymetry.gdb\EBS_IDW_Bathymetry"
- goa_bathymetry = rf"{project_folder}\Bathymetry\Bathymetry.gdb\GOA_IDW_Bathymetry"
- enbs_bathymetry = rf"{project_folder}\Bathymetry\Bathymetry.gdb\ENBS_IDW_Bathymetry"
- nbs_bathymetry = rf"{project_folder}\Bathymetry\Bathymetry.gdb\NBS_IDW_Bathymetry"
-
- arcpy.AddMessage("Processing Esri Raster Grids")
-
- spatial_ref = arcpy.Describe(ai_bathy).spatialReference.name
- arcpy.AddMessage(f"Spatial Reference for {os.path.basename(ai_bathy)}: {spatial_ref}")
-
- spatial_ref = arcpy.Describe(ai_bathy).spatialReference
- # Set Output Coordinate System
- arcpy.env.outputCoordinateSystem = spatial_ref
-
- if spatial_ref.linearUnitName == "Kilometer":
- arcpy.env.cellSize = 1
- arcpy.env.XYResolution = 0.1
- arcpy.env.XYResolution = 1.0
- elif spatial_ref.linearUnitName == "Meter":
- arcpy.env.cellSize = 1000
- arcpy.env.XYResolution = 0.0001
- arcpy.env.XYResolution = 0.001
-
- del spatial_ref
-
- arcpy.AddMessage("Copy AI_IDW_Bathy.grd to AI_IDW_Bathy_Grid")
-
- arcpy.management.CopyRaster(ai_bathy, ai_bathy_grid)
- arcpy.AddMessage("\tCopy Raster: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- del ai_bathy
-
- arcpy.AddMessage("Copy EBS_IDW_Bathy.grd to EBS_IDW_Bathy_Grid")
-
- arcpy.management.CopyRaster(ebs_bathy, ebs_bathy_grid)
- arcpy.AddMessage("\tCopy Raster: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- del ebs_bathy
-
- arcpy.AddMessage("Copy GOA_IDW_Bathy.grd to GOA_IDW_Bathy_Grid")
-
- arcpy.management.CopyRaster(goa_bathy, goa_bathy_grid)
- arcpy.AddMessage("\tCopy Raster: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- del goa_bathy
-
- arcpy.AddMessage("Converting AI_IDW_Bathy_Grid from positive values to negative")
-
- tmp_grid = arcpy.sa.Times(ai_bathy_grid, -1)
- arcpy.AddMessage("\tTimes: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- tmp_grid.save(ai_bathy_raster)
- del tmp_grid
-
- arcpy.AddMessage("Converting EBS_IDW_Bathy_Grid from positive values to negative")
-
- tmp_grid = arcpy.sa.Times(ebs_bathy_grid, -1)
- arcpy.AddMessage("\tTimes: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- tmp_grid.save(ebs_bathy_raster)
- del tmp_grid
-
- arcpy.AddMessage("Setting values equal to and less than 0 in the GOA_IDW_Bathy_Grid Null values")
-
- tmp_grid = arcpy.sa.SetNull(goa_bathy_grid, goa_bathy_grid, "Value < -1.0")
- arcpy.AddMessage("\tSet Null: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- tmp_grid.save(goa_bathy_raster+'_SetNull')
- del tmp_grid
-
- arcpy.AddMessage("Converting the GOA_IDW_Bathy_Grid from positive values to negative")
-
- tmp_grid = arcpy.sa.Times(goa_bathy_raster+'_SetNull', -1)
- arcpy.AddMessage("\tTimes: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- tmp_grid.save(goa_bathy_raster)
- del tmp_grid
-
- arcpy.AddMessage("Deleteing the GOA_IDW_Bathy Null grid")
-
- arcpy.management.Delete(goa_bathy_raster+'_SetNull')
- arcpy.AddMessage("\tDelete: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.AddMessage("Appending the AI raster to the GOA grid to ensure complete coverage")
-
- extent = arcpy.Describe(goa_bathy_raster).extent
- X_Min, Y_Min, X_Max, Y_Max = extent.XMin-(1000 * 366), extent.YMin-(1000 * 80), extent.XMax, extent.YMax
- extent = f"{X_Min} {Y_Min} {X_Max} {Y_Max}"
- arcpy.env.extent = extent
-
- arcpy.management.Append(inputs = ai_bathy_raster, target = goa_bathy_raster, schema_type="TEST", field_mapping="", subtype="")
- arcpy.AddMessage("\tAppend: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.AddMessage("Cliping GOA Raster")
-
- arcpy.management.Clip(goa_bathy_raster, extent, goa_bathy_raster+"_Clip")
- arcpy.AddMessage("\tClip: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del extent
-
- arcpy.AddMessage("Copying GOA Raster")
-
- arcpy.management.CopyRaster(goa_bathy_raster+"_Clip", goa_bathy_raster)
- arcpy.AddMessage("\tCopy Raster: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.management.Delete(goa_bathy_raster+"_Clip")
- arcpy.AddMessage("\tDelete: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.AddMessage("Appending the EBS raster to the AI grid to ensure complete coverage")
-
- extent = arcpy.Describe(ai_bathy_raster).extent
- X_Min, Y_Min, X_Max, Y_Max = extent.XMin, extent.YMin, extent.XMax, extent.YMax
- extent = f"{X_Min} {Y_Min} {X_Max} {Y_Max}"
- arcpy.env.extent = extent
- del X_Min, Y_Min, X_Max, Y_Max
-
- arcpy.management.Append(inputs = ebs_bathy_raster, target = ai_bathy_raster, schema_type="TEST", field_mapping="", subtype="")
- arcpy.AddMessage("\tAppend: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.AddMessage("Cliping AI Raster")
-
- arcpy.management.Clip(ai_bathy_raster, extent, ai_bathy_raster+"_Clip")
- arcpy.AddMessage("\tClip: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del extent
-
- arcpy.AddMessage("Copying AI Raster")
-
- arcpy.management.CopyRaster(ai_bathy_raster+"_Clip", ai_bathy_raster)
- arcpy.AddMessage("\tCopy Raster: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- #arcpy.management.Delete(ai_bathy_raster+"_Clip")
- #arcpy.AddMessage("\tDelete: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.ClearEnvironment("extent")
-
- # ###--->>> Final copy of rasters in Base Folder Start
-
- # Get the reference system defined for the region in datasets
- # Set the output coordinate system to what is needed for the
- # DisMAP project
- region = "AI_IDW"
- arcpy.env.outputCoordinateSystem = arcpy.SpatialReference(rf"{project_folder}\Dataset Shapefiles\{region}\{region}_Region.prj")
- #arcpy.env.geographicTransformations = "WGS_1984_(ITRF08)_To_NAD_1983_2011"
- #arcpy.env.geographicTransformations = check_transformation(goa_bathy_raster, region_sr)
- #del region_sr
- del region
-
- arcpy.AddMessage("Copy AI_IDW_Bathymetry_Raster to AI_IDW_Bathymetry")
-
- arcpy.management.CopyRaster(ai_bathy_raster, ai_bathymetry)
- arcpy.AddMessage("\tCopy Raster: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- # Get the reference system defined for the region in datasets
- # Set the output coordinate system to what is needed for the
- # DisMAP project
- region = "EBS_IDW"
- arcpy.env.outputCoordinateSystem = arcpy.SpatialReference(rf"{project_folder}\Dataset Shapefiles\{region}\{region}_Region.prj")
- #arcpy.env.geographicTransformations = "WGS_1984_(ITRF08)_To_NAD_1983_2011"
- #arcpy.env.geographicTransformations = check_transformation(goa_bathy_raster, region_sr)
- #del region_sr
- del region
-
- arcpy.AddMessage("Copy EBS_IDW_Bathymetry_Raster to EBS_IDW_Bathymetry")
-
- arcpy.management.CopyRaster(ebs_bathy_raster, ebs_bathymetry)
- arcpy.AddMessage("\tCopy Raster: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- # Get the reference system defined for the region in datasets
- # Set the output coordinate system to what is needed for the
- # DisMAP project
- region = "ENBS_IDW"
- arcpy.env.outputCoordinateSystem = arcpy.SpatialReference(rf"{project_folder}\Dataset Shapefiles\{region}\{region}_Region.prj")
- #arcpy.env.geographicTransformations = "WGS_1984_(ITRF08)_To_NAD_1983_2011"
- #arcpy.env.geographicTransformations = check_transformation(goa_bathy_raster, region_sr)
- #del region_sr
- del region
-
- arcpy.AddMessage("Copy EBS_IDW_Bathymetry_Raster to ENBS_Bathymetry")
-
- arcpy.management.CopyRaster(ebs_bathy_raster, enbs_bathymetry)
- arcpy.AddMessage("\tCopy Raster: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- # Get the reference system defined for the region in datasets
- # Set the output coordinate system to what is needed for the
- # DisMAP project
- region = "NBS_IDW"
- arcpy.env.outputCoordinateSystem = arcpy.SpatialReference(rf"{project_folder}\Dataset Shapefiles\{region}\{region}_Region.prj")
- #arcpy.env.geographicTransformations = "WGS_1984_(ITRF08)_To_NAD_1983_2011"
- #arcpy.env.geographicTransformations = check_transformation(goa_bathy_raster, region_sr)
- #del region_sr
- del region
-
- arcpy.AddMessage("Copy EBS_IDW_Bathymetry_Raster to NBS_Bathymetry")
-
- arcpy.management.CopyRaster(ebs_bathy_raster, nbs_bathymetry)
- arcpy.AddMessage("\tCopy Raster: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- # Get the reference system defined for the region in datasets
- # Set the output coordinate system to what is needed for the
- # DisMAP project
- region = "GOA_IDW"
- arcpy.env.outputCoordinateSystem = arcpy.SpatialReference(rf"{project_folder}\Dataset Shapefiles\{region}\{region}_Region.prj")
- #arcpy.env.geographicTransformations = "WGS_1984_(ITRF08)_To_NAD_1983_2011"
- #arcpy.env.geographicTransformations = check_transformation(goa_bathy_raster, region_sr)
- #del region_sr
- del region
-
- arcpy.AddMessage("Copy GOA_IDW_Bathymetry_Raster to GOA_IDW_Bathymetry")
-
- arcpy.management.CopyRaster(goa_bathy_raster, goa_bathymetry)
- arcpy.AddMessage("\tCopy Raster: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- del ai_bathy_grid, ebs_bathy_grid, goa_bathy_grid
- del ai_bathy_raster, ebs_bathy_raster, goa_bathy_raster
-
- # ###--->>> Final copy of rasters in Base Folder End
-
- # ###--->>> Copy rasters for Base Folder to Project Folder Start
-
-## # Set Output Coordinate System
-## arcpy.env.outputCoordinateSystem = arcpy.Describe(ai_bathymetry).spatialReference
-##
-## arcpy.AddMessage("Copy AI_IDW_Bathymetry to the Project Bathymetry GDB")
-## arcpy.management.CopyRaster(ai_bathymetry, rf"{project_folder}\Bathymetry\Bathymetry.gdb\{os.path.basename(ai_bathymetry)}")
-## arcpy.AddMessage("\tCopy Raster: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-##
-## # Set Output Coordinate System
-## arcpy.env.outputCoordinateSystem = arcpy.Describe(ebs_bathymetry).spatialReference
-##
-## arcpy.AddMessage("Copy EBS_IDW_Bathymetry to the Project Bathymetry GDB")
-## arcpy.management.CopyRaster(ebs_bathymetry, rf"{project_folder}\Bathymetry\Bathymetry.gdb\{os.path.basename(ebs_bathymetry)}")
-## arcpy.AddMessage("\tCopy Raster: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-##
-## # Set Output Coordinate System
-## arcpy.env.outputCoordinateSystem = arcpy.Describe(enbs_bathymetry).spatialReference
-##
-## arcpy.AddMessage("Copy ENBS_IDW_Bathymetry to the Project Bathymetry GDB")
-## arcpy.management.CopyRaster(enbs_bathymetry, rf"{project_folder}\Bathymetry\Bathymetry.gdb\{os.path.basename(enbs_bathymetry)}")
-## arcpy.AddMessage("\tCopy Raster: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-##
-## # Set Output Coordinate System
-## arcpy.env.outputCoordinateSystem = arcpy.Describe(nbs_bathymetry).spatialReference
-##
-## arcpy.AddMessage("Copy nbs_bathymetry to the Project Bathymetry GDB")
-## arcpy.management.CopyRaster(nbs_bathymetry, rf"{project_folder}\Bathymetry\Bathymetry.gdb\{os.path.basename(nbs_bathymetry)}")
-## arcpy.AddMessage("\tCopy Raster: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-##
-## # Set Output Coordinate System
-## arcpy.env.outputCoordinateSystem = arcpy.Describe(goa_bathymetry).spatialReference
-##
-## arcpy.AddMessage("Copy GOA_IDW_Bathymetry to the Project Bathymetry GDB")
-## arcpy.management.CopyRaster(goa_bathymetry, rf"{project_folder}\Bathymetry\Bathymetry.gdb\{os.path.basename(goa_bathymetry)}")
-## arcpy.AddMessage("\tCopy Raster: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- gdb = rf"{project_folder}\Bathymetry\Bathymetry.gdb"
- arcpy.AddMessage("Compacting the {os.path.basename(gdb)} GDB")
- arcpy.management.Compact(gdb)
- arcpy.AddMessage("\t"+arcpy.GetMessages(0).replace("\n", "\n\t"))
- del gdb
-
- # Imports
- del check_transformation
- # Declared Variables for this function only
- del ai_bathymetry, ebs_bathymetry, goa_bathymetry, enbs_bathymetry, nbs_bathymetry
- # Function parameter
- del project_folder
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def create_hawaii_bathymetry(project_folder=""):
- try:
- # Set History and Metadata logs, set serverity and message level
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(1) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- # Set basic workkpace variables
- arcpy.env.workspace = rf"{project_folder}\Bathymetry\Bathymetry.gdb"
- arcpy.env.scratchWorkspace = rf"{project_folder}\Scratch\scratch.gdb"
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- arcpy.env.cellSize = 500
-
- arcpy.env.pyramid = "PYRAMIDS -1 BILINEAR DEFAULT 75 NO_SKIP"
- arcpy.env.rasterStatistics = "STATISTICS 1 1"
- arcpy.env.resamplingMethod = "BILINEAR"
-
- arcpy.env.outputCoordinateSystem = None
-
- hi_bathy_grid = rf"{project_folder}\Bathymetry\Hawaii Bathymetry\BFISH_PSU.shp"
- hi_bathy_raster = rf"{project_folder}\Bathymetry\Bathymetry.gdb\HI_IDW_Bathy_Raster"
- hi_bathymetry = rf"{project_folder}\Bathymetry\Bathymetry.gdb\HI_IDW_Bathymetry"
-
- arcpy.AddMessage("Converting Hawaii Polygon Grid to a Raster")
-
- arcpy.conversion.PolygonToRaster(in_features = hi_bathy_grid, value_field = "Depth_MEDI", out_rasterdataset = hi_bathy_raster, cell_assignment="CELL_CENTER", priority_field="NONE", cellsize="500")
- arcpy.AddMessage("\tPolygon To Raster: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- tmp_grid = arcpy.sa.Times(hi_bathy_raster, -1.0)
- arcpy.AddMessage("\tTimes: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- tmp_grid.save(hi_bathymetry)
- del tmp_grid
-
-## arcpy.AddMessage("Copy Hawaii Raster to the Bathymetry GDB")
-##
-## arcpy.management.CopyRaster(hi_bathymetry, rf"{project_folder}\Bathymetry\Bathymetry.gdb\HI_IDW_Bathymetry")
-## arcpy.AddMessage("\tCopy Raster: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-##
-## gdb = rf"{project_folder}\Bathymetry\Bathymetry.gdb"
-## arcpy.AddMessage(f"Compacting the {os.path.basename(gdb)} GDB")
-## arcpy.management.Compact(gdb)
-## arcpy.AddMessage("\t"+arcpy.GetMessages(0).replace("\n", "\n\t"))
-## del gdb
-
- gdb = rf"{project_folder}\Bathymetry\Bathymetry.gdb"
- arcpy.AddMessage(f"Compacting the {os.path.basename(gdb)} GDB")
- arcpy.management.Compact(gdb)
- arcpy.AddMessage("\t"+arcpy.GetMessages(0).replace("\n", "\n\t"))
- del gdb
-
- # Declared Variables for this function only
- del hi_bathy_grid, hi_bathy_raster, hi_bathymetry
- # Function parameter
- del project_folder
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def gebco_bathymetry(project_folder=""):
- try:
-
- # Imports
- from dismap_tools import check_transformation
-
- # Set History and Metadata logs, set serverity and message level
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(1) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- # Set basic workkpace variables
- arcpy.env.workspace = rf"{project_folder}\Bathymetry\Bathymetry.gdb"
- arcpy.env.scratchWorkspace = rf"{project_folder}\Scratch\scratch.gdb"
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- arcpy.env.cellSize = 1000
-
- arcpy.env.pyramid = "PYRAMIDS -1 BILINEAR DEFAULT 75 NO_SKIP"
- arcpy.env.rasterStatistics = "STATISTICS 1 1"
- arcpy.env.resamplingMethod = "BILINEAR"
-
- arcpy.env.outputCoordinateSystem = None
-
- arcpy.AddMessage("Processing GEBCO Raster Grids")
-
- #gebco_dict = get_dms_points_for_gebco(project_gdb)
- gebco_dict = {
- 'GMEX_IDW' : 'gebco_2022_n30.6_s25.8_w-97.4_e-81.6.asc',
- 'NEUS_FAL_IDW' : 'gebco_2022_n44.8_s35.0_w-75.8_e-65.4.asc',
- 'NEUS_SPR_IDW' : 'gebco_2022_n44.8_s35.0_w-75.8_e-65.4.asc',
- 'SEUS_FAL_IDW' : 'gebco_2022_n35.4_s28.6_w-81.4_e-75.6.asc',
- 'SEUS_SPR_IDW' : 'gebco_2022_n35.4_s28.6_w-81.4_e-75.6.asc',
- 'SEUS_SUM_IDW' : 'gebco_2022_n35.4_s28.6_w-81.4_e-75.6.asc',
- 'WC_ANN_IDW' : 'gebco_2022_n48.6_s32.0_w-126.0_e-115.8.asc',
- 'WC_TRI_IDW' : 'gebco_2022_n49.2_s36.0_w-126.6_e-121.6.asc',
- }
-
- arcpy.AddMessage("Processing Regions")
- # Start looping over the datasets array as we go region by region.
- for table_name in gebco_dict:
- gebco_file_name = gebco_dict[table_name]
-
- gebco_grid = rf"{project_folder}\Bathymetry\GEBCO Bathymetry\{gebco_file_name}"
- bathy_grid = rf"{project_folder}\Bathymetry\Bathymetry.gdb\{table_name}_Bathy_Grid"
- bathy_raster = rf"{project_folder}\Bathymetry\Bathymetry.gdb\{table_name}_Bathy_Raster"
- bathymetry = rf"{project_folder}\Bathymetry\Bathymetry.gdb\{table_name}_Bathymetry"
-
- arcpy.AddMessage(f"Copy GEBCO File: {os.path.basename(gebco_grid)} to {os.path.basename(bathy_grid)}")
-
- # Execute ASCIIToRaster
- arcpy.conversion.ASCIIToRaster(gebco_grid, bathy_grid, "FLOAT")
- arcpy.AddMessage("\tASCII To Raster: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.AddMessage(f"Define projection for {os.path.basename(bathy_grid)}")
-
- arcpy.management.DefineProjection(bathy_grid, gebco_grid.replace('.asc', '.prj'))
- arcpy.AddMessage("\tDefine Projection: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.AddMessage(f"Project Raster to create: {os.path.basename(bathy_raster)}")
-
- # Get the reference system defined for the region in datasets
- # Set the output coordinate system to what is needed for the
- # DisMAP project
- region_sr = arcpy.SpatialReference(rf"{project_folder}\Dataset Shapefiles\{table_name}\{table_name}_Region.prj")
-
- if region_sr.linearUnitName == "Kilometer":
- arcpy.env.cellSize = 0.1
- arcpy.env.XYResolution = 0.0001
- arcpy.env.XYResolution = 0.001
- elif region_sr.linearUnitName == "Meter":
- arcpy.env.cellSize = 1000
- arcpy.env.XYResolution = 0.0001
- arcpy.env.XYResolution = 0.001
-
- arcpy.env.outputCoordinateSystem = region_sr
- #arcpy.env.geographicTransformations = "WGS_1984_(ITRF08)_To_NAD_1983_2011"
- transform = check_transformation(bathy_grid, region_sr)
- arcpy.env.geographicTransformations = transform
-
- arcpy.AddMessage(f"\tOut Spatial Reference: {region_sr.name}")
- arcpy.AddMessage(f"\tGeographic Transformations: {transform}")
-
- # Project Raster management
- arcpy.management.ProjectRaster(in_raster = bathy_grid, out_raster = bathy_raster, out_coor_system = region_sr)
- arcpy.AddMessage("\tProject Raster: {0}".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- # Cleanup after last use
- del region_sr, transform
-
- arcpy.AddMessage(f"Set Null for positive elevation values to create: {os.path.basename(bathymetry)}")
- with arcpy.EnvManager(scratchWorkspace=arcpy.env.scratchGDB, workspace=arcpy.env.workspace):
- out_raster = arcpy.sa.SetNull(
- in_conditional_raster = bathy_raster,
- in_false_raster_or_constant = bathy_raster,
- where_clause="Value > 1.0"
- )
- arcpy.AddMessage("\tSet Null: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- out_raster.save(bathymetry)
- del out_raster
-
- del gebco_grid, bathy_grid, bathy_raster, bathymetry
- del gebco_file_name, table_name
-
- del gebco_dict
-
- gdb = rf"{project_folder}\Bathymetry\Bathymetry.gdb"
- arcpy.AddMessage(f"Compacting the {os.path.basename(gdb)} GDB")
- arcpy.management.Compact(gdb)
- arcpy.AddMessage("\t"+arcpy.GetMessages(0).replace("\n", "\n\t"))
- del gdb
-
- # Declared Variables for this function only
-
- # Imports
- del check_transformation
- # Function parameter
- del project_folder
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def main(project_folder=""):
- try:
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
- # Create Scratch Workspace for Project
- if not arcpy.Exists(rf"{project_folder}\Scratch\scratch.gdb"):
- if not arcpy.Exists(rf"{project_folder}\Scratch"):
- os.makedirs(rf"{project_folder}\Scratch")
- if not arcpy.Exists(rf"{project_folder}\Scratch\scratch.gdb"):
- arcpy.management.CreateFileGDB(rf"{project_folder}\Scratch", "scratch")
-
- # Base Bathymetry Folder
- if not os.path.isdir(rf"{project_folder}\Bathymetry"):
- arcpy.AddMessage("Create Folder: 'Bathymetry'")
- arcpy.management.CreateFolder(rf"{project_folder}\Bathymetry")
- get_messages = "\t" + arcpy.GetMessages().replace('\n', '\n\t') + "\n"
- arcpy.AddMessage(f"{get_messages}")
- del get_messages
- else:
- pass
- # Base Bathymetry GDB
- if not arcpy.Exists(rf"{project_folder}\Bathymetry\Bathymetry.gdb"):
- arcpy.AddMessage("Create File GDB: 'Bathymetry.gdb'")
- arcpy.management.CreateFileGDB(rf"{project_folder}\Bathymetry", "Bathymetry")
- get_messages = "\t" + arcpy.GetMessages().replace('\n', '\n\t') + "\n"
- arcpy.AddMessage(f"{get_messages}")
- del get_messages
- else:
- pass
-
- test = True
- # Process base Alaska bathymetry
- if test:
- result = create_alasaka_bathymetry(project_folder)
- #arcpy.AddMessage(result)
- del result
- else:
- pass
-
- test = False
- # Process base Hawaii bathymetry
- if test:
- result = create_hawaii_bathymetry(project_folder)
- #arcpy.AddMessage(result)
- del result
- else:
- pass
-
- test = False
- # Process base GEBCO bathymetry
- if test:
- result = gebco_bathymetry(project_folder)
- #arcpy.AddMessage(result)
- del result
- else:
- pass
-
- del test
-
- # Declared Varaiables
-
- # Imports
-
- # Function Parameters
- del project_folder
-
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
-
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}\nCompleted: {strftime('%a %b %d %I:%M %p', localtime())}")
- arcpy.AddMessage(u"Elapsed Time {0} (H:M:S)".format(strftime("%H:%M:%S", gmtime(elapse_time))))
- arcpy.AddMessage(f"{'-' * 80}")
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-if __name__ == '__main__':
- try:
- project_folder = arcpy.GetParameterAsText(0)
-
- if not project_folder:
- project_folder = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python")
- else:
- pass
-
- result = main(project_folder)
- arcpy.SetParameterAsText(1, result)
- del result
-
- # Declared Variables
- del project_folder
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_data_dictionary_json_files.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_data_dictionary_json_files.py
deleted file mode 100644
index 26bca9f..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_data_dictionary_json_files.py
+++ /dev/null
@@ -1,2273 +0,0 @@
-"""
-Script documentation
-
-- Tool parameters are accessed using arcpy.GetParameter() or
- arcpy.GetParameterAsText()
-- Update derived parameter values using arcpy.SetParameter() or
- arcpy.SetParameterAsText()
-"""
-import arcpy
-import os
-import traceback
-import inspect
-
-def script_tool(project_gdb=""):
- """Script code goes below"""
- try:
- # Imports
- # Use all of the cores on the machine
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.env.overwriteOutput = True
-
- # Define variables
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = rf"{project_folder}\Scratch"
- scratch_gdb = os.path.join(scratch_folder, "scratch.gdb")
-
- # Set the workspace environment to local file geodatabase
- arcpy.env.workspace = project_gdb
- # Set the scratchWorkspace environment to local file geodatabase
- arcpy.env.scratchWorkspace = scratch_gdb
- # Clean-up variables
- del scratch_folder, scratch_gdb
-
- arcpy.AddMessage(f"\n{'--Start' * 10}--\n")
- arcpy.AddMessage(f"Creating Table and Field definitions for: {os.path.basename(project_gdb)}")
-
- field_definitions = { "Bio_Inc_Dec": {
- "field_aliasName": "Bio_Inc_Dec",
- "field_baseName": "Bio_Inc_Dec",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 30,
- "field_name": "Bio_Inc_Dec",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Bio_Inc_Dec",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Bio_Inc_Dec"
- }
- },
- "CSVFile": {
- "field_aliasName": "CSV File",
- "field_baseName": "CSVFile",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 20,
- "field_name": "CSVFile",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "CSV File",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "CSV File"
- }
- },
- "Category": {
- "field_aliasName": "Category",
- "field_baseName": "Category",
- "field_defaultValue": "null",
- "field_domain": "MosaicCatalogItemCategoryDomain",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 4,
- "field_name": "Category",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Integer",
- "field_attrdef": "Category",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Category"
- }
- },
- "CellSize": {
- "field_aliasName": "Cell Size",
- "field_baseName": "CellSize",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 4,
- "field_name": "CellSize",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Cell Size",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Cell Size"
- }
- },
- "CenterOfGravityDepth": {
- "field_aliasName": "Center of Gravity Depth",
- "field_baseName": "CenterOfGravityDepth",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "CenterOfGravityDepth",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Center of Gravity Depth",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Center of Gravity Depth"
- }
- },
- "CenterOfGravityDepthSE": {
- "field_aliasName": "Center of Gravity Depth Standard Error",
- "field_baseName": "CenterOfGravityDepthSE",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "CenterOfGravityDepthSE",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Center of Gravity Depth Standard Error",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Center of Gravity Depth Standard Error"
- }
- },
- "CenterOfGravityLatitude": {
- "field_aliasName": "Center of Gravity Latitude",
- "field_baseName": "CenterOfGravityLatitude",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "CenterOfGravityLatitude",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Center of Gravity Latitude",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Center of Gravity Latitude"
- }
- },
- "CenterOfGravityLatitudeSE": {
- "field_aliasName": "Center of Gravity Latitude Standard Error",
- "field_baseName": "CenterOfGravityLatitudeSE",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "CenterOfGravityLatitudeSE",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Center of Gravity Latitude Standard Error",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Center of Gravity Latitude Standard Error"
- }
- },
- "CenterOfGravityLongitude": {
- "field_aliasName": "Center of Gravity Longitude",
- "field_baseName": "CenterOfGravityLongitude",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "CenterOfGravityLongitude",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Center of Gravity Longitude",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Center of Gravity Longitude"
- }
- },
- "CenterOfGravityLongitudeSE": {
- "field_aliasName": "Center of Gravity Longitude Standard Error",
- "field_baseName": "CenterOfGravityLongitudeSE",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "CenterOfGravityLongitudeSE",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Center of Gravity Longitude Standard Error",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Center of Gravity Longitude Standard Error"
- }
- },
- "CenterX": {
- "field_aliasName": "CenterX",
- "field_baseName": "CenterX",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "CenterX",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "CenterX",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "CenterX"
- }
- },
- "CenterY": {
- "field_aliasName": "CenterY",
- "field_baseName": "CenterY",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "CenterY",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "CenterY",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "CenterY"
- }
- },
- "CommonName": {
- "field_aliasName": "Common Name",
- "field_baseName": "CommonName",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 40,
- "field_name": "CommonName",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Common Name",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Common Name"
- }
- },
- "CommonNameSpecies": {
- "field_aliasName": "Common Name (Species)",
- "field_baseName": "CommonNameSpecies",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 90,
- "field_name": "CommonNameSpecies",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Common Name (Species)",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Common Name (Species)"
- }
- },
- "CoreSpecies": {
- "field_aliasName": "Core Species",
- "field_baseName": "CoreSpecies",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 5,
- "field_name": "CoreSpecies",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Core Species",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Core Species"
- }
- },
- "Count": {
- "field_aliasName": "Count",
- "field_baseName": "Count",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "false",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "Count",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Count",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Count"
- }
- },
- "DataCitation": {
- "field_aliasName": "Data Citation",
- "field_baseName": "DataCitation",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 255,
- "field_name": "DataCitation",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Data Citation",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Data Citation"
- }
- },
- "DataFilteringNotes": {
- "field_aliasName": "Data Filtering Notes",
- "field_baseName": "DataFilteringNotes",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 150,
- "field_name": "DataFilteringNotes",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Data Filtering Notes",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Data Filtering Notes"
- }
- },
- "DataSource": {
- "field_aliasName": "Data Source",
- "field_baseName": "DataSource",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 100,
- "field_name": "DataSource",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Data Source",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Data Source"
- }
- },
- "DatasetCode": {
- "field_aliasName": "Dataset Code",
- "field_baseName": "DatasetCode",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 50,
- "field_name": "DatasetCode",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Dataset Code",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Dataset Code"
- }
- },
- "DateCode": {
- "field_aliasName": "Date Code",
- "field_baseName": "DateCode",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 20,
- "field_name": "DateCode",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Date Code",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Date Code"
- }
- },
- "Depth": {
- "field_aliasName": "Depth",
- "field_baseName": "Depth",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "Depth",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Depth",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Depth"
- }
- },
- "Dimensions": {
- "field_aliasName": "Dimensions",
- "field_baseName": "Dimensions",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 10,
- "field_name": "Dimensions",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Dimensions",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Dimensions"
- }
- },
- "DistributionProjectCode": {
- "field_aliasName": "Distribution Project Code",
- "field_baseName": "DistributionProjectCode",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 10,
- "field_name": "DistributionProjectCode",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Distribution Project Code",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Distribution Project Code"
- }
- },
- "DistributionProjectName": {
- "field_aliasName": "Distribution Project Name",
- "field_baseName": "DistributionProjectName",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 60,
- "field_name": "DistributionProjectName",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Distribution Project Name",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Distribution Project Name"
- }
- },
- "Easting": {
- "field_aliasName": "Easting",
- "field_baseName": "Easting",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "Easting",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Easting",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Easting"
- }
- },
- "FeatureClassName": {
- "field_aliasName": "Feature Class Name",
- "field_baseName": "FeatureClassName",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 60,
- "field_name": "FeatureClassName",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Feature Class Name",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Feature Class Name"
- }
- },
- "FeatureServiceName": {
- "field_aliasName": "Feature Service Name",
- "field_baseName": "FeatureServiceName",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 60,
- "field_name": "FeatureServiceName",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Feature Service Name",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Feature Service Name"
- }
- },
- "FeatureServiceTitle": {
- "field_aliasName": "Feature Service Title",
- "field_baseName": "FeatureServiceTitle",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 80,
- "field_name": "FeatureServiceTitle",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Feature Service Title",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Feature Service Title"
- }
- },
- "FilterRegion": {
- "field_aliasName": "Filter Region",
- "field_baseName": "FilterRegion",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 25,
- "field_name": "FilterRegion",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Filter Region",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Filter Region"
- }
- },
- "FilterSubRegion": {
- "field_aliasName": "Filter Sub-Region",
- "field_baseName": "FilterSubRegion",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 40,
- "field_name": "FilterSubRegion",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Filter Sub-Region",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Filter Sub-Region"
- }
- },
- "Frequency": {
- "field_aliasName": "Frequency",
- "field_baseName": "Frequency",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 25,
- "field_name": "Frequency",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Frequency",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Frequency"
- }
- },
- "GearType": {
- "field_aliasName": "Gear Type",
- "field_baseName": "GearType",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 150,
- "field_name": "GearType",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Gear Type",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Gear Type"
- }
- },
- "GeographicArea": {
- "field_aliasName": "Geographic Area",
- "field_baseName": "GeographicArea",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 20,
- "field_name": "GeographicArea",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Geographic Area",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Geographic Area"
- }
- },
- "GroupName": {
- "field_aliasName": "Group Name",
- "field_baseName": "GroupName",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 100,
- "field_name": "GroupName",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Group Name",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Group Name"
- }
- },
- "HaulBin": {
- "field_aliasName": "Haul Bin",
- "field_baseName": "HaulBin",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 20,
- "field_name": "HaulBin",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Haul Bin",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Haul Bin"
- }
- },
- "Haul_Inc_Dec": {
- "field_aliasName": "Haul_Inc_Dec",
- "field_baseName": "Haul_Inc_Dec",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 30,
- "field_name": "Haul_Inc_Dec",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Haul_Inc_Dec",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Haul_Inc_Dec"
- }
- },
- "HaulProportion": {
- "field_aliasName": "Haul Proportion",
- "field_baseName": "HaulProportion",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "HaulProportion",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Haul Proportion",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Haul Proportion"
- }
- },
-
-
-
-
- "HighPS": {
- "field_aliasName": "HighPS",
- "field_baseName": "HighPS",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "HighPS",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "HighPS",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "HighPS"
- }
- },
- "ID": {
- "field_aliasName": "ID",
- "field_baseName": "ID",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 2,
- "field_name": "ID",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "ID",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "ID"
- }
- },
- "ImageName": {
- "field_aliasName": "Image Name",
- "field_baseName": "ImageName",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 100,
- "field_name": "ImageName",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Image Name",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Image Name"
- }
- },
- "ImageServiceName": {
- "field_aliasName": "Image Service Name",
- "field_baseName": "ImageServiceName",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 40,
- "field_name": "ImageServiceName",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Image Service Name",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Image Service Name"
- }
- },
- "ImageServiceTitle": {
- "field_aliasName": "Image Service Title",
- "field_baseName": "ImageServiceTitle",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 60,
- "field_name": "ImageServiceTitle",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Image Service Title",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Image Service Title"
- }
- },
- "ItemTS": {
- "field_aliasName": "ItemTS",
- "field_baseName": "ItemTS",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "ItemTS",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "ItemTS",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "ItemTS"
- }
- },
- "Latitude": {
- "field_aliasName": "Latitude",
- "field_baseName": "Latitude",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "Latitude",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Latitude",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Latitude"
- }
- },
- "Longitude": {
- "field_aliasName": "Longitude",
- "field_baseName": "Longitude",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "Longitude",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Longitude",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Longitude"
- }
- },
- "LowPS": {
- "field_aliasName": "LowPS",
- "field_baseName": "LowPS",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "LowPS",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "LowPS",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "LowPS"
- }
- },
- "ManagementBody": {
- "field_aliasName": "Management Body",
- "field_baseName": "ManagementBody",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 20,
- "field_name": "ManagementBody",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Management Body",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Management Body"
- }
- },
- "ManagementPlan": {
- "field_aliasName": "Management Plan",
- "field_baseName": "ManagementPlan",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 90,
- "field_name": "ManagementPlan",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Management Plan",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Management Plan"
- }
- },
- "MapValue": {
- "field_aliasName": "Map Value",
- "field_baseName": "MapValue",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "MapValue",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Map Value",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Map Value"
- }
- },
- "MaxPS": {
- "field_aliasName": "MaxPS",
- "field_baseName": "MaxPS",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "MaxPS",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "MaxPS",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "MaxPS"
- }
- },
- "MaximumDepth": {
- "field_aliasName": "Maximum Depth",
- "field_baseName": "MaximumDepth",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "MaximumDepth",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Maximum Depth",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Maximum Depth"
- }
- },
- "MaximumLatitude": {
- "field_aliasName": "Maximum Latitude",
- "field_baseName": "MaximumLatitude",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "MaximumLatitude",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Maximum Latitude",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Maximum Latitude"
- }
- },
- "MaximumLongitude": {
- "field_aliasName": "Maximum Longitude",
- "field_baseName": "MaximumLongitude",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "MaximumLongitude",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Maximum Longitude",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Maximum Longitude"
- }
- },
- "MedianEstimate": {
- "field_aliasName": "Median Estimate",
- "field_baseName": "MedianEstimate",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "MedianEstimate",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Median Estimate",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Median Estimate"
- }
- },
- "MinPS": {
- "field_aliasName": "MinPS",
- "field_baseName": "MinPS",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "MinPS",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "MinPS",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "MinPS"
- }
- },
- "MinimumDepth": {
- "field_aliasName": "Minimum Depth",
- "field_baseName": "MinimumDepth",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "MinimumDepth",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Minimum Depth",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Minimum Depth"
- }
- },
- "MinimumLatitude": {
- "field_aliasName": "Minimum Latitude",
- "field_baseName": "MinimumLatitude",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "MinimumLatitude",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Minimum Latitude",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Minimum Latitude"
- }
- },
- "MinimumLongitude": {
- "field_aliasName": "Minimum Longitude",
- "field_baseName": "MinimumLongitude",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "MinimumLongitude",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Minimum Longitude",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Minimum Longitude"
- }
- },
- "MosaicName": {
- "field_aliasName": "Mosaic Name",
- "field_baseName": "MosaicName",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 20,
- "field_name": "MosaicName",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Mosaic Name",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Mosaic Name"
- }
- },
- "MosaicTitle": {
- "field_aliasName": "Mosaic Title",
- "field_baseName": "MosaicTitle",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 60,
- "field_name": "MosaicTitle",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Mosaic Title",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Mosaic Title"
- }
- },
- "Name": {
- "field_aliasName": "Name",
- "field_baseName": "Name",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 200,
- "field_name": "Name",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Name",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Name"
- }
- },
- "NetWTCPUE": {
- "field_aliasName": "Net WTCPUE",
- "field_baseName": "NetWTCPUE",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "NetWTCPUE",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Net WTCPUE",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Net WTCPUE"
- }
- },
- "Northing": {
- "field_aliasName": "Northing",
- "field_baseName": "Northing",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "Northing",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Northing",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Northing"
- }
- },
- "Notes": {
- "field_aliasName": "Notes",
- "field_baseName": "Notes",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 40,
- "field_name": "Notes",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Notes",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Notes"
- }
- },
- "OffsetDepth": {
- "field_aliasName": "Offset Depth",
- "field_baseName": "OffsetDepth",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "OffsetDepth",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Offset Depth",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Offset Depth"
- }
- },
- "OffsetLatitude": {
- "field_aliasName": "Offset Latitude",
- "field_baseName": "OffsetLatitude",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "OffsetLatitude",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Offset Latitude",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Offset Latitude"
- }
- },
- "OffsetLongitude": {
- "field_aliasName": "Offset Longitude",
- "field_baseName": "OffsetLongitude",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "OffsetLongitude",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Offset Longitude",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Offset Longitude"
- }
- },
- "Percentile": {
- "field_aliasName": "Percentile",
- "field_baseName": "Percentile",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "Percentile",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Percentile",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Percentile"
- }
- },
- "PercentileBin": {
- "field_aliasName": "Percentile Bin",
- "field_baseName": "PercentileBin",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 20,
- "field_name": "PercentileBin",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Percentile Bin",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Percentile Bin"
- }
- },
- "PointFeatureType": {
- "field_aliasName": "Point Feature Type",
- "field_baseName": "PointFeatureType",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 20,
- "field_name": "PointFeatureType",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Point Feature Type",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Point Feature Type"
- }
- },
- "ProductName": {
- "field_aliasName": "Product Name",
- "field_baseName": "ProductName",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 100,
- "field_name": "ProductName",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Product Name",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Product Name"
- }
- },
- "Raster": {
- "field_aliasName": "Raster",
- "field_baseName": "Raster",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 0,
- "field_name": "Raster",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Raster",
- "field_attrdef": "Raster",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Raster"
- }
- },
- "Region": {
- "field_aliasName": "Region",
- "field_baseName": "Region",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 40,
- "field_name": "Region",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Region",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Region"
- }
- },
- "SampleID": {
- "field_aliasName": "Sample ID",
- "field_baseName": "SampleID",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 20,
- "field_name": "SampleID",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Sample ID",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Sample ID"
- }
- },
- "Season": {
- "field_aliasName": "Season",
- "field_baseName": "Season",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 15,
- "field_name": "Season",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Season",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Season"
- }
- },
- "Species": {
- "field_aliasName": "Species",
- "field_baseName": "Species",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 50,
- "field_name": "Species",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Species",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Species"
- }
- },
- "SpeciesCommonName": {
- "field_aliasName": "Species (Common Name)",
- "field_baseName": "SpeciesCommonName",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 90,
- "field_name": "SpeciesCommonName",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Species (Common Name)",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Species (Common Name)"
- }
- },
- "StandardError": {
- "field_aliasName": "Standard Error",
- "field_baseName": "StandardError",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "StandardError",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Standard Error",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Standard Error"
- }
- },
- "Status": {
- "field_aliasName": "Status",
- "field_baseName": "Status",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 10,
- "field_name": "Status",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Status",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Status"
- }
- },
- "StdTime": {
- "field_aliasName": "StdTime",
- "field_baseName": "StdTime",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "StdTime",
- "field_precision": 1,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Date",
- "field_attrdef": "StdTime",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "StdTime"
- }
- },
- "Stratum": {
- "field_aliasName": "Stratum",
- "field_baseName": "Stratum",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 20,
- "field_name": "Stratum",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Stratum",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Stratum"
- }
- },
- "StratumArea": {
- "field_aliasName": "Stratum Area",
- "field_baseName": "StratumArea",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "StratumArea",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "Stratum Area",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Stratum Area"
- }
- },
- "SummaryProduct": {
- "field_aliasName": "Summary Product",
- "field_baseName": "SummaryProduct",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 5,
- "field_name": "SummaryProduct",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Summary Product",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Summary Product"
- }
- },
- "SurveyName": {
- "field_aliasName": "Survey Name",
- "field_baseName": "SurveyName",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 100,
- "field_name": "SurveyName",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Survey Name",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Survey Name"
- }
- },
- "TableName": {
- "field_aliasName": "Table Name",
- "field_baseName": "TableName",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 50,
- "field_name": "TableName",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Table Name",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Table Name"
- }
- },
- "Tag": {
- "field_aliasName": "Tag",
- "field_baseName": "Tag",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 100,
- "field_name": "Tag",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Tag",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Tag"
- }
- },
- "TaxonomicGroup": {
- "field_aliasName": "Taxonomic Group",
- "field_baseName": "TaxonomicGroup",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 80,
- "field_name": "TaxonomicGroup",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Taxonomic Group",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Taxonomic Group"
- }
- },
- "TotalSpeciesCount": {
- "field_aliasName": "Total Species Count",
- "field_baseName": "TotalSpeciesCount",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 4,
- "field_name": "TotalSpeciesCount",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Total Species Count",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Total Species Count"
- }
- },
- "TransformUnit": {
- "field_aliasName": "Transform Unit",
- "field_baseName": "TransformUnit",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 20,
- "field_name": "TransformUnit",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Transform Unit",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Transform Unit"
- }
- },
- "TrendCategory": {
- "field_aliasName": "Trend Category",
- "field_baseName": "TrendCategory",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 40,
- "field_name": "TrendCategory",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Trend Category",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Trend Category"
- }
- },
- "TypeID": {
- "field_aliasName": "Raster Type ID",
- "field_baseName": "TypeID",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 4,
- "field_name": "TypeID",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Integer",
- "field_attrdef": "Raster Type ID",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Raster Type ID"
- }
- },
- "Uri": {
- "field_aliasName": "Uri",
- "field_baseName": "Uri",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 0,
- "field_name": "Uri",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Blob",
- "field_attrdef": "Uri",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Uri"
- }
- },
- "UriHash": {
- "field_aliasName": "UriHash",
- "field_baseName": "UriHash",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 50,
- "field_name": "UriHash",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "UriHash",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "UriHash"
- }
- },
- "Value": {
- "field_aliasName": "Value",
- "field_baseName": "Value",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 50,
- "field_name": "Value",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Value",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Value"
- }
- },
- "Variable": {
- "field_aliasName": "Variable",
- "field_baseName": "Variable",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 50,
- "field_name": "Variable",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Variable",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Variable"
- }
- },
- "WTCPUE": {
- "field_aliasName": "WTCPUE",
- "field_baseName": "WTCPUE",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 8,
- "field_name": "WTCPUE",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Double",
- "field_attrdef": "WTCPUE",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "WTCPUE"
- }
- },
- "Year": {
- "field_aliasName": "Year",
- "field_baseName": "Year",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 4,
- "field_name": "Year",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "String",
- "field_attrdef": "Year",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Year"
- }
- },
- "Years": {
- "field_aliasName": "Years",
- "field_baseName": "Years",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 25,
- "field_name": "Years",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- #"field_type": "String",
- "field_type": "Integer",
- "field_attrdef": "Years",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "Years"
- }
- },
- "ZOrder": {
- "field_aliasName": "ZOrder",
- "field_baseName": "ZOrder",
- "field_defaultValue": "null",
- "field_domain": "",
- "field_editable": "true",
- "field_isNullable": "true",
- "field_length": 4,
- "field_name": "ZOrder",
- "field_precision": 0,
- "field_required": "true",
- "field_scale": 0,
- "field_type": "Integer",
- "field_attrdef": "ZOrder",
- "field_attrdefs": "DisMAP Project GDB Data Dictionary",
- "field_attrdomv": {
- "udom": "ZOrder"
- }
- }
- }
-
- _Bathymetry = []
- _Boundary = ["DatasetCode", "Region", "Season", "DistributionProjectCode"]
- _Datasets = ["DatasetCode", "CSVFile", "TransformUnit", "TableName",
- "GeographicArea", "CellSize", "PointFeatureType", "FeatureClassName",
- "Region", "Season", "DateCode", "Status", "DistributionProjectCode",
- "DistributionProjectName", "SummaryProduct", "FilterRegion",
- "FilterSubRegion", "FeatureServiceName", "FeatureServiceTitle",
- "MosaicName", "MosaicTitle", "ImageServiceName",
- "ImageServiceTitle"]
- _DisMAP_Survey_Info = ["SurveyName", "Region", "Season", "GearType",
- "Years", "Frequency", "DataFilteringNotes",
- "TotalSpeciesCount", "DataSource", "DataCitation"]
- _Extent_Points = ["Easting", "Northing", "Longitude", "Latitude"]
- _Fishnet = []
- #_GLMME = ["DatasetCode", "Region", "SummaryProduct", "Year", "StdTime",
- # "Species", "WTCPUE", "MapValue", "StandardError", "TransformUnit",
- # "CommonName", "SpeciesCommonName", "CommonNameSpecies", "Easting",
- # "Northing", "Latitude", "Longitude", "MedianEstimate", "Depth"]
- #_GRID_Points = ["DatasetCode", "Region", "SummaryProduct", "Year",
- # "StdTime", "Species", "WTCPUE", "MapValue", "StandardError",
- # "TransformUnit", "CommonName", "SpeciesCommonName",
- # "CommonNameSpecies", "Easting", "Northing", "Latitude",
- # "Longitude", "MedianEstimate", "Depth"]
- _IDW = ["DatasetCode", "Region", "Season", "DistributionProjectName",
- "SummaryProduct", "SampleID", "Year", "StdTime", "Species",
- "WTCPUE", "MapValue", "TransformUnit", "CommonName",
- "SpeciesCommonName", "CommonNameSpecies", "CoreSpecies",
- "Stratum", "StratumArea", "Latitude", "Longitude", "Depth"]
- _Indicators = ["DatasetCode", "Region", "Season", "DateCode", "Species",
- "CommonName", "CoreSpecies", "Year", "DistributionProjectName",
- "DistributionProjectCode", "SummaryProduct",
- "CenterOfGravityLatitude", "MinimumLatitude",
- "MaximumLatitude", "OffsetLatitude", "CenterOfGravityLatitudeSE",
- "CenterOfGravityLongitude", "MinimumLongitude",
- "MaximumLongitude", "OffsetLongitude", "CenterOfGravityLongitudeSE",
- "CenterOfGravityDepth", "MinimumDepth", "MaximumDepth",
- "OffsetDepth", "CenterOfGravityDepthSE"]
- _LayerSpeciesYearImageName = ["DatasetCode", "Region", "Season", "SummaryProduct",
- "FilterRegion", "FilterSubRegion", "Species",
- "CommonName", "SpeciesCommonName",
- "CommonNameSpecies", "TaxonomicGroup",
- "ManagementBody", "ManagementPlan",
- "DistributionProjectName", "CoreSpecies",
- "Year", "StdTime", "Variable",
- "Value", "Dimensions", "ImageName"]
- _Lat_Long = ["Easting", "Northing", "Longitude", "Latitude"]
- _Latitude = []
- _Longitude = []
- _Mosaic = ["Raster", "Name", "MinPS", "MaxPS", "LowPS", "HighPS",
- "Category", "Tag", "GroupName", "ProductName", "CenterX",
- "CenterY", "ZOrder", "TypeID", "ItemTS", "UriHash", "Uri",
- "DatasetCode", "Region", "Season", "Species", "CommonName",
- "SpeciesCommonName", "CoreSpecies", "Year", "StdTime",
- "Variable", "Value", "Dimensions"]
- _Raster_Mask = ["Value", "Count", "ID"]
- _Region = ["DatasetCode", "Region", "Season", "DistributionProjectCode"]
- _Sample_Locations = ["DatasetCode", "Region", "Season", "SummaryProduct",
- "SampleID", "Year", "StdTime", "Species", "WTCPUE",
- "MapValue", "TransformUnit", "CommonName",
- "SpeciesCommonName", "CommonNameSpecies", "CoreSpecies",
- "Stratum", "StratumArea", "Latitude", "Longitude",
- "Depth"]
- _Species_Filter = ["Species", "CommonName", "TaxonomicGroup", "FilterRegion",
- "FilterSubRegion", "ManagementBody", "ManagementPlan", "DistributionProjectName"]
- _SpeciesPersistenceIndicatorTrend = ["Region", "SurveyName", "Species", "CommonName", "TrendCategory", "Notes", "Haul_Inc_Dec", "Bio_Inc_Dec"]
- _SpeciesPersistenceIndicatorPercentileBin = ["Region", "SurveyName", "Year", "Species", "CommonName", "PercentileBin", "WTCPUE", "HaulProportion", "HaulBin"]
-
-
- #datasets_table = arcpy.ListTables("Datasets")[0]
- #datasets_table_fields = [f.name for f in arcpy.ListFields(datasets_table) if f.type not in ["Geometry", "OID"] and f.name not in ["Shape_Area", "Shape_Length"]]
-
- data_dictionary = dict()
- #arcpy.AddMessage(datasets_table_fields)
- #['DatasetCode', 'CSVFile', 'TransformUnit', 'TableName',
- # 'GeographicArea', 'CellSize', 'PointFeatureType', 'FeatureClassName',
- # 'Region', 'Season', 'DateCode', 'Status', 'DistributionProjectCode',
- # 'DistributionProjectName', 'SummaryProduct', 'FilterRegion',
- # 'FilterSubRegion', 'FeatureServiceName', 'FeatureServiceTitle',
- # 'MosaicName', 'MosaicTitle', 'ImageServiceName', 'ImageServiceTitle']
-
- table_names = ["AI_IDW", "EBS_IDW", "ENBS_IDW", "GMEX_IDW", "GOA_IDW",
- "HI_IDW", "NBS_IDW", "NEUS_FAL_IDW", "NEUS_SPR_IDW",
- "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW",
- "WC_ANN_IDW", "WC_TRI_IDW", "DisMAP_Regions", "Datasets",
- "LayerSpeciesYearImageName", "Indicators", "Species_Filter",
- "DisMAP_Survey_Info", "SpeciesPersistenceIndicatorTrend",
- "SpeciesPersistenceIndicatorPercentileBin",]
-
- for table_name in table_names:
- arcpy.AddMessage(table_name)
- if table_name == "DisMAP_Regions":
- data_dictionary[table_name] = _Region
- elif table_name == "Datasets":
- data_dictionary[table_name] = _Datasets
- elif table_name == "LayerSpeciesYearImageName":
- data_dictionary[table_name] = _LayerSpeciesYearImageName
- elif table_name == "Indicators":
- data_dictionary[table_name] = _Indicators
- elif table_name == "Species_Filter":
- data_dictionary[table_name] = _Species_Filter
- elif table_name == "DisMAP_Survey_Info":
- data_dictionary[table_name] = _DisMAP_Survey_Info
- elif table_name == "SpeciesPersistenceIndicatorPercentileBin":
- data_dictionary[table_name] = _SpeciesPersistenceIndicatorPercentileBin
- elif table_name == "SpeciesPersistenceIndicatorTrend":
- data_dictionary[table_name] = _SpeciesPersistenceIndicatorTrend
- elif table_name.endswith("_IDW"): # or table_name.endswith("_GLMME"):
- if table_name.endswith("_IDW"):
- data_dictionary[table_name] = _IDW
- data_dictionary[f"{table_name}_Sample_Locations"] = _Sample_Locations
- data_dictionary[f"{table_name}_Indicators"] = _Indicators
- #elif table_name.endswith("_GLMME"):
- # data_dictionary[table_name] = _GLMME
- # data_dictionary[f"{table_name}_GRID_Points"] = _GRID_Points
- else:
- pass
- data_dictionary[f"{table_name}_Bathymetry"] = _Bathymetry
- data_dictionary[f"{table_name}_Boundary"] = _Boundary
- data_dictionary[f"{table_name}_Extent_Points"] = _Extent_Points
- data_dictionary[f"{table_name}_Fishnet"] = _Fishnet
- data_dictionary[f"{table_name}_LayerSpeciesYearImageName"] = _LayerSpeciesYearImageName
- data_dictionary[f"{table_name}_Lat_Long"] = _Lat_Long
- data_dictionary[f"{table_name}_Latitude"] = _Latitude
- data_dictionary[f"{table_name}_Longitude"] = _Longitude
- data_dictionary[f"{table_name}_Mosaic"] = _Mosaic
- data_dictionary[f"{table_name}_Raster_Mask"] = _Raster_Mask
- data_dictionary[f"{table_name}_Region"] = _Region
- else:
- pass
- del table_name
-
-## fields = ['DatasetCode', 'DistributionProjectCode']
-
-## with arcpy.da.SearchCursor(datasets_table, fields) as cursor:
-## for row in cursor:
-## DatasetCode = f'{row[0]}'
-## DistributionProjectCode = f'{"_"+row[1] if row[1] is not None and row[1] not in row[0] else ""}'
-## table_name = f'{DatasetCode}{DistributionProjectCode}'
-## arcpy.AddMessage(table_name)
-## if table_name == "DisMAP_Regions":
-## data_dictionary[table_name] = _Region
-## elif table_name == "Datasets":
-## data_dictionary[table_name] = _Datasets
-## elif table_name == "LayerSpeciesYearImageName":
-## data_dictionary[table_name] = _LayerSpeciesYearImageName
-## elif table_name == "Indicators":
-## data_dictionary[table_name] = _Indicators
-## elif table_name == "Species_Filter":
-## data_dictionary[table_name] = _Species_Filter
-## elif table_name == "DisMAP_Survey_Info":
-## data_dictionary[table_name] = _DisMAP_Survey_Info
-## elif table_name == "SpeciesPersistenceIndicatorPercentileBin":
-## data_dictionary[table_name] = _SpeciesPersistenceIndicatorPercentileBin
-## elif table_name == "SpeciesPersistenceIndicatorTrend":
-## data_dictionary[table_name] = _SpeciesPersistenceIndicatorTrend
-## elif table_name.endswith("_IDW") or table_name.endswith("_GLMME"):
-## if table_name.endswith("_IDW"):
-## data_dictionary[table_name] = _IDW
-## data_dictionary[f"{table_name}_Sample_Locations"] = _Sample_Locations
-## data_dictionary[f"{table_name}_Indicators"] = _Indicators
-## elif table_name.endswith("_GLMME"):
-## data_dictionary[table_name] = _GLMME
-## data_dictionary[f"{table_name}_GRID_Points"] = _GRID_Points
-## else:
-## pass
-## data_dictionary[f"{table_name}_Bathymetry"] = _Bathymetry
-## data_dictionary[f"{table_name}_Boundary"] = _Boundary
-## data_dictionary[f"{table_name}_Extent_Points"] = _Extent_Points
-## data_dictionary[f"{table_name}_Fishnet"] = _Fishnet
-## data_dictionary[f"{table_name}_LayerSpeciesYearImageName"] = _LayerSpeciesYearImageName
-## data_dictionary[f"{table_name}_Lat_Long"] = _Lat_Long
-## data_dictionary[f"{table_name}_Latitude"] = _Latitude
-## data_dictionary[f"{table_name}_Longitude"] = _Longitude
-## data_dictionary[f"{table_name}_Mosaic"] = _Mosaic
-## data_dictionary[f"{table_name}_Raster_Mask"] = _Raster_Mask
-## data_dictionary[f"{table_name}_Region"] = _Region
-## else:
-## pass
-## del DistributionProjectCode
-## del DatasetCode
-## del table_name
-## del row
-## del cursor
-
- for key in sorted(data_dictionary):
- arcpy.AddMessage(f"Table: {key}")
- _fields = data_dictionary[key]
- for _field in _fields:
- arcpy.AddMessage(f"\t{_field}")
- del _field
- del _fields
- del key
-
- table_definitions = {k:v for k,v in sorted(data_dictionary.items())}
- import json
- # Write to File
- json_path = rf"{project_folder}\CSV_Data\table_definitions.json"
- #print(f"project folder: {project_folder}")
- with open(json_path, 'w') as json_file:
- json.dump(table_definitions, json_file, indent=4)
- del json_file
- del json_path
- del json
-
- for table in table_definitions:
- #arcpy.AddMessage(f"{table}")
- fields = table_definitions[table]
- #arcpy.AddMessage(f"\t{type(fields)}")
- del table
- for field in fields:
- #arcpy.AddMessage(f"\t{field}")
- if field in field_definitions.keys():
- pass
- #arcpy.AddMessage(f"\t{field_definitions[field]}")
- else:
- pass
- #arcpy.AddMessage(f"\t\t###--->>> {field} not in _field_definitions")
- del field
- del fields
- del table_definitions
-
- #for key in sorted(field_definitions):
- # #arcpy.AddMessage(f"Table: {key}")
- # _fields = field_definitions[key]
- # if "attrdef" not in _fields:
- # field_definitions[key]["field_attrdef"] = field_definitions[key]["field_aliasName"]
- # if "attrdefs" not in _fields:
- # field_definitions[key]["field_attrdefs"] = "DisMAP Project GDB Data Dictionary"
- # if "attrdomv" not in _fields:
- # field_definitions[key]["field_attrdomv"] = {"udom": f"{field_definitions[key]['field_aliasName']}"}
- # else:
- # pass
- # del _fields
- # del key
-
- #for key in sorted(field_definitions):
- # #arcpy.AddMessage(f"Table: {key}")
- # _fields = field_definitions[key]
- # for _field in _fields:
- # #arcpy.AddMessage(f"\t{_field}")
- # del _field
- # del _fields
- # del key
-
- import json
- # Write to File
- json_path = rf"{project_folder}\CSV_Data\field_definitions.json"
- with open(json_path, 'w') as json_file:
- json.dump(field_definitions, json_file, indent=4)
- del json_file
- del json_path
- del json
-
- del field_definitions
- del data_dictionary, table_names
- del _Bathymetry, _Boundary, _Datasets, _DisMAP_Survey_Info,
- del _Extent_Points, _Fishnet, _IDW, _Indicators,
- #del _GLMME, _GRID_Points,
- del _LayerSpeciesYearImageName, _Lat_Long, _Latitude, _Longitude,
- del _Mosaic, _Raster_Mask, _Region, _Sample_Locations, _Species_Filter
- del _SpeciesPersistenceIndicatorPercentileBin
- del _SpeciesPersistenceIndicatorTrend
-
- # Compact GDB
- #arcpy.AddMessage(f"\nCompacting: {os.path.basename(project_gdb)}" )
- arcpy.management.Compact(project_gdb)
-
- arcpy.AddMessage(f"\n{'--End' * 10}--")
-
- # Declared Variables
- del project_folder
- # Imports
- # Function parameters
- del project_gdb
-
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(f"Caught an arcpy.ExecuteWarning error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(f"Caught an arcpy.ExecuteError error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
-
- except SystemExit as se:
- arcpy.AddError(f"Caught an SystemExit error: {se} in the '{inspect.stack()[0][3]}' function.")
- except Exception as e:
- arcpy.AddError(f"Caught an Exception error: {e} in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- except: # noqa: E722
- arcpy.AddError(f"Caught an except error in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- pass
-
-if __name__ == "__main__":
- try:
-
- project_gdb = arcpy.GetParameterAsText(0)
- if not project_gdb:
- project_gdb = rf"{os.path.expanduser('~')}\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\February 1 2026\February 1 2026.gdb"
- else:
- pass
-
- script_tool(project_gdb)
- arcpy.SetParameterAsText(1, "Result")
-
- del project_gdb
-
- except SystemExit:
- pass
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- else:
- pass
- finally:
- pass
-
-
-
-
-
-
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_indicators_table_director.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_indicators_table_director.py
deleted file mode 100644
index ad42e40..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_indicators_table_director.py
+++ /dev/null
@@ -1,452 +0,0 @@
-# -*- coding: utf-8 -*-
-#-------------------------------------------------------------------------------
-# Name: create_indicators_table_director
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 09/03/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-#-------------------------------------------------------------------------------
-import os
-import sys
-import traceback
-
-import arcpy # third-parties second
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- #filename = sys.path[0] + os.sep + f"{os.path.basename(__file__)}"
- filename = os.path.basename(__file__)
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def director(project_gdb="", Sequential=True, table_names=[]):
- try:
- # Imports
- import dismap_tools
- from create_indicators_table_worker import preprocessing, worker
-
- # Test if passed workspace exists, if not sys.exit()
- if not arcpy.Exists(rf"{project_gdb}"):
- arcpy.AddError(f"{os.path.basename(project_gdb)} is missing!!")
- arcpy.AddError(arcpy.GetMessages(2))
- sys.exit()
- else:
- pass
-
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(1) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- #project_folder = os.path.dirname(project_gdb)
- scratch_workspace = rf"{os.path.dirname(project_gdb)}\Scratch\scratch.gdb"
- scratch_folder = rf"{os.path.dirname(project_gdb)}\Scratch"
- csv_data_folder = rf"{os.path.dirname(project_gdb)}\CSV_Data"
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
-
- preprocessing(project_gdb=project_gdb, table_names=table_names, clear_folder=True)
-
- # Sequential Processing
- if Sequential:
- arcpy.AddMessage("Sequential Processing")
- for i in range(0, len(table_names)):
- arcpy.AddMessage(f"Processing: {table_names[i]}")
- table_name = table_names[i]
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- try:
- worker(region_gdb=region_gdb)
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- del region_gdb, table_name
- del i
- else:
- pass
-
- # Non-Sequential Processing
- if not Sequential:
- arcpy.AddMessage("Non-Sequential Processing")
- # Imports
- import multiprocessing
- from time import time, localtime, strftime, sleep, gmtime
- arcpy.AddMessage("Start multiprocessing using the ArcGIS Pro pythonw.exe.")
- #Set multiprocessing exe in case we're running as an embedded process, i.e ArcGIS
- #get_install_path() uses a registry query to figure out 64bit python exe if available
- multiprocessing.set_executable(os.path.join(sys.exec_prefix, 'pythonw.exe'))
- # Get CPU count and then take 2 away for other process
- _processes = multiprocessing.cpu_count() - 2
- _processes = _processes if len(table_names) >= _processes else len(table_names)
- arcpy.AddMessage(f"Creating the multiprocessing Pool with {_processes} processes")
- #Create a pool of workers, keep one cpu free for surfing the net.
- #Let each worker process only handle 1 task before being restarted (in case of nasty memory leaks)
- with multiprocessing.Pool(processes=_processes, maxtasksperchild=1) as pool:
- arcpy.AddMessage("\tPrepare arguments for processing")
- # Use apply_async so we can handle exceptions gracefully
- jobs={}
- for i in range(0, len(table_names)):
- try:
- arcpy.AddMessage(f"Processing: {table_names[i]}")
- table_name = table_names[i]
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- jobs[table_name] = pool.apply_async(worker, [region_gdb])
- del table_name, region_gdb
- except: # noqa: E722
- pool.terminate()
- traceback.print_exc()
- sys.exit()
- del i
- all_finished = False
- # Set a start time so that we can see how log things take
- start_time = time()
- result_completed = {}
- while True:
- all_finished = True
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- arcpy.AddMessage(f"\nStart Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage("Have the workers finished?")
- finish_time = strftime('%a %b %d %I:%M %p', localtime())
- time_elapsed = u"Elapsed Time {0} (H:M:S)".format(strftime("%H:%M:%S", gmtime(elapse_time)))
- arcpy.AddMessage(f"It's {finish_time}\n{time_elapsed}")
- finish_time = f"{finish_time}.\n\t{time_elapsed}"
- del time_elapsed
- for table_name, result in jobs.items():
- if result.ready():
- if table_name not in result_completed:
- result_completed[table_name] = finish_time
- try:
- # wait for and get the result from the task
- result.get()
- except: # noqa: E722
- pool.terminate()
- traceback.print_exc()
- sys.exit()
- else:
- pass
- arcpy.AddMessage(f"Process {table_name}\n\tFinished on {result_completed[table_name]}")
- else:
- all_finished = False
- arcpy.AddMessage(f"Process {table_name} is running. . .")
- del table_name, result
- del elapse_time, end_time, finish_time
- if all_finished:
- break
- sleep(_processes * 7.5)
- del result_completed
- del start_time
- del all_finished
- arcpy.AddMessage("\tClose the process pool")
- # close the process pool
- pool.close()
- # wait for all tasks to complete and processes to close
- arcpy.AddMessage("\tWait for all tasks to complete and processes to close")
- pool.join()
- # Just in case
- pool.terminate()
- del pool
- del jobs
- del _processes
- del time, multiprocessing, localtime, strftime, sleep, gmtime
- arcpy.AddMessage("\tDone with multiprocessing Pool")
-
- # Post-Processing
- arcpy.AddMessage("Post-Processing Begins")
-
- datasets = list()
- walk = arcpy.da.Walk(scratch_folder, datatype=["Table", "FeatureClass"])
- for dirpath, dirnames, filenames in walk:
- for filename in filenames:
- datasets.append(os.path.join(dirpath, filename))
- del filename
- del dirpath, dirnames, filenames
- del walk
- for dataset in datasets:
- datasets_short_path = f".. {'/'.join(dataset.split(os.sep)[-4:])}"
- dataset_name = os.path.basename(dataset)
- region_gdb = os.path.dirname(dataset)
- arcpy.AddMessage(f"\tDataset: '{dataset_name}'")
- arcpy.AddMessage(f"\t\tPath: '{datasets_short_path}'")
- arcpy.AddMessage(f"\t\tRegion GDB: '{os.path.basename(region_gdb)}'")
- arcpy.management.Copy(dataset, rf"{project_gdb}\{dataset_name}")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- #arcpy.management.Delete(dataset)
- #arcpy.AddMessage(f"\t\tAlter Fields for: '{dataset}'")
- #dismap_tools.alter_fields(csv_data_folder, rf"{project_gdb}\{dataset}")
- del region_gdb, dataset_name, datasets_short_path
- del dataset
- del datasets
-
- arcpy.AddMessage(f"Compacting the {os.path.basename(project_gdb)} GDB")
- arcpy.management.Compact(project_gdb)
- arcpy.AddMessage("\t"+arcpy.GetMessages(0).replace("\n", "\n\t"))
- # Declared Variables
- del scratch_folder, csv_data_folder, scratch_workspace
- # Imports
- del preprocessing, worker, dismap_tools
- # Function Parameters
- del project_gdb, Sequential, table_names
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def process_indicator_tables(project_gdb=""):
- try:
- # Import
- from arcpy import metadata as md
- import dismap_tools
-
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(1) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = os.path.join(project_folder, "Scratch")
- scratch_workspace = os.path.join(project_folder, "Scratch\\scratch.gdb")
- csv_data_folder = rf"{project_folder}\CSV_Data"
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- arcpy.management.CreateTable(project_gdb, "Indicators", "", "", "")
- arcpy.AddMessage("\tCreate Table: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- indicators = rf"{project_gdb}\Indicators"
-
- dismap_tools.add_fields(csv_data_folder, indicators)
- #dismap_tools.alter_fields(csv_data_folder, indicators)
- dismap_tools.import_metadata(csv_data_folder, indicators)
-
- #in_tables = [it for it in arcpy.ListTables("*_Indicators") if it == "AI_IDW_Indicators"]
- #in_tables = [it for it in arcpy.ListTables("*_Indicators") if not any(lo in it for lo in ["GFDL", "GLMME"])]
- in_tables = [it for it in arcpy.ListTables("*_Indicators")]
-
- if not in_tables:
- arcpy.AddWarning(f"Indicator Tables are not present in the {os.path.basename(project_gdb)} GDB")
- else:
- for in_table in sorted(in_tables):
- arcpy.AddMessage(f"Table: {in_table}")
- in_table_path = rf"{project_gdb}\{in_table}"
- del in_table
-
- arcpy.AddMessage("\tUpdating field values to replace None with empty string")
-
- fields = [f.name for f in arcpy.ListFields(in_table_path) if f.type == "String"]
- #for field in fields:
- # arcpy.AddMessage(f"\t{field.name}\t{field.type}")
- # del field
- # Create update cursor for feature class
- with arcpy.da.UpdateCursor(in_table_path, fields) as cursor:
- for row in cursor:
- #arcpy.AddMessage(row)
- for field_value in row:
- #arcpy.AddMessage(field_value)
- if field_value is None:
- row[row.index(field_value)] = ""
- cursor.updateRow(row)
- del field_value
- del row
- del cursor
- del fields
-
- fields = [f.name for f in arcpy.ListFields(in_table_path) if f.name == "DateCode"]
- #for field in fields:
- # arcpy.AddMessage(f"\t{field.name}\t{field.type}")
- # del field
- # Create update cursor for feature class
- with arcpy.da.UpdateCursor(in_table_path, fields) as cursor:
- for row in cursor:
- #arcpy.AddMessage(row)
- #arcpy.AddMessage(dismap_tools.date_code(row[0]))
- datecode = dismap_tools.date_code(row[0])
- #arcpy.AddMessage(datecode)
- row[0] = datecode
- cursor.updateRow(row)
- del datecode
- del row
- del cursor
- del fields
-
- arcpy.management.Append(inputs=in_table_path, target=indicators, schema_type="TEST", field_mapping="", subtype="")
- arcpy.AddMessage("\tAppend: {0} {1}\n".format(f"{os.path.basename(in_table_path)}", arcpy.GetMessages(0).replace("\n", '\n\t')))
-
- del in_table_path
- # end for loop
-
- dataset_md = md.Metadata(indicators)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- del dataset_md
-
- arcpy.AddMessage(f"Compacting the {os.path.basename(project_gdb)} GDB")
- arcpy.management.Compact(project_gdb)
- arcpy.AddMessage("\t"+arcpy.GetMessages(0).replace("\n", "\n\t"))
- # Declared Variables assigned in function
- del in_tables, indicators
- del scratch_folder, scratch_workspace, csv_data_folder, project_folder
- # Imports
- del dismap_tools, md
- # Function Parameters
- del project_gdb
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def script_tool(project_gdb=""):
- try:
- # Imports
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
- # Test if passed workspace exists, if not sys.exit()
- if not arcpy.Exists(project_gdb):
- sys.exit()(f"{os.path.basename(project_gdb)} is missing!!")
- else:
- pass
-
- try:
- pass
- # "AI_IDW", "EBS_IDW", "ENBS_IDW", "GMEX_IDW", "GOA_IDW", "HI_IDW", "NBS_IDW", "NEUS_FAL_IDW", "NEUS_SPR_IDW",
- # "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW", "WC_ANN_IDW", "WC_TRI_IDW",
-
- Test = False
- if Test:
- director(project_gdb=project_gdb, Sequential=True, table_names=["AI_IDW", "HI_IDW",])
- elif not Test:
- pass
- #director(project_gdb=project_gdb, Sequential=False, table_names=["AI_IDW", "EBS_IDW", "ENBS_IDW", "GOA_IDW", "NBS_IDW",])
- #director(project_gdb=project_gdb, Sequential=False, table_names=["SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW",])
- #director(project_gdb=project_gdb, Sequential=False, table_names=["GMEX_IDW", "WC_ANN_IDW", "WC_TRI_IDW", "NEUS_FAL_IDW", "NEUS_SPR_IDW",])
- #director(project_gdb=project_gdb, Sequential=False, table_names=["HI_IDW", "NEUS_FAL_IDW", "NEUS_SPR_IDW",])
- else:
- pass
- del Test
-
- # Combine Indicator Tables
- CombineIndicatorTables = True
- if CombineIndicatorTables:
- process_indicator_tables(project_gdb=project_gdb)
- else:
- pass
- del CombineIndicatorTables
-
- except: # noqa: E722
- traceback.print_exc()
- sys.exit()
-
- # Declared Variables
- # Imports
- # Function Parameters
- del project_gdb
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- hours, rem = divmod(end_time-start_time, 3600)
- minutes, seconds = divmod(rem, 60)
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"End Time: {strftime('%a %b %d %I:%M %p', localtime(end_time))}")
- arcpy.AddMessage(f"Elapsed Time {int(hours):0>2}:{int(minutes):0>2}:{seconds:05.2f} (H:M:S)")
- arcpy.AddMessage(f"{'-' * 80}")
- del hours, rem, minutes, seconds
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-if __name__ == '__main__':
- try:
- project_gdb = arcpy.GetParameterAsText(0)
- if not project_gdb:
- project_gdb = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026\\February 1 2026.gdb")
- else:
- pass
-
- script_tool(project_gdb)
-
- arcpy.SetParameterAsText(1, "Result")
-
- del project_gdb
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_indicators_table_worker.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_indicators_table_worker.py
deleted file mode 100644
index 078184d..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_indicators_table_worker.py
+++ /dev/null
@@ -1,1071 +0,0 @@
-# -*- coding: utf-8 -*-
-#-------------------------------------------------------------------------------
-# Name: dev_create_indicators_table_worker
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 09/03/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-#-------------------------------------------------------------------------------
-import os
-import sys
-import traceback
-import inspect
-
-import arcpy # third-parties second
-
-def printRowContent(region_indicators):
- try:
- arcpy.AddMessage("Print records in the Region Indicators table")
-
- fields = [f.name for f in arcpy.ListFields(region_indicators) if f.type not in ['Geometry', 'OID']]
- with arcpy.da.SearchCursor(region_indicators, fields) as cursor:
- #with arcpy.da.SearchCursor(region_indicators, fields, "CoreSpecies = 'No'") as cursor:
- for row in cursor:
- #arcpy.AddMessage(', '.join((row)))
-
- DatasetCode = row[0]
- Region = row[1]
- Season = row[2]
- DateCode = row[3]
- Species = row[4]
- CommonName = row[5]
- CoreSpecies = row[6]
- Year = row[7]
- #DistributionProjectName = row[8]
- DistributionProjectCode = row[9]
- SummaryProduct = row[10]
- CenterOfGravityLatitude = '' if row[11] is None else f'{row[11]:.1f}'
- MinimumLatitude = '' if row[12] is None else f'{row[12]:.1f}'
- MaximumLatitude = '' if row[13] is None else f'{row[13]:.1f}'
- OffsetLatitude = '' if row[14] is None else f'{row[14]:.1f}'
- CenterOfGravityLatitudeSE = '' if row[15] is None else f'{row[15]:.1f}'
- CenterOfGravityLongitude = '' if row[16] is None else f'{row[16]:.1f}'
- MinimumLongitude = '' if row[17] is None else f'{row[17]:.1f}'
- MaximumLongitude = '' if row[18] is None else f'{row[18]:.1f}'
- OffsetLongitude = '' if row[19] is None else f'{row[19]:.1f}'
- CenterOfGravityLongitudeSE = '' if row[20] is None else f'{row[20]:.1f}'
- CenterOfGravityDepth = '' if row[21] is None else f'{row[21]:.1f}'
- MinimumDepth = '' if row[22] is None else f'{row[22]:.1f}'
- MaximumDepth = '' if row[23] is None else f'{row[23]:.1f}'
- OffsetDepth = '' if row[24] is None else f'{row[24]:.1f}'
- CenterOfGravityDepthSE = '' if row[25] is None else f'{row[25]:.1f}'
-
- #arcpy.AddMessage(DatasetCode, Region, Season, DateCode, Species, CommonName, CoreSpecies, Year, DistributionProjectName, DistributionProjectCode, SummaryProduct, CenterOfGravityLatitude, MinimumLatitude, MaximumLatitude, OffsetLatitude, CenterOfGravityLatitudeSE, CenterOfGravityLongitude, MinimumLongitude, MaximumLongitude, OffsetLongitude, CenterOfGravityLongitudeSE, CenterOfGravityDepth, MinimumDepth, MaximumDepth, OffsetDepth, CenterOfGravityDepthSE)
- arcpy.AddMessage(f"{DatasetCode}, {Region}, {Season}, {DateCode}, {Species}, {CommonName}, {CoreSpecies}, {Year}, {DistributionProjectCode}, {SummaryProduct}, {CenterOfGravityLatitude}, {MinimumLatitude}, {MaximumLatitude}, {OffsetLatitude}, {CenterOfGravityLatitudeSE}, {CenterOfGravityLongitude}, {MinimumLongitude}, {MaximumLongitude}, {OffsetLongitude}, {CenterOfGravityLongitudeSE}, {CenterOfGravityDepth}, {MinimumDepth}, {MaximumDepth}, {OffsetDepth}, {CenterOfGravityDepthSE}")
-
- del DatasetCode, Region, Season, DateCode, Species, CommonName
- #del DistributionProjectName
- del CoreSpecies, Year
- del DistributionProjectCode, SummaryProduct, CenterOfGravityLatitude
- del MinimumLatitude, MaximumLatitude, OffsetLatitude
- del CenterOfGravityLatitudeSE, CenterOfGravityLongitude
- del MinimumLongitude, MaximumLongitude, OffsetLongitude
- del CenterOfGravityLongitudeSE, CenterOfGravityDepth, MinimumDepth
- del MaximumDepth, OffsetDepth, CenterOfGravityDepthSE
-
- del row
- del cursor
- del fields
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(f"Caught an arcpy.ExecuteWarning error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddWarning(arcpy.GetMessages(1))
- traceback.print_exc()
- sys.exit()
- except arcpy.ExecuteError:
- arcpy.AddError(f"Caught an arcpy.ExecuteError error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except SystemExit as se:
- arcpy.AddError(f"Caught an SystemExit error: {se} in the '{inspect.stack()[0][3]}' function.")
- sys.exit()
- except Exception as e:
- arcpy.AddError(f"Caught an Exception error: {e} in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(f"Caught an except error in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- pass
-
-def worker(region_gdb=""):
- try:
- # Test if passed workspace exists, if not sys.exit()
- if not arcpy.Exists(rf"{region_gdb}"):
- arcpy.AddError(f"{os.path.basename(region_gdb)} is missing!!")
- arcpy.AddError(f"Function: '{inspect.stack()[0][3]}', Line Number: {inspect.stack()[0][2]}")
- sys.exit()
- else:
- pass
-
- import numpy as np
- import math
-
- import dismap_tools
-
- np.seterr(divide='ignore', invalid='ignore')
-
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- table_name = os.path.basename(region_gdb).replace(".gdb","")
- scratch_folder = os.path.dirname(region_gdb)
- project_folder = os.path.dirname(scratch_folder)
- csv_data_folder = rf"{project_folder}\CSV_Data"
- image_folder = rf"{project_folder}\Images"
- scratch_workspace = rf"{scratch_folder}\{table_name}\scratch.gdb"
-
- arcpy.AddMessage(f"Table Name: {table_name}\nProject Folder: {os.path.basename(project_folder)}\nScratch Folder: {os.path.basename(scratch_folder)}\n")
-
- arcpy.env.workspace = region_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- #arcpy.env.compression = "LZ77"
- #arcpy.env.geographicTransformations = "WGS_1984_(ITRF08)_To_NAD_1983_2011"
- #arcpy.env.pyramid = "PYRAMIDS -1 BILINEAR LZ77 NO_SKIP"
- arcpy.env.resamplingMethod = "BILINEAR"
- arcpy.env.rasterStatistics = "STATISTICS 1 1"
- #arcpy.env.buildStatsAndRATForTempRaster = True
-
- arcpy.management.CreateTable(region_gdb, f"{table_name}_Indicators", "", "", "")
- arcpy.AddMessage("\tCreate Table: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- dismap_tools.add_fields(csv_data_folder, os.path.join(region_gdb, f"{table_name}_Indicators"))
- #dismap_tools.import_metadata(rf"{region_gdb}\{table_name}_Indicators")
-
- del csv_data_folder
-
- arcpy.AddMessage(f"Generating {table_name} Indicators Table")
-
- # "DatasetCode", "CSVFile", "TransformUnit", "TableName", "GeographicArea",
- # "CellSize", "PointFeatureType", "FeatureClassName", "Region", "Season",
- # "DateCode", "Status", "DistributionProjectCode", "DistributionProjectName",
- # "SummaryProduct", "FilterRegion", "FilterSubRegion", "FeatureServiceName",
- # "FeatureServiceTitle", "MosaicName", "MosaicTitle", "ImageServiceName",
- # "ImageServiceTitle"
-
- arcpy.AddMessage(f"\tGet list of vaules for the {table_name} Indicators table from the Datasets table")
-
- fields = ["DatasetCode", "TableName", "CellSize", "Region", "Season",
- "DateCode", "DistributionProjectCode", "DistributionProjectName",
- "SummaryProduct",]
- region_list = [row for row in arcpy.da.SearchCursor(rf"{region_gdb}\Datasets", fields, where_clause = f"TableName = '{table_name}'")][0]
- del fields
-
- # Assigning variables from items in the chosen table list
- # ['AI_IDW', 'AI_IDW_Region', 'AI', 'Aleutian Islands', None, 'IDW']
- datasetcode = region_list[0]
- table_name = region_list[1]
- cellsize = region_list[2]
- region = region_list[3]
- season = region_list[4]
- datecode = region_list[5]
- distributionprojectcode = region_list[6]
- distributionprojectname = region_list[7]
- summaryproduct = region_list[8]
- del region_list
-
- # Convert the Month Day Year date code to YYYYMMDD
- #datecode = dismap.date_code(datecode)
- #arcpy.AddMessage(datecode)
- #arcpy.AddMessage(dismap.date_code(datecode))
-
- arcpy.env.cellSize = cellsize
- del cellsize
-
- # Region Raster Mask
- datasetcode_raster_mask = os.path.join(region_gdb, f"{table_name}_Raster_Mask")
-
- # we need to set the mask and extent of the environment, or the raster and items may not come out correctly.
- arcpy.env.extent = arcpy.Describe(datasetcode_raster_mask).extent
- arcpy.env.mask = datasetcode_raster_mask
- arcpy.env.snapRaster = datasetcode_raster_mask
- del datasetcode_raster_mask
-
- # Region Indicators
- region_indicators = rf"{region_gdb}\{table_name}_Indicators"
-
- # Region Bathymetry
- region_bathymetry = rf"{region_gdb}\{table_name}_Bathymetry"
-
- # Region Latitude
- region_latitude = rf"{region_gdb}\{table_name}_Latitude"
-
- # Region Longitude
- region_longitude = rf"{region_gdb}\{table_name}_Longitude"
-
- layerspeciesyearimagename = rf"{region_gdb}\{table_name}_LayerSpeciesYearImageName"
-
- input_rasters = {}
-
- arcpy.AddMessage("\tCreate a list of input biomass raster path locations")
-
- #fields = "DatasetCode;Region;Season;Species;CommonName;SpeciesCommonName;CoreSpecies;Year;StdTime;Variable;Value;Dimensions"
- #fields = fields.split(";")
- fields = ['ImageName', 'Variable', 'Species', 'CommonName', 'CoreSpecies', 'Year']
-
- #arcpy.AddMessage(fields)
- #fields = [f.name for f in arcpy.ListFields(datasetcode_tmp) if f.type not in ['Geometry', 'OID']]
- with arcpy.da.SearchCursor(layerspeciesyearimagename, fields, where_clause = f"DatasetCode = '{datasetcode}'") as cursor:
- for row in cursor:
- image_name, variable, species, commonname, corespecies, year = row[0], row[1], row[2], row[3], row[4], row[5]
- #if variable not in variables: variables.append(variable)
- #arcpy.AddMessage(variable, image_name)
- #variable = f"_{variable}" if "Species Richness" in variable else variable
- if "Species Richness" not in variable:
- #arcpy.AddMessage(variable, year)
- input_raster_path = rf"{image_folder}\{table_name}\{variable}\{image_name}.tif"
- #arcpy.AddMessage(input_raster_path)
- #input_rasters[variable, year] = [image_name, variable, species, commonname, corespecies, year, input_raster_path]
- #input_rasters[variable][year] = [image_name, variable, species, commonname, corespecies, year, input_raster_path]
- #input_rasters[variable] = {year : image_name}
- if variable not in input_rasters:
- input_rasters[variable] = {year : [image_name, variable, species, commonname, corespecies, year, input_raster_path]}
- else:
- value = input_rasters[variable]
- if year not in value:
- value[year] = [image_name, variable, species, commonname, corespecies, year, input_raster_path]
- input_rasters[variable] = value
- del value
-
- del input_raster_path
-
- del row, image_name, variable, species, commonname, corespecies, year
- del cursor
-
- #arcpy.AddMessage(variables)
- del fields
- #del variables
- del layerspeciesyearimagename
- del image_folder
-
- # Start with empty row_values list of list
- row_values = []
-
- arcpy.AddMessage("Interate over the species names")
-
- for variable in sorted(input_rasters):
-
- first_year = 9999
-
- raster_years = input_rasters[variable]
-
- for raster_year in sorted(raster_years):
-
- image_name, variable, species, commonname, corespecies, year, input_raster_path = raster_years[raster_year]
-
- PrintRecord = False
- if PrintRecord:
- arcpy.AddMessage(f"\t> Image Name: {image_name}")
- arcpy.AddMessage(f"\t\t> Variable: {variable}")
- arcpy.AddMessage(f"\t\t> Species: {species}")
- arcpy.AddMessage(f"\t\t> Common Name: {commonname}")
- arcpy.AddMessage(f"\t\t> Core Species: {corespecies}")
- arcpy.AddMessage(f"\t\t> Year: {year}")
- arcpy.AddMessage(f"\t\t> Output Raster: {os.path.basename(input_raster_path)}")
- del PrintRecord
-
- arcpy.AddMessage(f"Processing {image_name} Biomass Raster for year: {raster_year}")
-
- # Get maximumBiomass value to filter out "zero" rasters
- maximumBiomass = float(arcpy.management.GetRasterProperties(input_raster_path, "MAXIMUM").getOutput(0))
-
- arcpy.AddMessage(f"\t> Biomass Raster Maximum: {maximumBiomass}")
-
- # arcpy.AddMessage(variable, corespecies, first_year, year)
-
- # If maximumBiomass greater than zero, then process raster
- if maximumBiomass > 0.0:
- # Test is for first year
-
- first_year = year if year < first_year else first_year
- #arcpy.AddMessage(f"\t{first_year}, {year} {first_year == year}")
-
- arcpy.AddMessage("\t> Calculating biomassArray")
-
- biomassArray = arcpy.RasterToNumPyArray(input_raster_path, nodata_to_value=np.nan)
- biomassArray[biomassArray <= 0.0] = np.nan
-
- #sumWtCpue = sum of all wtcpue values (get this from input_raster_path stats??)
- sumBiomassArray = np.nansum(biomassArray)
-
- arcpy.AddMessage(f"\t> sumBiomassArray: {sumBiomassArray}")
-
- arcpy.AddMessage(f"\t> biomassArray non-nan count: {np.count_nonzero(~np.isnan(biomassArray))}")
-
- # ###--->>> Biomass End
-
- arcpy.AddMessage("\t> Calculating latitudeArray")
-
- # ###--->>> Latitude Start
- #CenterOfGravityLatitude = None
- #MinimumLatitude = None
- #MaximumLatitude = None
- #OffsetLatitude = None
- #CenterOfGravityLatitudeSE = None
-
- # Latitude
- latitudeArray = arcpy.RasterToNumPyArray(region_latitude, nodata_to_value=np.nan)
- #arcpy.AddMessage(latitudeArray.shape)
- latitudeArray[np.isnan(biomassArray)] = np.nan
- #arcpy.AddMessage(latitudeArray.shape)
-
- #arcpy.AddMessage(f"\t\t> latitudeArray non-nan count: {np.count_nonzero(~np.isnan(latitudeArray)):,d}")
-
- #arcpy.AddMessage(f"\t\t> Latitude Min: {np.nanmin(latitudeArray)}")
-
- #arcpy.AddMessage(f"\t\t> Latitude Max: {np.nanmax(latitudeArray)}")
-
- # make the biomass and latitude arrays one dimensional
-
- flatBiomassArray = biomassArray.flatten()
-
- flatLatitudeArray = latitudeArray.flatten()
-
- # latsInds is an array of indexes representing the sort
-
- latsInds = flatLatitudeArray.argsort()
-
- # sort biomass and latitude arrays by lat sorted index
-
- sortedBiomassArray = flatBiomassArray[latsInds]
- sortedLatitudeArray = flatLatitudeArray[latsInds]
-
- # calculate the cumulative sum of the sorted biomass values
-
- sortedBiomassArrayCumSum = np.nancumsum(sortedBiomassArray)
-
- # quantile is cumulative sum value divided by total biomass
-
- sortedBiomassArrayQuantile = sortedBiomassArrayCumSum / np.nansum(flatBiomassArray)
-
- # find the difference between 0.95 and each cumulative sum value ... asbolute value gives the closest distance
-
- diffArray = np.abs(sortedBiomassArrayQuantile - 0.95)
-
- # find the index of the smallest difference
-
- minIndex = diffArray.argmin()
-
- # get the lat at that index
-
- #maxLat = sortedLatitudeArray[minIndex]
- MaximumLatitude = sortedLatitudeArray[minIndex]
-
- # do the same for 0.05
-
- diffArray = np.abs(sortedBiomassArrayQuantile - 0.05)
-
- minIndex = diffArray.argmin()
-
- #minLat = sortedLatitudeArray[minIndex]
- MinimumLatitude = sortedLatitudeArray[minIndex]
-
- del sortedBiomassArrayCumSum, sortedBiomassArrayQuantile
- del diffArray, minIndex
- del sortedLatitudeArray, sortedBiomassArray, flatBiomassArray
- del latsInds, flatLatitudeArray
-
- weightedLatitudeArray = np.multiply(biomassArray, latitudeArray)
-
- sumWeightedLatitudeArray = np.nansum(weightedLatitudeArray)
-
- #arcpy.AddMessage("\t\t> Sum Weighted Latitude: {sumWeightedLatitudeArray}")
-
- CenterOfGravityLatitude = sumWeightedLatitudeArray / sumBiomassArray
-
- if year == first_year:
- first_year_offset_latitude = CenterOfGravityLatitude
-
- OffsetLatitude = CenterOfGravityLatitude - first_year_offset_latitude
-
- weightedLatitudeArrayVariance = np.nanvar(weightedLatitudeArray)
- weightedLatitudeArrayCount = np.count_nonzero(~np.isnan(weightedLatitudeArray))
-
- CenterOfGravityLatitudeSE = math.sqrt(weightedLatitudeArrayVariance) / math.sqrt(weightedLatitudeArrayCount)
-
- del weightedLatitudeArrayVariance, weightedLatitudeArrayCount
-
- #arcpy.AddMessage(f"\t\t> Center of Gravity Latitude: {round(CenterOfGravityLatitude,6)}"
- arcpy.AddMessage(f"\t\t> Center of Gravity Latitude: {CenterOfGravityLatitude}")
- arcpy.AddMessage(f"\t\t> Minimum Latitude (5th Percentile): {MinimumLatitude}")
- arcpy.AddMessage(f"\t\t> Maximum Latitude (95th Percentile): {MaximumLatitude}")
- arcpy.AddMessage(f"\t\t> Offset Latitude: {OffsetLatitude}")
- arcpy.AddMessage(f"\t\t> Center of Gravity Latitude Standard Error: {CenterOfGravityLatitudeSE}")
-
- del latitudeArray, weightedLatitudeArray, sumWeightedLatitudeArray
-
- # ###--->>> Latitude End
-
- arcpy.AddMessage("\t> Calculating longitudeArray")
-
- # ###--->>> Longitude Start
- #CenterOfGravityLongitude = None
- #MinimumLongitude = None
- #MaximumLongitude = None
- #OffsetLongitude = None
- #CenterOfGravityLongitudeSE = None
-
- # For issue of international date line
- # Added/Modified by JFK June 15, 2022
- longitudeArray = arcpy.RasterToNumPyArray(region_longitude, nodata_to_value=np.nan)
-
- longitudeArray = np.mod(longitudeArray, 360.0)
-
- longitudeArray[np.isnan(biomassArray)] = np.nan
-
- # make the biomass and latitude arrays one dimensional
-
- flatBiomassArray = biomassArray.flatten()
-
- flatLongitudeArray = longitudeArray.flatten()
-
- # longsInds is an array of indexes representing the sort
-
- longsInds = flatLongitudeArray.argsort()
-
- # sort biomass and latitude arrays by long sorted index
-
- sortedBiomassArray = flatBiomassArray[longsInds]
- sortedLongitudeArray = flatLongitudeArray[longsInds]
-
- # calculate the cumulative sum of the sorted biomass values
-
- sortedBiomassArrayCumSum = np.nancumsum(sortedBiomassArray)
-
- # quantile is cumulative sum value divided by total biomass
-
- sortedBiomassArrayQuantile = sortedBiomassArrayCumSum / np.nansum(flatBiomassArray)
-
- # find the difference between 0.95 and each cumulative sum value ... asbolute value gives the closest distance
-
- diffArray = np.abs(sortedBiomassArrayQuantile - 0.95)
-
- # find the index of the smallest difference
-
- minIndex = diffArray.argmin()
-
- # get the lat at that index
-
- MaximumLongitude = sortedLongitudeArray[minIndex]
-
- # do the same for 0.05
-
- diffArray = np.abs(sortedBiomassArrayQuantile - 0.05)
-
- minIndex = diffArray.argmin()
-
- MinimumLongitude = sortedLongitudeArray[minIndex]
-
- del sortedBiomassArrayCumSum, sortedBiomassArrayQuantile, diffArray, minIndex
- del sortedLongitudeArray, sortedBiomassArray, flatBiomassArray
- del longsInds, flatLongitudeArray
-
- weightedLongitudeArray = np.multiply(biomassArray, longitudeArray)
-
- sumWeightedLongitudeArray = np.nansum(weightedLongitudeArray)
-
- CenterOfGravityLongitude = sumWeightedLongitudeArray / sumBiomassArray
-
- if year == first_year:
- first_year_offset_longitude = CenterOfGravityLongitude
-
- OffsetLongitude = CenterOfGravityLongitude - first_year_offset_longitude
-
- weightedLongitudeArrayVariance = np.nanvar(weightedLongitudeArray)
- weightedLongitudeArrayCount = np.count_nonzero(~np.isnan(weightedLongitudeArray))
-
- CenterOfGravityLongitudeSE = math.sqrt(weightedLongitudeArrayVariance) / math.sqrt(weightedLongitudeArrayCount)
-
- del weightedLongitudeArrayVariance, weightedLongitudeArrayCount
-
- # Convert 360 back to 180
- # Added/Modified by JFK June 15, 2022
- CenterOfGravityLongitude = np.mod(CenterOfGravityLongitude - 180.0, 360.0) - 180.0
- MinimumLongitude = np.mod(MinimumLongitude - 180.0, 360.0) - 180.0
- MaximumLongitude = np.mod(MaximumLongitude - 180.0, 360.0) - 180.0
-
- #arcpy.AddMessage(f"\t\t> Sum Weighted Longitude: {0}".format(sumWeightedLongitudeArray))
-
- #arcpy.AddMessage(f"\t\t> Center of Gravity Longitude: {round(CenterOfGravityLongitude,6)}"
- arcpy.AddMessage(f"\t\t> Center of Gravity Longitude: {CenterOfGravityLongitude}")
-
- #arcpy.AddMessage(F"\t\t> Center of Gravity Longitude: {np.mod(CenterOfGravityLongitude - 180.0, 360.0) -180.0}")
-
- arcpy.AddMessage(f"\t\t> Minimum Longitude (5th Percentile): {MinimumLongitude}")
- arcpy.AddMessage(f"\t\t> Maximum Longitude (95th Percentile): {MaximumLongitude}")
- arcpy.AddMessage(f"\t\t> Offset Longitude: {OffsetLongitude}")
- arcpy.AddMessage(f"\t\t> Center of Gravity Longitude Standard Error: {CenterOfGravityLongitudeSE}")
-
- del longitudeArray, weightedLongitudeArray, sumWeightedLongitudeArray
-
- # ###--->>> Longitude End
-
- arcpy.AddMessage("\t> Calculating bathymetryArray")
-
- # ###--->>> Center of Gravity Depth (Bathymetry) Start
-
- #CenterOfGravityDepth = None
- #MinimumDepth = None
- #MaximumDepth = None
- #OffsetDepth = None
- #CenterOfGravityDepthSE = None
-
- # Bathymetry
- bathymetryArray = arcpy.RasterToNumPyArray(region_bathymetry, nodata_to_value=np.nan)
- # If biomass cells are Null, make bathymetry cells Null as well
- bathymetryArray[np.isnan(biomassArray)] = np.nan
- # For bathymetry values zero are larger, make zero
- bathymetryArray[bathymetryArray >= 0.0] = 0.0
-
- #arcpy.AddMessage("\t\t> bathymetryArray non-nan count: {0}".format(np.count_nonzero(~np.isnan(bathymetryArray)))
- #arcpy.AddMessage("\t\t> Bathymetry Min: {0}".format(np.nanmin(bathymetryArray))
- #arcpy.AddMessage("\t\t> Bathymetry Max: {0}".format(np.nanmax(bathymetryArray))
- # make the biomass and latitude arrays one dimensional
-
- flatBiomassArray = biomassArray.flatten()
-
- flatBathymetryArray = bathymetryArray.flatten()
-
- # bathyInds is an array of indexes representing the sort
-
- bathyInds = flatBathymetryArray.argsort()
-
- # sort biomass and latitude arrays by lat sorted index
-
- sortedBiomassArray = flatBiomassArray[bathyInds]
- sortedBathymetryArray = flatBathymetryArray[bathyInds]
-
- # calculate the cumulative sum of the sorted biomass values
-
- sortedBiomassArrayCumSum = np.nancumsum(sortedBiomassArray)
-
- # quantile is cumulative sum value divided by total biomass
-
- sortedBiomassArrayQuantile = sortedBiomassArrayCumSum/np.nansum(flatBiomassArray)
-
- # find the difference between 0.95 and each cumulative sum
- # value ... asbolute value gives the closest distance
-
- diffArray = np.abs(sortedBiomassArrayQuantile - 0.95)
-
- # find the index of the smallest difference
-
- minIndex = diffArray.argmin()
-
- # get the lat at that index
-
- #maxLat = sortedBathymetryArray[minIndex]
- MaximumDepth = sortedBathymetryArray[minIndex]
-
- # do the same for 0.05
-
- diffArray = np.abs(sortedBiomassArrayQuantile - 0.05)
-
- minIndex = diffArray.argmin()
-
- #minLat = sortedBathymetryArray[minIndex]
- MinimumDepth = sortedBathymetryArray[minIndex]
-
- del sortedBiomassArrayCumSum, sortedBiomassArrayQuantile, diffArray, minIndex
- del sortedBathymetryArray, sortedBiomassArray, flatBiomassArray
- del bathyInds, flatBathymetryArray
-
- weightedBathymetryArray = np.multiply(biomassArray, bathymetryArray)
-
- sumWeightedBathymetryArray = np.nansum(weightedBathymetryArray)
-
- arcpy.AddMessage(f"\t\t> Sum Weighted Bathymetry: {sumWeightedBathymetryArray}")
-
- CenterOfGravityDepth = sumWeightedBathymetryArray / sumBiomassArray
-
- if year == first_year:
- first_year_offset_depth = CenterOfGravityDepth
-
- OffsetDepth = CenterOfGravityDepth - first_year_offset_depth
-
- weightedBathymetryArrayVariance = np.nanvar(weightedBathymetryArray)
- weightedBathymetryArrayCount = np.count_nonzero(~np.isnan(weightedBathymetryArray))
-
- CenterOfGravityDepthSE = math.sqrt(weightedBathymetryArrayVariance) / math.sqrt(weightedBathymetryArrayCount)
-
- del weightedBathymetryArrayVariance, weightedBathymetryArrayCount
-
- arcpy.AddMessage("\t\t> Center of Gravity Depth: {0}".format(CenterOfGravityDepth))
-
- arcpy.AddMessage("\t\t> Minimum Depth (5th Percentile): {0}".format(MinimumDepth))
-
- arcpy.AddMessage("\t\t> Maximum Depth (95th Percentile): {0}".format(MaximumDepth))
-
- arcpy.AddMessage("\t\t> Offset Depth: {0}".format(OffsetDepth))
-
- arcpy.AddMessage("\t\t> Center of Gravity Depth Standard Error: {0}".format(CenterOfGravityDepthSE))
-
- del bathymetryArray, weightedBathymetryArray
- del sumWeightedBathymetryArray
-
- # ###--->>> Center of Gravity Depth (Bathymetry) End
-
- # Clean Up
- del biomassArray, sumBiomassArray
-
- elif maximumBiomass == 0.0:
- CenterOfGravityLatitude = None
- MinimumLatitude = None
- MaximumLatitude = None
- OffsetLatitude = None
- CenterOfGravityLatitudeSE = None
- CenterOfGravityLongitude = None
- MinimumLongitude = None
- MaximumLongitude = None
- OffsetLongitude = None
- CenterOfGravityLongitudeSE = None
- CenterOfGravityDepth = None
- MinimumDepth = None
- MaximumDepth = None
- OffsetDepth = None
- CenterOfGravityDepthSE = None
-
- else:
- arcpy.AddMessage('Something wrong with biomass raster')
-
-
- arcpy.AddMessage("\t> Assigning variables to row values")
-
- # Clean-up
- del maximumBiomass
-
- # Standard for all records
- DatasetCode = datasetcode
- Region = region
- Season = season
- DateCode = datecode
- Species = species
- CommonName = commonname
- CoreSpecies = corespecies
- Year = year
- DistributionProjectName = distributionprojectname
- DistributionProjectCode = distributionprojectcode
- SummaryProduct = summaryproduct
-
- row = [
- DatasetCode,
- Region,
- Season,
- DateCode,
- Species,
- CommonName,
- CoreSpecies,
- Year,
- DistributionProjectName,
- DistributionProjectCode,
- SummaryProduct,
- CenterOfGravityLatitude,
- MinimumLatitude,
- MaximumLatitude,
- OffsetLatitude,
- CenterOfGravityLatitudeSE,
- CenterOfGravityLongitude,
- MinimumLongitude,
- MaximumLongitude,
- OffsetLongitude,
- CenterOfGravityLongitudeSE,
- CenterOfGravityDepth,
- MinimumDepth,
- MaximumDepth,
- OffsetDepth,
- CenterOfGravityDepthSE,
- ]
-
- del DatasetCode, Region, Season, DateCode, Species, CommonName
- del CoreSpecies, Year, DistributionProjectName
- del DistributionProjectCode, SummaryProduct, CenterOfGravityLatitude
- del MinimumLatitude, MaximumLatitude, OffsetLatitude
- del CenterOfGravityLatitudeSE, CenterOfGravityLongitude
- del MinimumLongitude, MaximumLongitude, OffsetLongitude
- del CenterOfGravityLongitudeSE, CenterOfGravityDepth, MinimumDepth
- del MaximumDepth, OffsetDepth, CenterOfGravityDepthSE
-
- # Append to list
- row_values.append(row)
- del row
-
- del image_name, variable, species, commonname, corespecies, year, input_raster_path
- del raster_year
-
- del raster_years
- del first_year
-
- if "first_year_offset_latitude" in locals():
- del first_year_offset_latitude
- if "first_year_offset_longitude" in locals():
- del first_year_offset_longitude
- if "first_year_offset_depth" in locals():
- del first_year_offset_depth
-
- del region_bathymetry, region_latitude, region_longitude, input_rasters
-
- arcpy.AddMessage("Inserting records into the table")
-
- # This gets a list of fields in the table
- fields = [f.name for f in arcpy.ListFields(region_indicators) if f.type not in ['Geometry', 'OID']]
-
- # Open an InsertCursor
- cursor = arcpy.da.InsertCursor(region_indicators, fields)
- del fields
-
- # Insert new rows into the table
- for row in row_values:
- try:
- row = [None if x != x else x for x in row]
- cursor.insertRow(row)
- except: # noqa: E722
- # Get the traceback object
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- # Concatenate information together concerning the error into a message string
- pymsg = "PYTHON ERRORS:\nTraceback info:\n" + tbinfo + "\nError Info:\n" + str(sys.exc_info()[1])
- sys.exit()(pymsg)
- finally:
- del row
-
- # Delete cursor object
- del cursor
-
- # Delete
- del row_values
-
- getcount = arcpy.management.GetCount(region_indicators)[0]
- arcpy.AddMessage(f'\n> "{os.path.basename(region_indicators)}" has {getcount} records\n')
- del getcount
-
- PrintRowContent = False
- if PrintRowContent:
- printRowContent(region_indicators)
- del PrintRowContent
-
- del region_indicators
-
- arcpy.management.Delete(rf"{region_gdb}\Datasets")
- arcpy.management.Delete(rf"{region_gdb}\{table_name}_Bathymetry")
- arcpy.management.Delete(rf"{region_gdb}\{table_name}_Latitude")
- arcpy.management.Delete(rf"{region_gdb}\{table_name}_Longitude")
- arcpy.management.Delete(rf"{region_gdb}\{table_name}_Raster_Mask")
- arcpy.management.Delete(rf"{region_gdb}\{table_name}_LayerSpeciesYearImageName")
-
- # Values from Datasets table
- del datasetcode, region, season, datecode, distributionprojectcode
- del distributionprojectname, summaryproduct
- # Declared Variables assigned based on the passed paramater
- del table_name, scratch_folder, project_folder, scratch_workspace
- # Imported modules
- del np, math, dismap_tools
- # Passed paramater
- del region_gdb
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(f"Caught an arcpy.ExecuteWarning error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddWarning(arcpy.GetMessages(1))
- traceback.print_exc()
- sys.exit()
- except arcpy.ExecuteError:
- arcpy.AddError(f"Caught an arcpy.ExecuteError error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except SystemExit as se:
- arcpy.AddError(f"Caught an SystemExit error: {se} in the '{inspect.stack()[0][3]}' function.")
- sys.exit()
- except Exception as e:
- arcpy.AddError(f"Caught an Exception error: {e} in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(f"Caught an except error in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- pass
-
-def preprocessing(project_gdb="", table_names="", clear_folder=True):
- try:
- import dismap_tools
-
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(1) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- # Set basic arcpy.env variables
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- # Set varaibales
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = rf"{project_folder}\Scratch"
- scratch_workspace = os.path.join(project_folder, "Scratch\\scratch.gdb")
-
- # Clear Scratch Folder
- #ClearScratchFolder = True
- #if ClearScratchFolder:
- if clear_folder:
- dismap_tools.clear_folder(folder=rf"{os.path.dirname(project_gdb)}\Scratch")
- else:
- pass
- #del ClearScratchFolder
- del clear_folder
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
- del project_folder, scratch_workspace
-
- if not table_names:
- table_names = [row[0] for row in arcpy.da.SearchCursor(os.path.join(project_gdb, "Datasets"),
- "TableName",
- where_clause = "TableName LIKE '%_IDW'")]
- else:
- pass
-
- for table_name in table_names:
- arcpy.AddMessage(f"Pre-Processing: {table_name}")
-
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- region_scratch_workspace = os.path.join(scratch_folder, f"{table_name}", "scratch.gdb")
-
- # Create Scratch Workspace for Region
- if not arcpy.Exists(region_scratch_workspace):
- os.makedirs(os.path.join(scratch_folder, table_name))
- if not arcpy.Exists(region_scratch_workspace):
- arcpy.AddMessage(f"Create File GDB: '{table_name}'")
- arcpy.management.CreateFileGDB(os.path.join(scratch_folder, f"{table_name}"), "scratch")
- arcpy.AddMessage("\tCreate File GDB: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del region_scratch_workspace
- # # # CreateFileGDB
- arcpy.AddMessage(f"Creating File GDB: '{table_name}'")
- arcpy.management.CreateFileGDB(rf"{scratch_folder}", f"{table_name}")
- arcpy.AddMessage("\tCreate File GDB: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- # # # CreateFileGDB
- # # # Datasets
- # Process: Make Table View (Make Table View) (management)
- datasets = rf'{project_gdb}\Datasets'
- arcpy.AddMessage(f"'{os.path.basename(datasets)}' has {arcpy.management.GetCount(datasets)[0]} records")
- arcpy.management.Copy(datasets, rf"{region_gdb}\Datasets")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- # # # Datasets
-
- # # # LayerSpeciesYearImageName
- LayerSpeciesYearImageName = rf"{project_gdb}\{table_name}_LayerSpeciesYearImageName"
- arcpy.AddMessage(f"The table '{table_name}_LayerSpeciesYearImageName' has {arcpy.management.GetCount(LayerSpeciesYearImageName)[0]} records")
- arcpy.management.Copy(rf"{project_gdb}\{table_name}_LayerSpeciesYearImageName", rf"{region_gdb}\{table_name}_LayerSpeciesYearImageName")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del LayerSpeciesYearImageName
- # # # LayerSpeciesYearImageName
-
- # # # Raster_Mask
- arcpy.AddMessage(f"Copy Raster Mask for '{table_name}'")
- arcpy.management.Copy(rf"{project_gdb}\{table_name}_Raster_Mask", rf"{region_gdb}\{table_name}_Raster_Mask")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- # # # Raster_Mask
-
- # # # Bathymetry
- arcpy.AddMessage(f"Copy Bathymetry for '{table_name}'")
- arcpy.management.Copy(rf"{project_gdb}\{table_name}_Bathymetry", rf"{region_gdb}\{table_name}_Bathymetry")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- # # # Bathymetry
-
- # # # Latitude
- arcpy.AddMessage(f"Copy Latitude for '{table_name}'")
- arcpy.management.Copy(rf"{project_gdb}\{table_name}_Latitude", rf"{region_gdb}\{table_name}_Latitude")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- # # # Latitude
-
- # # # Longitude
- arcpy.AddMessage(f"Copy Longitude for '{table_name}'")
- arcpy.management.Copy(rf"{project_gdb}\{table_name}_Longitude", rf"{region_gdb}\{table_name}_Longitude")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- # # # Longitude
-
- # Declared Variables
- del table_name
- del datasets
-
- # Declared Variables
- del scratch_folder, region_gdb
- # Imports
- del dismap_tools
- # Function Parameters
- del project_gdb, table_names
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(f"Caught an arcpy.ExecuteWarning error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddWarning(arcpy.GetMessages(1))
- traceback.print_exc()
- sys.exit()
- except arcpy.ExecuteError:
- arcpy.AddError(f"Caught an arcpy.ExecuteError error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except SystemExit as se:
- arcpy.AddError(f"Caught an SystemExit error: {se} in the '{inspect.stack()[0][3]}' function.")
- sys.exit()
- except Exception as e:
- arcpy.AddError(f"Caught an Exception error: {e} in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(f"Caught an except error in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- pass
-
-def script_tool(project_gdb=""):
- try:
- # Imports
- import dismap_tools
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
-
-
- ## # Set worker parameters
- ## #table_name = "AI_IDW"
- ## table_name = "HI_IDW"
- ## #table_name = "NBS_IDW"
- ## #table_name = "ENBS_IDW"
-
- table_names = ["HI_IDW",]
-
- #preprocessing(project_gdb=project_gdb, table_names=table_names, clear_folder=True)
-
- for table_name in table_names:
- region_gdb = rf"{os.path.dirname(project_gdb)}\Scratch\{table_name}.gdb"
- try:
- pass
- worker(region_gdb=region_gdb)
- except SystemExit:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- del table_name, region_gdb
- del table_names
-
- # Declared Varaiables
- # Imports
- del dismap_tools
- # Function Parameters
- del project_gdb
-
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- hours, rem = divmod(end_time-start_time, 3600)
- minutes, seconds = divmod(rem, 60)
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"End Time: {strftime('%a %b %d %I:%M %p', localtime(end_time))}")
- arcpy.AddMessage(f"Elapsed Time {int(hours):0>2}:{int(minutes):0>2}:{seconds:05.2f} (H:M:S)")
- arcpy.AddMessage(f"{'-' * 80}")
- del hours, rem, minutes, seconds
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(f"Caught an arcpy.ExecuteWarning error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddWarning(arcpy.GetMessages(1))
- traceback.print_exc()
- sys.exit()
- except arcpy.ExecuteError:
- arcpy.AddError(f"Caught an arcpy.ExecuteError error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except SystemExit as se:
- arcpy.AddError(f"Caught an SystemExit error: {se} in the '{inspect.stack()[0][3]}' function.")
- sys.exit()
- except Exception as e:
- arcpy.AddError(f"Caught an Exception error: {e} in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(f"Caught an except error in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- pass
-
-if __name__ == '__main__':
- try:
- project_gdb = arcpy.GetParameterAsText(0)
- if not project_gdb:
- project_gdb = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026\\February 1 2026.gdb")
- else:
- pass
- script_tool(project_gdb)
- arcpy.SetParameterAsText(1, "Result")
- del project_gdb
- except: # noqa: E722
- traceback.print_exc()
- else:
- pass
- finally:
- pass
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_metadata_json_files.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_metadata_json_files.py
deleted file mode 100644
index 0494f91..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_metadata_json_files.py
+++ /dev/null
@@ -1,615 +0,0 @@
-"""
-Script documentation
-
-- Tool parameters are accessed using arcpy.GetParameter() or
- arcpy.GetParameterAsText()
-- Update derived parameter values using arcpy.SetParameter() or
- arcpy.SetParameterAsText()
-"""
-import os
-import sys
-import traceback
-import inspect
-
-import arcpy
-
-
-def script_tool(project_gdb=""):
- """Script code goes below"""
- try:
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
- project_folder = os.path.dirname(project_gdb)
- out_data_path = rf"{project_folder}\CSV_Data"
-
- root_dict = {"Esri" : 0,
- "dataIdInfo" : 1,
- "dqInfo" : 2,
- "distInfo" : 3,
- "mdContact" : 4,
- "mdLang" : 5,
- "mdChar" : 6,
- "mdDateSt" : 7,
- "mdHrLv" : 8,
- "mdHrLvName" : 9,
- "mdFileID" : 10,
- "mdParentID" : 11,
- "mdMaint" : 12,
- "refSysInfo" : 13,
- "spatRepInfo" : 14,
- "spdoinfo" : 15,
- "spref" : 16,
- "contInfo" : 17,
- "dataSetFn" : 18,
- "eainfo" : 19,
- "Binary" : 20,
- }
-
- import json
- json_path = rf"{out_data_path}\root_dict.json"
- # Write to File
- with open(json_path, 'w') as json_file:
- json.dump(root_dict, json_file, indent=4)
- del json_file
- del root_dict
- with open(json_path, "r") as json_file:
- root_dict = json.load(json_file)
- del json_file
- arcpy.AddMessage(root_dict)
- del root_dict
- del json_path
- del json
-
- esri_dict ={"CreaDate" : 0,
- "CreaTime" : 1,
- "ArcGISFormat" : 2,
- "ArcGISstyle" : 3,
- "ArcGISProfile" : 4,
- "SyncOnce" : 5,
- "DataProperties" : 6,
- "lineage" : 0,
- "itemProps" : 1,
- "itemName" : 0,
- "imsContentType" : 1,
- "nativeExtBox" : 2,
- "westBL" : 0,
- "eastBL" : 1,
- "southBL" : 2,
- "northBL" : 3,
- "exTypeCode" : 4,
- "itemLocation" : 3,
- "linkage" : 0,
- "protocol" : 1,
- "coordRef" : 4,
- "type" : 0,
- "geogcsn" : 1,
- "csUnits" : 2,
- "projcsn" : 3,
- "peXml" : 4,
- "SyncDate" : 7,
- "SyncTime" : 8,
- "ModDate" : 9,
- "ModTime" : 10,
- "scaleRange" : 11,
- "minScale" : 12,
- "maxScale" : 13,
- "locales" : 14,
- }
-
- import json
- json_path = rf"{out_data_path}\esri_dict.json"
- # Write to File
- with open(json_path, 'w') as json_file:
- json.dump(esri_dict, json_file, indent=4)
- del json_file
- del esri_dict
- with open(json_path, "r") as json_file:
- esri_dict = json.load(json_file)
- del json_file
- arcpy.AddMessage(esri_dict)
- del esri_dict
- del json_path
- del json
-
- dataIdInfo_dict = {"dataIdInfo" : 0,
- "envirDesc" : 0,
- "dataLang" : 1,
- "dataChar" : 2,
- "idCitation" : 3,
- "resTitle" : 0,
- "resAltTitle" : 1,
- "collTitle" : 2,
- "date" : 3,
- "presForm" : 4,
- "PresFormCd" : 0,
- "fgdcGeoform" : 1,
- "citRespParty" : 5,
- "spatRpType" : 4,
- "dataExt" : 5,
- "exDesc" : 0,
- "geoEle" : 1,
- "GeoBndBox" : 0,
- "exTypeCode" : 0,
- "westBL" : 1,
- "eastBL" : 2,
- "northBL" : 3,
- "southBL" : 4,
- "tempEle" : 2,
- "TempExtent" : 0,
- "exTemp" : 0,
- "TM_Period" : 0,
- "tmBegin" : 0,
- "tmEnd" : 1,
- "TM_Instant" : 1,
- "tmPosition" : 0,
- "searchKeys" : 1,
- "idPurp" : 2,
- "idAbs" : 3,
- "idCredit" : 4,
- "idStatus" : 5,
- "resConst" : 6,
- "discKeys" : 7,
- "keyword" : 0,
- "thesaName" : 1,
- "resTitle" : 0,
- "date" : 1,
- "createDate" : 0,
- "pubDate" : 1,
- "reviseDate" : 2,
- "citOnlineRes" : 2,
- "linkage" : 0,
- "orFunct" : 1,
- "OnFunctCd" : 0,
- "thesaLang" : 2,
- "languageCode" : 0,
- "countryCode" : 1,
- "themeKeys" : 8,
- "keyword" : 0,
- "thesaName" : 1,
- "resTitle" : 0,
- "date" : 1,
- "createDate" : 0,
- "pubDate" : 1,
- "reviseDate" : 2,
- "citOnlineRes" : 2,
- "linkage" : 0,
- "orFunct" : 1,
- "OnFunctCd" : 0,
- "thesaLang" : 2,
- "languageCode" : 0,
- "countryCode" : 1,
- "placeKeys" : 9,
- "keyword" : 0,
- "thesaName" : 1,
- "resTitle" : 0,
- "date" : 1,
- "createDate" : 0,
- "pubDate" : 1,
- "reviseDate" : 2,
- "citOnlineRes" : 2,
- "linkage" : 0,
- "orFunct" : 1,
- "OnFunctCd" : 0,
- "thesaLang" : 2,
- "languageCode" : 0,
- "countryCode" : 1,
- "tempKeys" : 10,
- "keyword" : 0,
- "thesaName" : 1,
- "resTitle" : 0,
- "date" : 1,
- "createDate" : 0,
- "pubDate" : 1,
- "reviseDate" : 2,
- "citOnlineRes" : 2,
- "linkage" : 0,
- "orFunct" : 1,
- "OnFunctCd" : 0,
- "thesaLang" : 2,
- "languageCode" : 0,
- "countryCode" : 1,
- "otherKeys" : 11,
- "keyword" : 0,
- "thesaName" : 1,
- "resTitle" : 0,
- "date" : 1,
- "createDate" : 0,
- "pubDate" : 1,
- "reviseDate" : 2,
- "citOnlineRes" : 2,
- "linkage" : 0,
- "orFunct" : 1,
- "OnFunctCd" : 0,
- "thesaLang" : 2,
- "languageCode" : 0,
- "countryCode" : 1,
- "idPoC" : 11,
- "resMaint" : 12,
-
- "tpCat" : 18,
- }
-
- import json
- json_path = rf"{out_data_path}\dataIdInfo_dict.json"
- # Write to File
- with open(json_path, 'w') as json_file:
- json.dump(dataIdInfo_dict, json_file, indent=4)
- del json_file
- del dataIdInfo_dict
- with open(json_path, "r") as json_file:
- dataIdInfo_dict = json.load(json_file)
- del json_file
- arcpy.AddMessage(dataIdInfo_dict)
- del dataIdInfo_dict
- del json_path
- del json
-
- idCitation_dict = {"idCitation" : 0,
- "resTitle" : 0,
- "resAltTitle" : 1,
- "collTitle" : 2,
- "presForm" : 3,
- "PresFormCd" : 0,
- "fgdcGeoform" : 1,
- "date" : 4,
- "createDate" : 0,
- "pubDate" : 1,
- "reviseDate" : 2,
- "citRespParty" : 6,
- }
-
- import json
- json_path = rf"{out_data_path}\idCitation_dict.json"
- # Write to File
- with open(json_path, 'w') as json_file:
- json.dump(idCitation_dict, json_file, indent=4)
- del json_file
- del idCitation_dict
- with open(json_path, "r") as json_file:
- idCitation_dict = json.load(json_file)
- del json_file
- arcpy.AddMessage(idCitation_dict)
- del idCitation_dict
- del json_path
- del json
-
- contact_element_order_dict = {"editorSource" : 0, "editorDigest" : 1,"rpIndName" : 2,
- "rpOrgName" : 3, "rpPosName" : 4, "rpCntInfo" : 5,
- "cntAddress" : 0, "delPoint" : 0, "city" : 1,
- "adminArea" : 2, "postCode" : 3, "eMailAdd" : 4,
- "country" : 5, "cntPhone" : 1, "voiceNum" : 0,
- "faxNum" : 1, "cntHours" : 2, "cntOnlineRes" : 3,
- "linkage" : 0, "protocol" : 1, "orName" : 2,
- "orDesc" : 3, "orFunct" : 4, "OnFunctCd" : 0,
- "editorSave" : 6, "displayName" : 7, "role" : 8,
- "RoleCd" : 0, "srcCitatn" : 1, "resTitle" : 0,
- "resAltTitle" : 1, "collTitle" : 2, "date" : 10,
- "createDate" : 0, "pubDate" : 1, "reviseDate" : 2,
- "presForm" : 3, "PresFormCd" : 0, "fgdcGeoform" : 1,
- "citRespParty" : 6, "citOnlineRes" : 2,
- }
-
- import json
- json_path = rf"{out_data_path}\contact_element_order_dict.json"
- # Write to File
- with open(json_path, 'w') as json_file:
- json.dump(contact_element_order_dict, json_file, indent=4)
- del json_file
- del contact_element_order_dict
- with open(json_path, "r") as json_file:
- contact_element_order_dict = json.load(json_file)
- del json_file
- arcpy.AddMessage(contact_element_order_dict)
- del contact_element_order_dict
- del json_path
- del json
-
- dqInfo_dict = { "dqScope" : 0,
- "scpLvl" : 0,
- "ScopeCd" : 0,
- "scpLvlDesc" : 1,
- "datasetSet" : 0,
- "report" : 1,
- "measDesc" : 0,
- "measResult" : 1,
- "dataLineage" : 3,
- "statement" : 0,
- "dataSource" : 1,
- "srcDesc" : 0,
- "srcCitatn" : 1,
- "resTitle" : 0,
- "resAltTitle" : 1,
- "collTitle" : 2,
- "citOnlineRes" : 2,
- "linkage" : 0,
- "protocol" : 1,
- "orName" : 2,
- "orDesc" : 3,
- "orFunct" : 4,
- "OnFunctCd" : 0,
- "date" : 3,
- "createDate" : 0,
- "pubDate" : 1,
- "reviseDate" : 2,
- "otherCitDet" : 4,
- "presForm" : 5,
- "PresFormCd" : 0,
- "fgdcGeoform" : 1,
- "citRespParty" : 6,
- "editorSource" : 0, "editorDigest" : 1,"rpIndName" : 2,
- "rpOrgName" : 3, "rpPosName" : 4, "rpCntInfo" : 5,
- "cntAddress" : 0, "delPoint" : 0, "city" : 1,
- "adminArea" : 2, "postCode" : 3, "eMailAdd" : 4,
- "country" : 5, "cntPhone" : 1, "voiceNum" : 0,
- "faxNum" : 1, "cntHours" : 2, "cntOnlineRes" : 3,
- "linkage" : 0, "protocol" : 1, "orName" : 2,
- "orDesc" : 3, "orFunct" : 4, "OnFunctCd" : 0,
- "editorSave" : 6, "displayName" : 7, "role" : 8,
- "RoleCd" : 0,
- "srcMedName" : 7,
- "MedNameCd" : 0,
- "prcStep" : 3,
- "stepDesc" : 0,
- "stepProc" : 1,
- "editorSource" : 0, "editorDigest" : 1,"rpIndName" : 2,
- "rpOrgName" : 3, "rpPosName" : 4, "rpCntInfo" : 5,
- "cntAddress" : 0, "delPoint" : 0, "city" : 1,
- "adminArea" : 2, "postCode" : 3, "eMailAdd" : 4,
- "country" : 5, "cntPhone" : 1, "voiceNum" : 0,
- "faxNum" : 1, "cntHours" : 2, "cntOnlineRes" : 3,
- "linkage" : 0, "protocol" : 1, "orName" : 2,
- "orDesc" : 3, "orFunct" : 4, "OnFunctCd" : 0,
- "editorSave" : 6, "displayName" : 7, "role" : 8,
- "RoleCd" : 0,
-
- "stepDateTm" : 2,
- "cntOnlineRes" : 3, "linkage" : 0,
- "protocol" : 1, "orName" : 2, "orDesc" : 3,
- "orFunct" : 4, "OnFunctCd" : 0,
- }
-
- import json
- json_path = rf"{out_data_path}\dqInfo_dict.json"
- # Write to File
- with open(json_path, 'w') as json_file:
- json.dump(dqInfo_dict, json_file, indent=4)
- del json_file
- del dqInfo_dict
- with open(json_path, "r") as json_file:
- dqInfo_dict = json.load(json_file)
- del json_file
- arcpy.AddMessage(dqInfo_dict)
- del dqInfo_dict
- del json_path
- del json
-
- distInfo_dict = {"distInfo" : 0,
- "distFormat" : 0,
- "formatName" : 0,
- "formatVer" : 1,
- "fileDecmTech" : 2,
- "formatInfo" : 3,
- "distributor" : 1,
- "distorCont" : 0,
- "editorSource" : 0,
- "editorDigest" : 1,
- "rpIndName" : 2,
- "rpOrgName" : 3,
- "rpPosName" : 4,
- "rpCntInfo" : 5,
- "cntAddress" : 0,
- "delPoint" : 0,
- "city" : 1,
- "adminArea" : 2,
- "postCode" : 3,
- "eMailAdd" : 4,
- "country" : 5,
- "cntPhone" : 1,
- "voiceNum" : 0,
- "faxNum" : 1,
- "cntHours" : 2,
- "cntOnlineRes" : 3,
- "linkage" : 0,
- "orName" : 1,
- "orDesc" : 2,
- "orFunct" : 3,
- "OnFunctCd" : 0,
- "editorSave" : 6,
- "displayName" : 7,
- "role" : 8,
- "RoleCd" : 0,
- "distTranOps" : 2,
- "unitsODist" : 0,
- "transSize" : 1,
- "onLineSrc" : 2,
- "linkage" : 0,
- "protocol" : 1,
- "orName" : 2,
- "orDesc" : 3,
- "orFunct" : 4,
- "OnFunctCd" : 0,
- }
-
- import json
- json_path = rf"{out_data_path}\distInfo_dict.json"
- # Write to File
- with open(json_path, 'w') as json_file:
- json.dump(distInfo_dict, json_file, indent=4)
- del json_file
- del distInfo_dict
- with open(json_path, "r") as json_file:
- distInfo_dict = json.load(json_file)
- del json_file
- arcpy.AddMessage(distInfo_dict)
- del distInfo_dict
- del json_path
- del json
-
- RoleCd_dict = {"001" : "Resource Provider", "002" : "Custodian",
- "003" : "Owner", "004" : "User",
- "005" : "Distributor", "006" : "Originator",
- "007" : "Point of Contact", "008" : "Principal Investigator",
- "009" : "Processor", "010" : "Publisher",
- "011" : "Author", "012" : "Collaborator",
- "013" : "Editor", "014" : "Mediator",
- "015" : "Rights Holder",}
-
- import json
- json_path = rf"{out_data_path}\RoleCd_dict.json"
- # Write to File
- with open(json_path, 'w') as json_file:
- json.dump(RoleCd_dict, json_file, indent=4)
- del json_file
- del RoleCd_dict
- with open(json_path, "r") as json_file:
- RoleCd_dict = json.load(json_file)
- del json_file
- arcpy.AddMessage(RoleCd_dict)
- del RoleCd_dict
- del json_path
- del json
-
- #role_dict = {"citRespParty" : ,
- # "idPoC" : ,
- # "distorCont" : ,
- # "mdContact" : ,
- # "stepProc"
-
-
- tpCat_dict = {"002": '',
- "007": '',
- "014": '',}
-
- import json
- json_path = rf"{out_data_path}\tpCat_dict.json"
- # Write to File
- with open(json_path, 'w') as json_file:
- json.dump(tpCat_dict, json_file, indent=4)
- del json_file
- del tpCat_dict
- with open(json_path, "r") as json_file:
- tpCat_dict = json.load(json_file)
- del json_file
- arcpy.AddMessage(tpCat_dict)
- del tpCat_dict
- del json_path
- del json
-
- # ###################### DisMAP ########################################
- RoleCd_dict = {"001" : "Resource Provider", "002" : "Custodian",
- "003" : "Owner", "004" : "User",
- "005" : "Distributor", "006" : "Originator",
- "007" : "Point of Contact", "008" : "Principal Investigator",
- "009" : "Processor", "010" : "Publisher",
- "011" : "Author", "012" : "Collaborator",
- "013" : "Editor", "014" : "Mediator",
- "015" : "Rights Holder",}
- contact_dict = {"citRespParty" : [{"role" : "Custodian", "rpIndName" : "Timothy J Haverland", "eMailAdd" : "tim.haverland@noaa.gov"},],
- "idPoC" : [{"role" : "Point of Contact", "rpIndName" : "Melissa Ann Karp", "eMailAdd" : "melissa.karp@noaa.gov"},],
- "distorCont" : [{"role" : "Distributor", "rpIndName" : "Timothy J Haverland", "eMailAdd" : "tim.haverland@noaa.gov"},],
- "mdContact" : [{"role" : "Author", "rpIndName" : "John F Kennedy", "eMailAdd" : "john.f.kennedy@noaa.gov"},],
- "srcCitatn" : [{"role" : "Principal Investigator", "rpIndName" : "Melissa Ann Karp", "eMailAdd" : "melissa.karp@noaa.gov"},],
- "stepProc" : [{"role" : "Processor", "rpIndName" : "John F Kennedy", "eMailAdd" : "john.f.kennedy@noaa.gov"},
- {"role" : "Processor", "rpIndName" : "Melissa Ann Karp", "eMailAdd" : "melissa.karp@noaa.gov"},
- ],}
- del RoleCd_dict
-
- import json
- json_path = rf"{out_data_path}\contact_dict.json"
- #arcpy.AddMessage(json_path)
- # Write to File
- with open(json_path, 'w') as json_file:
- json.dump(contact_dict, json_file, indent=4)
- del json_file
- del contact_dict
- with open(json_path, "r") as json_file:
- contact_dict = json.load(json_file)
- del json_file
- arcpy.AddMessage(contact_dict)
- del contact_dict
- del json_path
- del json
-
- # ###################### DisMAP ########################################
-
- # Declared Varaiables
- del project_folder, out_data_path
- # Imports
- # Function Parameters
- del project_gdb
-
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- hours, rem = divmod(end_time-start_time, 3600)
- minutes, seconds = divmod(rem, 60)
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"End Time: {strftime('%a %b %d %I:%M %p', localtime(end_time))}")
- arcpy.AddMessage(f"Elapsed Time {int(hours):0>2}:{int(minutes):0>2}:{seconds:05.2f} (H:M:S)")
- arcpy.AddMessage(f"{'-' * 80}")
- del hours, rem, minutes, seconds
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(f"Caught an arcpy.ExecuteWarning error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(f"Caught an arcpy.ExecuteError error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except SystemExit as se:
- arcpy.AddError(f"Caught an SystemExit error: {se} in the '{inspect.stack()[0][3]}' function.")
- sys.exit()
- except Exception as e:
- arcpy.AddError(f"Caught an Exception error: {e} in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- except:
- arcpy.AddError(f"Caught an except error in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-if __name__ == "__main__":
- try:
-
- project_gdb = arcpy.GetParameterAsText(0)
- if not project_gdb:
- project_gdb = rf"{os.path.expanduser('~')}\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\August 1 2025.gdb"
- else:
- pass
-
- script_tool(project_gdb=project_gdb)
- arcpy.SetParameterAsText(1, "Result")
- del project_gdb
-
- except SystemExit:
- pass
- except:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- else:
- pass
- finally:
- sys.exit()
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_mosaics_director.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_mosaics_director.py
deleted file mode 100644
index 440e9e5..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_mosaics_director.py
+++ /dev/null
@@ -1,477 +0,0 @@
-# -*- coding: utf-8 -*-
-#-------------------------------------------------------------------------------
-# Name: create_species_year_image_name_table_director
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 09/03/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-#-------------------------------------------------------------------------------
-import os
-import sys
-import traceback
-
-import arcpy # third-parties second
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- #filename = sys.path[0] + os.sep + f"{os.path.basename(__file__)}"
- filename = os.path.basename(__file__)
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def preprocessing(project_gdb="", table_names="", clear_folder=True):
- try:
- import dismap_tools
-
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(1) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- # Set basic arcpy.env variables
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- # Set varaibales
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = rf"{project_folder}\Scratch"
- scratch_workspace = os.path.join(project_folder, "Scratch\\scratch.gdb")
-
- # Clear Scratch Folder
- #ClearScratchFolder = True
- #if ClearScratchFolder:
- if clear_folder:
- dismap_tools.clear_folder(folder=rf"{os.path.dirname(project_gdb)}\Scratch")
- else:
- pass
- #del ClearScratchFolder
- del clear_folder
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
- del project_folder, scratch_workspace
-
- if not table_names:
- table_names = [row[0] for row in arcpy.da.SearchCursor(os.path.join(project_gdb, "Datasets"),
- "TableName",
- where_clause = "TableName LIKE '%_IDW'")]
- else:
- pass
-
- for table_name in table_names:
- arcpy.AddMessage(f"Pre-Processing: {table_name}")
-
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- region_scratch_workspace = os.path.join(scratch_folder, f"{table_name}", "scratch.gdb")
-
- # Create Scratch Workspace for Region
- if not arcpy.Exists(region_scratch_workspace):
- os.makedirs(os.path.join(scratch_folder, table_name))
- if not arcpy.Exists(region_scratch_workspace):
- arcpy.AddMessage(f"Create File GDB: '{table_name}'")
- arcpy.management.CreateFileGDB(os.path.join(scratch_folder, f"{table_name}"), "scratch")
- arcpy.AddMessage("\tCreate File GDB: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del region_scratch_workspace
- # # # CreateFileGDB
- arcpy.AddMessage(f"Creating File GDB: '{table_name}'")
- arcpy.management.CreateFileGDB(rf"{scratch_folder}", f"{table_name}")
- arcpy.AddMessage("\tCreate File GDB: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- # # # CreateFileGDB
- # # # Datasets
- # Process: Make Table View (Make Table View) (management)
- datasets = rf'{project_gdb}\Datasets'
- arcpy.AddMessage(f"'{os.path.basename(datasets)}' has {arcpy.management.GetCount(datasets)[0]} records")
- arcpy.management.Copy(datasets, rf"{region_gdb}\Datasets")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- # # # Datasets
-
- # # # LayerSpeciesYearImageName
- LayerSpeciesYearImageName = rf"{project_gdb}\{table_name}_LayerSpeciesYearImageName"
- arcpy.AddMessage(f"The table '{table_name}_LayerSpeciesYearImageName' has {arcpy.management.GetCount(LayerSpeciesYearImageName)[0]} records")
- arcpy.management.Copy(rf"{project_gdb}\{table_name}_LayerSpeciesYearImageName", rf"{region_gdb}\{table_name}_LayerSpeciesYearImageName")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del LayerSpeciesYearImageName
- # # # LayerSpeciesYearImageName
-
- # # # Raster_Mask
- arcpy.AddMessage(f"Copy Raster Mask for '{table_name}'")
- arcpy.management.Copy(rf"{project_gdb}\{table_name}_Raster_Mask", rf"{region_gdb}\{table_name}_Raster_Mask")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- # # # Raster_Mask
-
- del datasets
- # Declared Variables
- del table_name
-
- # Declared Variables
- del scratch_folder, region_gdb
- # Imports
- del dismap_tools
- # Function Parameters
- del project_gdb, table_names
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def director(project_gdb="", Sequential=True, table_names=[]):
- try:
- # Imports
- import dismap_tools
- from create_mosaics_worker import worker
-
- # Test if passed workspace exists, if not sys.exit()
- if not arcpy.Exists(rf"{project_gdb}"):
- arcpy.AddError(f"{os.path.basename(project_gdb)} is missing!!")
- arcpy.AddError(arcpy.GetMessages(2))
- sys.exit()
- else:
- pass
-
- # Set History and Metadata logs, set serverity and message level
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- # Set basic arcpy.env values
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = rf"{os.path.dirname(project_gdb)}\Scratch\scratch.gdb"
-
- preprocessing(project_gdb=project_gdb, table_names=table_names, clear_folder=True)
-
- # Set basic workkpace variables
- scratch_folder = rf"{os.path.dirname(project_gdb)}\Scratch"
- csv_data_folder = rf"{os.path.dirname(project_gdb)}\CSV_Data"
-
- # Sequential Processing
- if Sequential:
- arcpy.AddMessage("Sequential Processing")
- for i in range(0, len(table_names)):
- arcpy.AddMessage(f"Processing: {table_names[i]}")
- table_name = table_names[i]
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- try:
- worker(region_gdb=region_gdb)
- except SystemExit:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- del region_gdb, table_name
- del i
- else:
- pass
-
- # Non-Sequential Processing
- if not Sequential:
- arcpy.AddMessage("Non-Sequential Processing")
- # Imports
- import multiprocessing
- from time import time, localtime, strftime, sleep, gmtime
- arcpy.AddMessage("Start multiprocessing using the ArcGIS Pro pythonw.exe.")
- #Set multiprocessing exe in case we're running as an embedded process, i.e ArcGIS
- #get_install_path() uses a registry query to figure out 64bit python exe if available
- multiprocessing.set_executable(os.path.join(sys.exec_prefix, 'pythonw.exe'))
- # Get CPU count and then take 2 away for other process
- _processes = multiprocessing.cpu_count() - 2
- _processes = _processes if len(table_names) >= _processes else len(table_names)
- arcpy.AddMessage(f"Creating the multiprocessing Pool with {_processes} processes")
- #Create a pool of workers, keep one cpu free for surfing the net.
- #Let each worker process only handle 1 task before being restarted (in case of nasty memory leaks)
- with multiprocessing.Pool(processes=_processes, maxtasksperchild=1) as pool:
- arcpy.AddMessage("\tPrepare arguments for processing")
- # Use apply_async so we can handle exceptions gracefully
- jobs={}
- for i in range(0, len(table_names)):
- try:
- arcpy.AddMessage(f"Processing: {table_names[i]}")
- table_name = table_names[i]
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- jobs[table_name] = pool.apply_async(worker, [region_gdb])
- del table_name, region_gdb
- except: # noqa: E722
- pool.terminate()
- traceback.print_exc()
- sys.exit()
- del i
- all_finished = False
- # Set a start time so that we can see how log things take
- start_time = time()
- result_completed = {}
- while True:
- all_finished = True
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- arcpy.AddMessage(f"\nStart Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage("Have the workers finished?")
- finish_time = strftime('%a %b %d %I:%M %p', localtime())
- time_elapsed = u"Elapsed Time {0} (H:M:S)".format(strftime("%H:%M:%S", gmtime(elapse_time)))
- arcpy.AddMessage(f"It's {finish_time}\n{time_elapsed}")
- finish_time = f"{finish_time}.\n\t{time_elapsed}"
- del time_elapsed
- for table_name, result in jobs.items():
- if result.ready():
- if table_name not in result_completed:
- result_completed[table_name] = finish_time
- try:
- # wait for and get the result from the task
- result.get()
- except: # noqa: E722
- pool.terminate()
- traceback.print_exc()
- sys.exit()
- else:
- pass
- arcpy.AddMessage(f"Process {table_name}\n\tFinished on {result_completed[table_name]}")
- else:
- all_finished = False
- arcpy.AddMessage(f"Process {table_name} is running. . .")
- del table_name, result
- del elapse_time, end_time, finish_time
- if all_finished:
- break
- sleep(_processes * 7.5)
- del result_completed
- del start_time
- del all_finished
- arcpy.AddMessage("Close the process pool")
- # close the process pool
- pool.close()
- # wait for all tasks to complete and processes to close
- arcpy.AddMessage("\tWait for all tasks to complete and processes to close")
- pool.join()
- # Just in case
- pool.terminate()
- del pool
- del jobs
- del _processes
- del time, multiprocessing, localtime, strftime, sleep, gmtime
- arcpy.AddMessage("Done with multiprocessing Pool\n")
-
- # Post-Processing
- arcpy.AddMessage("Post-Processing Begins")
-
- crf_folder = rf"{os.path.dirname(project_gdb)}\CRFs"
-
- datasets = list()
- walk = arcpy.da.Walk(scratch_folder, datatype=["RasterDataset", "MosaicDataset"])
- for dirpath, dirnames, filenames in walk:
- for filename in filenames:
- datasets.append(os.path.join(dirpath, filename))
- del filename
- del dirpath, dirnames, filenames
- del walk
- for dataset in datasets:
- datasets_short_path = f".. {'/'.join(dataset.split(os.sep)[-4:])}"
- dataset_name = os.path.basename(dataset)
- dataset_type = arcpy.Describe(dataset).datatype
- region_gdb = os.path.dirname(dataset)
- arcpy.AddMessage(f"\tDataset: '{dataset_name}'")
- arcpy.AddMessage(f"\t\tType: '{dataset_type}'")
- arcpy.AddMessage(f"\t\tPath: '{datasets_short_path}'")
- arcpy.AddMessage(f"\t\tRegion GDB: '{os.path.basename(region_gdb)}'")
- if dataset.endswith("Mosaic"):
- try:
- if arcpy.Exists(rf"{project_gdb}\{dataset_name}"):
- arcpy.management.Delete(rf"{project_gdb}\{dataset_name}")
- else:
- pass
- arcpy.AddMessage(f"Copy '{dataset_name}'")
- arcpy.management.Copy(in_data = dataset,
- out_data = rf"{project_gdb}\{dataset_name}",
- data_type = "MosaicDataset",
- associated_data = "MosaicCatalogItemCategoryDomain 'CV domain' MosaicCatalogItemCategoryDomain DEFAULTS")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- #arcpy.AddMessage(f"\t\tAlter Fields for: '{dataset_name}'")
- #dismap_tools.alter_fields(csv_data_folder, rf"{project_gdb}\{dataset_name}")
- dismap_tools.import_metadata(csv_data_folder, rf"{project_gdb}\{dataset_name}")
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
-
- elif dataset.endswith(".crf"):
- try:
- if arcpy.Exists(rf"{crf_folder}\{dataset_name}"):
- arcpy.management.Delete(rf"{crf_folder}\{dataset_name}")
- else:
- pass
- arcpy.AddMessage(f"Copy '{dataset_name}'")
- arcpy.management.Copy(in_data = dataset,
- out_data = rf"{crf_folder}\{dataset_name}",
- data_type = "MosaicDataset",
- associated_data = "MosaicCatalogItemCategoryDomain 'CV domain' MosaicCatalogItemCategoryDomain DEFAULTS")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- dismap_tools.import_metadata(csv_data_folder, rf"{project_gdb}\{dataset_name}")
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- raise SystemExit
- else:
- pass
- arcpy.management.Delete(dataset)
- arcpy.AddMessage("\tDelete: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del region_gdb, dataset_name, datasets_short_path, dataset_type
- del dataset
- del datasets
-
- arcpy.AddMessage(f"Compacting the {os.path.basename(project_gdb)} GDB")
- arcpy.management.Compact(project_gdb)
- arcpy.AddMessage("\t"+arcpy.GetMessages().replace("\n", "\n\t"))
- # Declared Variables assigned in function
- del scratch_folder, csv_data_folder, crf_folder
- # Imports
- del worker, dismap_tools
- # Function Parameters
- del project_gdb, Sequential, table_names
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def script_tool(project_gdb=""):
- try:
- # Imports
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
-## # Clear Scratch Folder
-## ClearScratchFolder = False
-## if ClearScratchFolder:
-## import dismap_tools
-## dismap_tools.clear_folder(folder=scratch_folder)
-## del dismap_tools
-## else:
-## pass
-## del ClearScratchFolder
-
- try:
- # "AI_IDW", "EBS_IDW", "ENBS_IDW", "GMEX_IDW", "GOA_IDW", "HI_IDW", "NBS_IDW", "NEUS_FAL_IDW", "NEUS_SPR_IDW",
- # "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW", "WC_ANN_IDW", "WC_TRI_IDW",
- Test = False
- if Test:
- director(project_gdb=project_gdb, Sequential=True, table_names=["SEUS_FAL_IDW", "HI_IDW", "NBS_IDW",])
- elif not Test:
- director(project_gdb=project_gdb, Sequential=False, table_names=["AI_IDW", "EBS_IDW", "ENBS_IDW", "GMEX_IDW", "GOA_IDW", "HI_IDW", "NBS_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["NEUS_FAL_IDW", "NEUS_SPR_IDW", "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW", "WC_ANN_IDW", "WC_TRI_IDW",])
- else:
- pass
- del Test
-
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
-
- # Declared Variables
-
- # Imports
- # Function Parameters
- del project_gdb
-
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- hours, rem = divmod(end_time-start_time, 3600)
- minutes, seconds = divmod(rem, 60)
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"End Time: {strftime('%a %b %d %I:%M %p', localtime(end_time))}")
- arcpy.AddMessage(f"Elapsed Time {int(hours):0>2}:{int(minutes):0>2}:{seconds:05.2f} (H:M:S)")
- arcpy.AddMessage(f"{'-' * 80}")
- del hours, rem, minutes, seconds
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-if __name__ == '__main__':
- try:
- project_gdb = arcpy.GetParameterAsText(0)
- if not project_gdb:
- project_gdb = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026\\February 1 2026.gdb")
- else:
- pass
- script_tool(project_gdb)
- arcpy.SetParameterAsText(1, "Result")
- del project_gdb
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_mosaics_worker.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_mosaics_worker.py
deleted file mode 100644
index bd43dfb..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_mosaics_worker.py
+++ /dev/null
@@ -1,427 +0,0 @@
-# -*- coding: utf-8 -*-
-#-------------------------------------------------------------------------------
-# Name: create_species_year_image_name_table_worker
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 09/03/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-#-------------------------------------------------------------------------------
-import os
-import sys
-import traceback
-
-import arcpy # third-parties second
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- #filename = sys.path[0] + os.sep + f"{os.path.basename(__file__)}"
- filename = os.path.basename(__file__)
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def worker(region_gdb=""):
- try:
-
- # Set History and Metadata logs, set serverity and message level
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- table_name = os.path.basename(region_gdb).replace(".gdb","")
- scratch_folder = os.path.dirname(region_gdb)
- project_folder = os.path.dirname(scratch_folder)
- scratch_workspace = rf"{scratch_folder}\{table_name}\scratch.gdb"
- region_raster_mask = rf"{region_gdb}\{table_name}_Raster_Mask"
-
- arcpy.AddMessage(f"Table Name: {table_name}\nProject Folder: {os.path.basename(project_folder)}\nScratch Folder: {os.path.basename(scratch_folder)}\n")
-
- # Set basic workkpace variables
- arcpy.env.workspace = region_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- #arcpy.env.compression = "LZ77"
- #arcpy.env.geographicTransformations = "WGS_1984_(ITRF08)_To_NAD_1983_2011"
- #arcpy.env.pyramid = "PYRAMIDS -1 BILINEAR LZ77 NO_SKIP"
- arcpy.env.resamplingMethod = "BILINEAR"
- arcpy.env.rasterStatistics = "STATISTICS 1 1"
- #arcpy.env.buildStatsAndRATForTempRaster = True
-
- # DatasetCode, CSVFile, TransformUnit, TableName, GeographicArea, CellSize,
- # PointFeatureType, FeatureClassName, Region, Season, DateCode, Status,
- # DistributionProjectCode, DistributionProjectName, SummaryProduct,
- # FilterRegion, FilterSubRegion, FeatureServiceName, FeatureServiceTitle,
- # MosaicName, MosaicTitle, ImageServiceName, ImageServiceTitle
-
- # Get values for table_name from Datasets table
- fields = ["TableName", "GeographicArea", "DatasetCode", "CellSize", "MosaicName", "MosaicTitle"]
- region_list = [row for row in arcpy.da.SearchCursor(rf"{region_gdb}\Datasets", fields, where_clause = f"TableName = '{table_name}'")][0]
- del fields
-
- # Assigning variables from items in the chosen table list
- # ['AI_IDW', 'AI_IDW_Region', 'AI', 'Aleutian Islands', None, 'IDW']
- table_name = region_list[0]
- #geographic_area = region_list[1]
- datasetcode = region_list[2]
- cell_size = region_list[3]
- mosaic_name = region_list[4]
- mosaic_title = region_list[5]
- del region_list
-
- # Start of business logic for the worker function
- arcpy.AddMessage(f"Processing: {table_name}")
-
- #geographic_area_sr = rf"{project_folder}\Dataset_Shapefiles\{table_name}\{geographic_area}.prj"
- # Set the output coordinate system to what is needed for the
- # DisMAP project
- #psr = arcpy.SpatialReference(geographic_area_sr)
- #arcpy.env.outputCoordinateSystem = psr
- #del geographic_area_sr, geographic_area
-
- arcpy.AddMessage("\tSet the 'outputCoordinateSystem' based on the projection information for the geographic region")
- psr = arcpy.Describe(region_raster_mask).spatialReference
- arcpy.env.outputCoordinateSystem = psr
- del region_raster_mask
-
- arcpy.AddMessage("Building the 'input_raster_paths' list")
-
- layerspeciesyearimagename = rf"{region_gdb}\{table_name}_LayerSpeciesYearImageName"
-
- input_raster_paths = []
-
- fields = ['Variable', 'ImageName']
- with arcpy.da.SearchCursor(layerspeciesyearimagename, fields, where_clause = f"DatasetCode = '{datasetcode}'") as cursor:
- for row in cursor:
- variable, image_name = row[0], row[1]
- #if variable not in variables: variables.append(variable)
- #arcpy.AddMessage(f"{variable}, {image_name}")
- variable = f"_{variable}" if "Species Richness" in variable else variable
- input_raster_path = rf"{project_folder}\Images\{table_name}\{variable}\{image_name}.tif"
- if arcpy.Exists(input_raster_path):
- #arcpy.AddMessage(input_raster_path)
- input_raster_paths.append(input_raster_path)
- else:
- arcpy.AddError(f"{os.path.basename(input_raster_path)} is missing!!")
- #arcpy.AddMessage(input_raster_path)
- del row, variable, image_name, input_raster_path
- del cursor
- del fields
-
- mosaic_path = os.path.join(region_gdb, mosaic_name)
-
- # Loading images into the Mosaic.
- arcpy.AddMessage(f"Loading the '{table_name}' Mosaic. This may take a while. . . Please wait. . .")
-
- with arcpy.EnvManager(scratchWorkspace = scratch_workspace, workspace = region_gdb):
- arcpy.management.CreateMosaicDataset(in_workspace = region_gdb,
- in_mosaicdataset_name = mosaic_name,
- coordinate_system = psr,
- num_bands = "1",
- pixel_type = "32_BIT_FLOAT",
- product_definition = "",
- product_band_definitions = "")
-
- arcpy.AddMessage("\tCreate Mosaic Dataset: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.AddMessage(f"Loading Rasters into the {os.path.basename(mosaic_path)}.")
-
- arcpy.management.AddRastersToMosaicDataset(in_mosaic_dataset = mosaic_path,
- raster_type = "Raster Dataset",
- input_path = input_raster_paths,
- update_cellsize_ranges = "UPDATE_CELL_SIZES",
- #update_cellsize_ranges = "NO_CELL_SIZES",
- update_boundary = "UPDATE_BOUNDARY",
- #update_boundary = "NO_BOUNDARY",
- update_overviews = "NO_OVERVIEWS",
- maximum_pyramid_levels = None,
- maximum_cell_size = "0",
- minimum_dimension = "1500",
- spatial_reference = psr,
- filter = "",
- sub_folder = "NO_SUBFOLDERS",
- #duplicate_items_action = "OVERWRITE_DUPLICATES",
- duplicate_items_action = "EXCLUDE_DUPLICATES",
- build_pyramids = "NO_PYRAMIDS",
- #calculate_statistics = "CALCULATE_STATISTICS",
- calculate_statistics = "NO_STATISTICS",
- #build_thumbnails = "BUILD_THUMBNAILS",
- build_thumbnails = "NO_THUMBNAILS",
- operation_description = "DisMAP",
- #force_spatial_reference= "NO_FORCE_SPATIAL_REFERENCE",
- force_spatial_reference = "FORCE_SPATIAL_REFERENCE",
- #estimate_statistics = "ESTIMATE_STATISTICS",
- estimate_statistics = "NO_STATISTICS",
- )
- arcpy.AddMessage("\tAdd Rasters To Mosaic Dataset: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del input_raster_paths
- del psr
-
- arcpy.AddMessage(f"Joining {os.path.basename(mosaic_path)} with {os.path.basename(layerspeciesyearimagename)}")
-
- arcpy.management.JoinField(in_data = mosaic_path, in_field="Name", join_table = layerspeciesyearimagename, join_field="ImageName", fields="DatasetCode;Region;Season;Species;CommonName;SpeciesCommonName;CoreSpecies;Year;StdTime;Variable;Value;Dimensions")
- arcpy.AddMessage("\tJoin Field: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del layerspeciesyearimagename
-
- arcpy.AddMessage(f'Removing field index from {os.path.basename(mosaic_path)}')
-
- try:
- arcpy.management.RemoveIndex(mosaic_path, [f"{table_name}_MosaicSpeciesIndex",])
- except: # noqa: E722
- pass
-
- arcpy.AddMessage(f"Adding field index to {os.path.basename(mosaic_path)}")
-
- # Add Attribute Index
- arcpy.management.AddIndex(mosaic_path, ['Species', 'CommonName', 'SpeciesCommonName', 'Year'], f"{table_name}_MosaicSpeciesIndex", "NON_UNIQUE", "NON_ASCENDING")
- arcpy.AddMessage("\tAdd Index: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.management.CalculateStatistics(mosaic_path, 1, 1, [], "OVERWRITE", "")
- arcpy.AddMessage("\tCalculate Statistics: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- #--->>> SetMosaicDatasetProperties
- arcpy.AddMessage(f"Set Mosaic Dataset Properties for {os.path.basename(mosaic_path)}")
-
- #fields = [f.name for f in arcpy.ListFields(mosaic_path) if f.type not in ['Geometry', 'OID'] and f.name not in ["Shape", "Raster", "Category", "TypeID", "ItemTS", "UriHash", "Uri",]]
- fields = [f.name for f in arcpy.ListFields(mosaic_path)]
-
- fields = ";".join(fields)
-
- arcpy.management.SetMosaicDatasetProperties(in_mosaic_dataset = mosaic_path,
- rows_maximum_imagesize = 4100,
- columns_maximum_imagesize = 15000,
- allowed_compressions = "LZ77;None",
- default_compression_type = "LZ77",
- JPEG_quality = 75,
- LERC_Tolerance = 0.01,
- resampling_type = "BILINEAR",
- clip_to_footprints = "NOT_CLIP",
- footprints_may_contain_nodata = "FOOTPRINTS_MAY_CONTAIN_NODATA",
- clip_to_boundary = "CLIP",
- color_correction = "NOT_APPLY",
- allowed_mensuration_capabilities = "Basic",
- default_mensuration_capabilities = "Basic",
- allowed_mosaic_methods = "None",
- default_mosaic_method = "None",
- order_field = "StdTime",
- order_base = "",
- sorting_order = "ASCENDING",
- mosaic_operator = "FIRST",
- blend_width = 10,
- view_point_x = 600,
- view_point_y = 300,
- max_num_per_mosaic = 50,
- cell_size_tolerance = 0.8,
- cell_size = f"{cell_size} {cell_size}",
- metadata_level = "FULL",
- transmission_fields = fields,
- use_time = "ENABLED",
- start_time_field = "StdTime",
- end_time_field = "StdTime",
- time_format = "YYYY", #YYYYMMDD
- geographic_transform = None,
- max_num_of_download_items = 20,
- max_num_of_records_returned = 1000,
- data_source_type = "GENERIC",
- minimum_pixel_contribution = 1,
- processing_templates = "None",
- default_processing_template = "None",
- time_interval = 1,
- time_interval_units = "Years",
- product_definition = "NONE",
- product_band_definitions = None
- )
- arcpy.AddMessage("\tSet Mosaic Dataset Properties: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del fields
-
- arcpy.AddMessage(f"Analyze Mosaic {os.path.basename(mosaic_path)} Dataset")
-
- arcpy.management.AnalyzeMosaicDataset(
- in_mosaic_dataset = mosaic_path,
- where_clause = "",
- checker_keywords = "FOOTPRINT;FUNCTION;RASTER;PATHS;SOURCE_VALIDITY;STALE;PYRAMIDS;STATISTICS;PERFORMANCE;INFORMATION"
- )
- arcpy.AddMessage("\tSet Mosaic Dataset Properties: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.AddMessage(f"Adding Multidimensional Information to {os.path.basename(mosaic_path)} Dataset")
-
- with arcpy.EnvManager(scratchWorkspace = scratch_workspace, workspace = region_gdb):
- arcpy.md.BuildMultidimensionalInfo(
- in_mosaic_dataset = mosaic_path,
- variable_field = "Variable",
- dimension_fields = [["StdTime", "Time Step", "Year"],],
- variable_desc_units = None,
- delete_multidimensional_info = "NO_DELETE_MULTIDIMENSIONAL_INFO"
- )
- arcpy.AddMessage("\tBuild Multidimensional Info: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- #arcpy.management.CalculateStatistics(mosaic_path, 1, 1, [], "OVERWRITE", "")
- #arcpy.AddMessage("\tCalculate Statistics: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- # Copy Raster to CRF
- crf_path = rf"{scratch_folder}\{table_name}\{mosaic_name.replace('_Mosaic', '')}.crf"
-
- arcpy.management.CopyRaster(
- in_raster = mosaic_path,
- out_rasterdataset = crf_path,
- config_keyword = "",
- background_value = None,
- nodata_value = "-3.40282e+38",
- onebit_to_eightbit = "NONE",
- colormap_to_RGB = "NONE",
- pixel_type = "32_BIT_FLOAT",
- scale_pixel_value = "NONE",
- RGB_to_Colormap = "NONE",
- format = "CRF",
- transform = None,
- process_as_multidimensional = "ALL_SLICES",
- build_multidimensional_transpose = "NO_TRANSPOSE"
- )
- arcpy.AddMessage("\tCopy Raster: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.AddMessage(f"Calculate Statistics for {os.path.basename(crf_path)}")
-
- arcpy.management.CalculateStatistics(crf_path, 1, 1, [], "OVERWRITE", "")
- arcpy.AddMessage("\tCalculate Statistics: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del crf_path
- del mosaic_path
-
- # End of business logic for the worker function
- arcpy.AddMessage(f"Processing for: {table_name} complete")
-
- arcpy.management.Delete(rf"{region_gdb}\Datasets")
- arcpy.management.Delete(rf"{region_gdb}\{table_name}_LayerSpeciesYearImageName")
- arcpy.management.Delete(rf"{region_gdb}\{table_name}_Raster_Mask")
-
- # Declared Variables for this function only
- del datasetcode, cell_size, mosaic_name, mosaic_title
- # Basic variables
- del table_name, scratch_folder, project_folder, scratch_workspace
- # Imports
- # Function parameter
- del region_gdb
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def script_tool(project_gdb=""):
- try:
- # Imports
- import dismap_tools
- from create_mosaics_director import preprocessing
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
- ## # Set worker parameters
- ## #table_name = "AI_IDW"
- ## table_name = "HI_IDW"
- ## #table_name = "NBS_IDW"
- ## #table_name = "ENBS_IDW"
-
- table_names = ["HI_IDW", "NBS_IDW"]
-
- preprocessing(project_gdb=project_gdb, table_names=table_names, clear_folder=True)
-
- for table_name in table_names:
- region_gdb = rf"{os.path.dirname(project_gdb)}\Scratch\{table_name}.gdb"
- try:
- pass
- worker(region_gdb=region_gdb)
- except SystemExit:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- del table_name, region_gdb
- del table_names
-
- # Declared Varaiables
- # Imports
- del dismap_tools
- # Function Parameters
- del project_gdb
-
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- hours, rem = divmod(end_time-start_time, 3600)
- minutes, seconds = divmod(rem, 60)
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"End Time: {strftime('%a %b %d %I:%M %p', localtime(end_time))}")
- arcpy.AddMessage(f"Elapsed Time {int(hours):0>2}:{int(minutes):0>2}:{seconds:05.2f} (H:M:S)")
- arcpy.AddMessage(f"{'-' * 80}")
- del hours, rem, minutes, seconds
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-if __name__ == '__main__':
- try:
- project_gdb = arcpy.GetParameterAsText(0)
- if not project_gdb:
- project_gdb = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026\\February 1 2026.gdb")
- else:
- pass
- script_tool(project_gdb)
- arcpy.SetParameterAsText(1, "Result")
- del project_gdb
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_rasters_director.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_rasters_director.py
deleted file mode 100644
index fa3801e..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_rasters_director.py
+++ /dev/null
@@ -1,427 +0,0 @@
-# -*- coding: utf-8 -*-
-#-------------------------------------------------------------------------------
-# Name: create_species_year_image_name_table_director
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 09/03/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-#-------------------------------------------------------------------------------
-import os
-import sys
-import traceback
-
-import arcpy # third-parties second
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- filename = sys.path[0] + os.sep + f"{__file__}"
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def preprocessing(project_gdb="", table_names="", clear_folder=True):
- try:
- import dismap_tools
-
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(1) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- # Set basic arcpy.env variables
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- # Set varaibales
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = rf"{project_folder}\Scratch"
- scratch_workspace = os.path.join(project_folder, "Scratch\\scratch.gdb")
-
- # Clear Scratch Folder
- #ClearScratchFolder = True
- #if ClearScratchFolder:
- if clear_folder:
- dismap_tools.clear_folder(folder=scratch_folder)
- else:
- pass
- #del ClearScratchFolder
- del clear_folder
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
- del project_folder, scratch_workspace
-
- if not table_names:
- table_names = [row[0] for row in arcpy.da.SearchCursor(os.path.join(project_gdb, "Datasets"),
- "TableName",
- where_clause = "TableName LIKE '%_IDW'")]
- else:
- pass
-
- for table_name in table_names:
- arcpy.AddMessage(f"Pre-Processing: {table_name}")
-
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- region_scratch_workspace = os.path.join(scratch_folder, f"{table_name}", "scratch.gdb")
-
- # Create Scratch Workspace for Region
- if not arcpy.Exists(region_scratch_workspace):
- os.makedirs(os.path.join(scratch_folder, table_name))
- if not arcpy.Exists(region_scratch_workspace):
- arcpy.management.CreateFileGDB(os.path.join(scratch_folder, f"{table_name}"), "scratch")
- del region_scratch_workspace
-
- sample_locations = rf"{table_name}_Sample_Locations"
-
- arcpy.AddMessage(f"Creating File GDB: {table_name}")
- arcpy.management.CreateFileGDB(rf"{scratch_folder}", f"{table_name}")
- arcpy.AddMessage("\tCreate File GDB: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
-
- # Process: Make Table View (Make Table View) (management)
- datasets = rf'{project_gdb}\Datasets'
- arcpy.AddMessage(f"\t{os.path.basename(datasets)} has {arcpy.management.GetCount(datasets)[0]} records")
-
- table_name_view = "Dataset Table View"
- arcpy.management.MakeTableView(in_table = datasets,
- out_view = table_name_view,
- where_clause = f"TableName = '{table_name}'"
- )
- arcpy.AddMessage(f"\tThe table {table_name_view} has {arcpy.management.GetCount(table_name_view)[0]} records")
- arcpy.management.CopyRows(table_name_view, rf"{region_gdb}\Datasets")
- arcpy.AddMessage("\tCopy Rows: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- filter_region = [row[0] for row in arcpy.da.SearchCursor(rf"{region_gdb}\Datasets", "FilterRegion")][0].replace("'", "''")
- filter_subregion = [row[0] for row in arcpy.da.SearchCursor(rf"{region_gdb}\Datasets", "FilterSubRegion")][0].replace("'", "''")
-
- arcpy.management.Delete(table_name_view)
- del table_name_view
-
- arcpy.AddMessage(f"Copying: The table {table_name}_LayerSpeciesYearImageName")
- arcpy.management.Copy(rf"{project_gdb}\{table_name}_LayerSpeciesYearImageName", rf"{region_gdb}\{table_name}_LayerSpeciesYearImageName")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- #
- arcpy.AddMessage("Make Feature Layer (Make Feature Layer) (management)")
- # Process: Make Feature Layer (Make Feature Layer) (management)
- idw_lyr = arcpy.management.MakeFeatureLayer( in_features = rf"{project_gdb}\{sample_locations}",
- out_layer = "IDW_Sample_Locations_Layer",
- where_clause = "DistributionProjectName = 'NMFS/Rutgers IDW Interpolation'",
- workspace = "",
- field_info = "OBJECTID OBJECTID VISIBLE NONE;Shape Shape VISIBLE NONE;DatasetCode DatasetCode VISIBLE NONE;Region Region VISIBLE NONE;Season Season VISIBLE NONE;DistributionProjectName DistributionProjectName VISIBLE NONE;SummaryProduct SummaryProduct VISIBLE NONE;SampleID SampleID VISIBLE NONE;Year Year VISIBLE NONE;StdTime StdTime VISIBLE NONE;Species Species VISIBLE NONE;WTCPUE WTCPUE VISIBLE NONE;MapValue MapValue VISIBLE NONE;TransformUnit TransformUnit VISIBLE NONE;CommonName CommonName VISIBLE NONE;SpeciesCommonName SpeciesCommonName VISIBLE NONE;CommonNameSpecies CommonNameSpecies VISIBLE NONE;CoreSpecies CoreSpecies VISIBLE NONE;Stratum Stratum VISIBLE NONE;StratumArea StratumArea VISIBLE NONE;Latitude Latitude VISIBLE NONE;Longitude Longitude VISIBLE NONE;Depth Depth VISIBLE NONE"
- )
-
- arcpy.AddMessage("Copy Features (Copy Features) (management)")
- arcpy.management.CopyFeatures(idw_lyr, rf"{region_gdb}\{sample_locations}")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- #
- arcpy.AddMessage("Copy")
- arcpy.management.Copy(rf"{project_gdb}\{table_name}_Raster_Mask", rf"{region_gdb}\{table_name}_Raster_Mask")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.management.Delete(idw_lyr)
- del idw_lyr
-
- del sample_locations
- del region_gdb, table_name
- del datasets, filter_region, filter_subregion
- # Declared Variables
- del scratch_folder
- # Imports
- del dismap_tools
- # Function Parameters
- del project_gdb, table_names
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def director(project_gdb="", Sequential=True, table_names=[]):
- try:
- from create_rasters_worker import worker
-
- # Test if passed workspace exists, if not sys.exit()
- if not arcpy.Exists(rf"{project_gdb}"):
- arcpy.AddError(f"{os.path.basename(project_gdb)} is missing!!")
- arcpy.AddError(arcpy.GetMessages(2))
- sys.exit()
- #sys.exit()
- else:
- pass
-
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(1) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = os.path.join(project_folder, "Scratch")
- del project_folder
-
- preprocessing(project_gdb=project_gdb, table_names=table_names, clear_folder=True)
-
- # Sequential Processing
- if Sequential:
- arcpy.AddMessage("Sequential Processing")
- for i in range(0, len(table_names)):
- arcpy.AddMessage(f"Processing: {table_names[i]}")
- table_name = table_names[i]
- region_gdb = rf"{os.path.dirname(project_gdb)}\Scratch\{table_name}.gdb"
- try:
- pass
- worker(region_gdb=region_gdb)
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- del region_gdb, table_name
- del i
- else:
- pass
-
- # Non-Sequential Processing
- if not Sequential:
- import multiprocessing
- from time import time, localtime, strftime, sleep, gmtime
- arcpy.AddMessage("Start multiprocessing using the ArcGIS Pro pythonw.exe.")
- #Set multiprocessing exe in case we're running as an embedded process, i.e ArcGIS
- #get_install_path() uses a registry query to figure out 64bit python exe if available
- multiprocessing.set_executable(os.path.join(sys.exec_prefix, 'pythonw.exe'))
- # Get CPU count and then take 2 away for other process
- _processes = multiprocessing.cpu_count() - 2
- _processes = _processes if len(table_names) >= _processes else len(table_names)
- arcpy.AddMessage(f"Creating the multiprocessing Pool with {_processes} processes")
- #Create a pool of workers, keep one cpu free for surfing the net.
- #Let each worker process only handle 1 task before being restarted (in case of nasty memory leaks)
- with multiprocessing.Pool(processes=_processes, maxtasksperchild=1) as pool:
- arcpy.AddMessage("\tPrepare arguments for processing")
- # Use apply_async so we can handle exceptions gracefully
- jobs={}
- for i in range(0, len(table_names)):
- try:
- arcpy.AddMessage(f"Processing: {table_names[i]}")
- table_name = table_names[i]
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- jobs[table_name] = pool.apply_async(worker, [region_gdb])
- del table_name, region_gdb
- except: # noqa: E722
- pool.terminate()
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- del i
- all_finished = False
- # Set a start time so that we can see how log things take
- start_time = time()
- result_completed = {}
- while True:
- all_finished = True
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- arcpy.AddMessage(f"\nStart Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage("Have the workers finished?")
- finish_time = strftime('%a %b %d %I:%M %p', localtime())
- time_elapsed = u"Elapsed Time {0} (H:M:S)".format(strftime("%H:%M:%S", gmtime(elapse_time)))
- arcpy.AddMessage(f"It's {finish_time}\n{time_elapsed}")
- finish_time = f"{finish_time}.\n\t{time_elapsed}"
- del time_elapsed
- for table_name, result in jobs.items():
- if result.ready():
- if table_name not in result_completed:
- result_completed[table_name] = finish_time
- try:
- # wait for and get the result from the task
- result.get()
- except: # noqa: E722
- pool.terminate()
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- pass
- arcpy.AddMessage(f"Process {table_name}\n\tFinished on {result_completed[table_name]}")
- else:
- all_finished = False
- arcpy.AddMessage(f"Process {table_name} is running. . .")
- del table_name, result
- del elapse_time, end_time, finish_time
- if all_finished:
- break
- sleep(_processes * 7.5)
- del result_completed
- del start_time
- del all_finished
- arcpy.AddMessage("\tClose the process pool")
- # close the process pool
- pool.close()
- # wait for all tasks to complete and processes to close
- arcpy.AddMessage("\tWait for all tasks to complete and processes to close")
- pool.join()
- # Just in case
- pool.terminate()
- del pool
- del jobs
- del _processes
- del time, multiprocessing, localtime, strftime, sleep, gmtime
- arcpy.AddMessage("\tDone with multiprocessing Pool")
-
- # No Post-Processing
-
- arcpy.AddMessage(f"Compacting the {os.path.basename(project_gdb)} GDB")
- arcpy.management.Compact(project_gdb)
- arcpy.AddMessage("\t"+arcpy.GetMessages(0).replace("\n", "\n\t"))
-
- # Declared Variables assigned in function
- del scratch_folder
-
- # Imports
- del worker
-
- # Function Parameters
- del project_gdb, Sequential, table_names
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def script_tool(project_gdb=""):
- try:
- # Imports
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
- try:
- pass
- # table_names = ["AI_IDW", "EBS_IDW", "ENBS_IDW", "GMEX_IDW", "GOA_IDW", "HI_IDW", "NBS_IDW", "NEUS_FAL_IDW", "NEUS_SPR_IDW", "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW", "WC_ANN_IDW", "WC_TRI_IDW",]
-
- Test = False
- if Test:
- director(project_gdb=project_gdb, Sequential=True, table_names=["HI_IDW", "AI_IDW",])
-
- elif not Test:
- #
- #director(project_gdb=project_gdb, Sequential=False, table_names = ["AI_IDW", "EBS_IDW", "ENBS_IDW", "GMEX_IDW", "GOA_IDW", "HI_IDW", "NBS_IDW", "NEUS_FAL_IDW", "NEUS_SPR_IDW", "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW", "WC_ANN_IDW", "WC_TRI_IDW",])
- #director(project_gdb=project_gdb, Sequential=False, table_names = ["EBS_IDW", "ENBS_IDW", "GMEX_IDW", "GOA_IDW", "NBS_IDW", ])
- #director(project_gdb=project_gdb, Sequential=False, table_names = ["HI_IDW",])
- #director(project_gdb=project_gdb, Sequential=False, table_names = [ "WC_ANN_IDW", "WC_TRI_IDW",])
- #director(project_gdb=project_gdb, Sequential=False, table_names = ["SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW",])
- #director(project_gdb=project_gdb, Sequential=False, table_names = ["NEUS_FAL_IDW", "NEUS_SPR_IDW", ])
- director(project_gdb=project_gdb, Sequential=False, table_names = ["EBS_IDW", "ENBS_IDW", "GMEX_IDW", "GOA_IDW", "NBS_IDW", "NEUS_FAL_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names = ["NEUS_SPR_IDW", "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW", "WC_ANN_IDW", "WC_TRI_IDW",])
- #director(project_gdb=project_gdb, Sequential=False, table_names=[])
- else:
- pass
- del Test
-
- except: # noqa: E722
- pass
- #arcpy.AddError(arcpy.GetMessages(2))
- #traceback.print_exc()
- #sys.exit()
-
- # Declared Varaiables
- # Imports
-
- # Function Parameters
- del project_gdb
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- hours, rem = divmod(end_time-start_time, 3600)
- minutes, seconds = divmod(rem, 60)
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"End Time: {strftime('%a %b %d %I:%M %p', localtime(end_time))}")
- arcpy.AddMessage(f"Elapsed Time {int(hours):0>2}:{int(minutes):0>2}:{seconds:05.2f} (H:M:S)")
- arcpy.AddMessage(f"{'-' * 80}")
- del hours, rem, minutes, seconds
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-if __name__ == '__main__':
- try:
- project_gdb = arcpy.GetParameterAsText(0)
- if not project_gdb:
- project_gdb = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026\\February 1 2026.gdb")
- else:
- pass
- script_tool(project_gdb)
- arcpy.SetParameterAsText(1, "Result")
- del project_gdb
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_rasters_worker.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_rasters_worker.py
deleted file mode 100644
index f04c6a2..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_rasters_worker.py
+++ /dev/null
@@ -1,489 +0,0 @@
-# -*- coding: utf-8 -*-
-#-------------------------------------------------------------------------------
-# Name: create_species_year_image_name_table_worker
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 09/03/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-#-------------------------------------------------------------------------------
-import os
-import sys
-import traceback
-
-import arcpy # third-parties second
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- #filename = sys.path[0] + os.sep + f"{os.path.basename(__file__)}"
- filename = os.path.basename(__file__)
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def print_table(table=""):
- try:
- """ Print first 5 rows of a table """
- desc = arcpy.da.Describe(table)
- fields = [f.name for f in desc["fields"] if f.type == "String"]
- #Get OID field
- oid = desc["OIDFieldName"]
- # Use SQL TOP to sort field values
- arcpy.AddMessage(f"{', '.join(fields)}")
- for row in arcpy.da.SearchCursor(table, fields, f"{oid} <= 5"):
- arcpy.AddMessage(row)
- del row
- del desc, fields, oid
- del table
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def worker(region_gdb=""):
- try:
- # Test if passed workspace exists, if not sys.exit()
- if not arcpy.Exists(rf"{region_gdb}"):
- sys.exit()(f"{os.path.basename(region_gdb)} is missing!!")
-
- # Import the dismap module to access tools
- #import dev_dismap_tools
- #importlib.reload(dev_dismap_tools)
-
- # Import the worker module to process data
- # N/A
-
- # Set History and Metadata logs, set serverity and message level
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- # Set basic workkpace variables
- table_name = os.path.basename(region_gdb).replace(".gdb","")
- scratch_folder = os.path.dirname(region_gdb)
- project_folder = os.path.dirname(scratch_folder)
- scratch_workspace = rf"{scratch_folder}\{table_name}\scratch.gdb"
-
- arcpy.AddMessage(f"Table Name: {table_name}\nProject Folder: {os.path.basename(project_folder)}\nScratch Folder: {os.path.basename(scratch_folder)}\n")
-
- # Set basic workkpace variables
- arcpy.env.workspace = region_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- #arcpy.env.compression = "LZ77"
- #arcpy.env.geographicTransformations = "WGS_1984_(ITRF08)_To_NAD_1983_2011"
- arcpy.env.pyramid = "PYRAMIDS -1 BILINEAR LZ77 NO_SKIP"
- arcpy.env.resamplingMethod = "BILINEAR"
- arcpy.env.rasterStatistics = "STATISTICS 1 1"
- #arcpy.env.buildStatsAndRATForTempRaster = True
-
- # DatasetCode, CSVFile, TransformUnit, TableName, GeographicArea, CellSize,
- # PointFeatureType, FeatureClassName, Region, Season, DateCode, Status,
- # DistributionProjectCode, DistributionProjectName, SummaryProduct,
- # FilterRegion, FilterSubRegion, FeatureServiceName, FeatureServiceTitle,
- # MosaicName, MosaicTitle, ImageServiceName, ImageServiceTitle
-
- # Get values for table_name from Datasets table
- fields = ["TableName", "GeographicArea", "DatasetCode", "CellSize", "Region", "Season", "DistributionProjectCode", "SummaryProduct"]
- region_list = [row for row in arcpy.da.SearchCursor(rf"{region_gdb}\Datasets", fields, where_clause = f"TableName = '{table_name}'")][0]
- del fields
-
- # Assigning variables from items in the chosen table list
- # ['AI_IDW', 'AI_IDW_Region', 'AI', 'Aleutian Islands', None, 'IDW']
- table_name = region_list[0]
- #geographic_area = region_list[1]
- datasetcode = region_list[2]
- cell_size = region_list[3] if not isinstance(region_list[3], type("str")) else int(region_list[3])
- region = region_list[4]
- season = region_list[5]
- distri_code = region_list[6]
- summary_product = region_list[7]
- del region_list
-
- #print(cell_size)
- #print(type(cell_size))
- #sys.exit()
- arcpy.env.cellSize = cell_size
-
- # Start of business logic for the worker function
- arcpy.AddMessage(f"Processing: {table_name}")
-
- # Business logic for the worker function
-
- #geographic_area_sr = rf"{project_folder}\Dataset_Shapefiles\{table_name}\{geographic_area}.prj"
- # Set the output coordinate system to what is needed for the
- # DisMAP project
- #psr = arcpy.SpatialReference(geographic_area_sr)
- #arcpy.env.outputCoordinateSystem = psr
- #del geographic_area_sr, geographic_area, psr
-
- region_raster_mask = rf"{region_gdb}\{table_name}_Raster_Mask"
- layerspeciesyearimagename = rf"{region_gdb}\{table_name}_LayerSpeciesYearImageName"
-
- arcpy.env.outputCoordinateSystem = arcpy.Describe(region_raster_mask).spatialReference
-
- output_rasters = {}
-
- # ##---> This block creates the folder structure in the Images folder
- #fields = "DatasetCode;Region;Season;Species;CommonName;SpeciesCommonName;CoreSpecies;Year;StdTime;Variable;Value;Dimensions"
- fields = ['ImageName', 'Variable', 'Species', 'Year']
-
- #with arcpy.da.SearchCursor(layerspeciesyearimagename, fields, where_clause = f"TableName = '{table_name}'") as cursor:
- with arcpy.da.SearchCursor(layerspeciesyearimagename, fields) as cursor:
- for row in cursor:
- image_name, variable, species, year = row[0], row[1], row[2], row[3]
- #if variable not in variables: variables.append(variable)
- #arcpy.AddMessage(f"{variable}, {image_name}, {species}, {year}")
- #variable = f"_{variable}" if "Species Richness" in variable else variable
- if "Species Richness" not in variable:
- output_raster_path = rf"{project_folder}\Images\{table_name}\{variable}\{image_name}.tif"
- #arcpy.AddMessage(output_raster_path)
- output_rasters[image_name] = [image_name, variable, species, year, output_raster_path]
- image_folder = os.path.dirname(output_raster_path)
- #arcpy.AddMessage(image_folder)
- if not os.path.exists(image_folder):
- os.makedirs(image_folder)
- #arcpy.AddMessage(output_raster_path)
- #arcpy.AddMessage(os.path.dirname(output_raster_path))
- #arcpy.AddMessage(image_folder)
- del image_folder
- del output_raster_path
-
- del row, image_name, variable, species, year
- del cursor
-
- del fields
-
- del layerspeciesyearimagename
-
- arcpy.AddMessage(f'Generating {table_name} Biomass Rasters')
-
- sample_locations = rf"{table_name}_Sample_Locations"
-
- arcpy.AddMessage(f"\tMake Feature Layer for {sample_locations}")
-
- # Prepare the points layer
- sample_locations_path = rf"{region_gdb}\{sample_locations}"
- sample_locations_path_layer = arcpy.management.MakeFeatureLayer(sample_locations_path, "Region Sample Locations Layer")
- del sample_locations_path
-
- if summary_product == "Yes":
- # Add the YearWeights feild
- fields = [f.name for f in arcpy.ListFields(sample_locations_path_layer) if f.type not in ['Geometry', 'OID']]
- if "YearWeights" not in fields:
- # Add the YearWeights field to the Dataset. This is used for the IDW modeling later
- arcpy.management.AddField(sample_locations_path_layer, "YearWeights", "SHORT", field_alias = "Year Weights")
- del fields
-
- getcount = arcpy.management.GetCount(sample_locations_path_layer)[0]
- arcpy.AddMessage(f'\t{sample_locations} has {getcount} records')
- del getcount
-
- for output_raster in output_rasters:
- image_name, variable, species, year, output_raster_path = output_rasters[output_raster]
-
- #if not arcpy.Exists(output_raster_path):
-
- msg = f"\n\t\tImage Name: {output_raster}\n"
- msg = msg + f"\t\t\tVariable: {variable}\n"
- msg = msg + f"\t\t\tSpecies: {species}\n"
- msg = msg + f"\t\t\tYear: {year}\n"
- msg = msg + f"\t\t\tOutput Raster: {os.path.basename(output_raster_path)}\n"
- arcpy.AddMessage(msg)
- del msg
-
- arcpy.AddMessage('\t\t\tSelect Layer by Attribute: "CLEAR_SELECTION"')
-
- arcpy.management.SelectLayerByAttribute( sample_locations_path_layer, "CLEAR_SELECTION" )
-
- arcpy.AddMessage(f"\t\t\tSelect Layer by Attribute: Species = '{species}' AND Year = {year}")
-
- # Select for species and year
- #print(sample_locations_path_layer)
- #print(f"Species = '{species}' AND Year = {year}")
- arcpy.management.SelectLayerByAttribute( in_layer_or_view = sample_locations_path_layer,
- selection_type = "NEW_SELECTION",
- where_clause = f"Species = '{species}' And Year = '{year}'",
- invert_where_clause=None
- )
-
- # Get the count of records for selected species
- getcount = arcpy.management.GetCount(sample_locations_path_layer)[0]
- arcpy.AddMessage(f"\t\t\t{sample_locations} has {getcount} records for {species} and year {year}")
- del getcount
-
- arcpy.AddMessage(f"\t\t\tCreating Raster File {output_raster}.tif for {species} and {year}")
-
- #if summary_product == "Yes":
-
- arcpy.AddMessage("\t\t\tProcessing IDW")
-
- # Select weighted years
- arcpy.management.SelectLayerByAttribute( sample_locations_path_layer,
- "NEW_SELECTION",
- f"Species = '{species}' AND Year >= ({year-2}) AND Year <= ({year+2})"
- )
-
- # Get the count of records for selected species
- getcount = arcpy.management.GetCount(sample_locations_path_layer)[0]
-
- arcpy.AddMessage(f"\t\t\t\t{sample_locations_path_layer} has {getcount} records for {species} and from years {year-2} to {year+2}")
- del getcount
-
- # Calculate YearWeights=3-(abs(Tc-Ti))
- arcpy.management.CalculateField(in_table=sample_locations_path_layer, field="YearWeights", expression=f"3 - (abs({int(year)} - !Year!))", expression_type="PYTHON", code_block="")
-
- # we need to set the mask and extent of the environment, or the raster and items may not come out correctly.
- arcpy.env.extent = arcpy.Describe(region_raster_mask).extent
- arcpy.env.mask = region_raster_mask
- arcpy.env.snapRaster = region_raster_mask
-
- # Set variables for search neighborhood
- majSemiaxis = int(cell_size) * 1000
- minSemiaxis = int(cell_size) * 1000
- angle = 0
- maxNeighbors = 15
- minNeighbors = 10
- sectorType = "ONE_SECTOR"
- searchNeighbourhood = arcpy.SearchNeighborhoodStandard(majSemiaxis, minSemiaxis, angle, maxNeighbors, minNeighbors, sectorType)
- #print(majSemiaxis, minSemiaxis, angle, maxNeighbors, minNeighbors, sectorType)
-
- del majSemiaxis, minSemiaxis, angle
- del maxNeighbors, minNeighbors, sectorType
-
- # Check out the ArcGIS Geostatistical Analyst extension license
- arcpy.CheckOutExtension("GeoStats")
-
- #tmp_raster = os.path.join(ScratchFolder, f"{output_raster}.tif")
- tmp_raster = f"memory\\{output_raster}"
-
- #print(sample_locations_path_layer)
- #print(tmp_raster)
- #print(cell_size)
- #print(searchNeighbourhood)
- #sys.exit()
-
- # Execute IDW using the selected selected species, years, and MapValue
- arcpy.ga.IDW(in_features = sample_locations_path_layer,
- z_field = 'MapValue',
- out_ga_layer = '',
- out_raster = tmp_raster,
- cell_size = cell_size,
- power = 2,
- search_neighborhood = searchNeighbourhood,
- weight_field = "YearWeights")
-
- del searchNeighbourhood
-
- arcpy.ClearEnvironment("extent")
- arcpy.ClearEnvironment("mask")
- arcpy.ClearEnvironment("snapRaster")
-
- # Check In GeoStats Extension
- arcpy.CheckInExtension("GeoStats")
-
- # Execute Power to convert the raster back to WTCPUE from WTCPUECubeRoot
- out_cube = arcpy.sa.Power(tmp_raster, 3)
- #out_cube.save(tmp_raster_power)
- out_cube.save(output_raster_path)
- del out_cube
-
- if tmp_raster:
- arcpy.management.Delete(tmp_raster)
- del tmp_raster
-
- # Reset the YearWeights to None
- arcpy.management.CalculateField(in_table=sample_locations_path_layer, field="YearWeights", expression="None", expression_type="PYTHON", code_block="")
-
- # Clear selection
- arcpy.management.SelectLayerByAttribute( sample_locations_path_layer, "CLEAR_SELECTION" )
-
- from arcpy import metadata as md
- tif_md = md.Metadata(output_raster_path)
- tif_md.title = image_name.replace("_", " ")
- tif_md.save()
- tif_md.synchronize("ALWAYS")
- tif_md.save()
- del md, tif_md
-
- arcpy.management.BuildPyramids(
- in_raster_dataset = output_raster_path,
- pyramid_level = -1,
- SKIP_FIRST = "NONE",
- resample_technique = "BILINEAR",
- compression_type = "DEFAULT",
- compression_quality = 75,
- skip_existing = "OVERWRITE"
- )
-
- # Clean up
- del image_name, variable, species, year, output_raster_path, output_raster
-
- del sample_locations
- # Delete sample_locations_path_layer
- arcpy.management.Delete(sample_locations_path_layer)
- del sample_locations_path_layer
-
- # End of business logic for the worker function
- arcpy.AddMessage(f"Processing for: {table_name} complete")
-
- # Clean up
- del output_rasters
- del region_raster_mask
-
- # Declared Variables for this function only
- del region, season, distri_code, summary_product
- del datasetcode, cell_size
- # Basic variables
- del table_name, scratch_folder, project_folder, scratch_workspace
- # Imports
- #del dismap
- # Function parameter
- del region_gdb
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def script_tool(project_gdb=""):
- try:
- # Imports
- import dismap_tools
- from create_rasters_director import preprocessing
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
- # Clear Scratch Folder
- ClearScratchFolder = False
- if ClearScratchFolder:
- dismap_tools.clear_folder(folder=rf"{os.path.dirname(project_gdb)}\Scratch")
- else:
- pass
- del ClearScratchFolder
-
- ## # Set worker parameters
- ## #table_name = "AI_IDW"
- ## table_name = "HI_IDW"
- ## #table_name = "NBS_IDW"
- ## #table_name = "ENBS_IDW"
-
- table_names = ["HI_IDW"]
-
- preprocessing(project_gdb=project_gdb, table_names=table_names, clear_folder=True)
-
- for table_name in table_names:
- region_gdb = rf"{os.path.dirname(project_gdb)}\Scratch\{table_name}.gdb"
- try:
- pass
- worker(region_gdb=region_gdb)
- except SystemExit:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- sys.exit()
-
- del table_name, region_gdb
-
- del table_names
-
- # Declared Varaiables
- # Imports
- del dismap_tools, preprocessing
- # Function Parameters
- del project_gdb
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- hours, rem = divmod(end_time-start_time, 3600)
- minutes, seconds = divmod(rem, 60)
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"End Time: {strftime('%a %b %d %I:%M %p', localtime(end_time))}")
- arcpy.AddMessage(f"Elapsed Time {int(hours):0>2}:{int(minutes):0>2}:{seconds:05.2f} (H:M:S)")
- arcpy.AddMessage(f"{'-' * 80}")
- del hours, rem, minutes, seconds
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-if __name__ == '__main__':
- try:
- project_gdb = arcpy.GetParameterAsText(0)
- if not project_gdb:
- project_gdb = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026\\February 1 2026.gdb")
- else:
- pass
- script_tool(project_gdb)
- arcpy.SetParameterAsText(1, "Result")
- del project_gdb
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_region_bathymetry_director.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_region_bathymetry_director.py
deleted file mode 100644
index d3a6560..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_region_bathymetry_director.py
+++ /dev/null
@@ -1,465 +0,0 @@
-# -*- coding: utf-8 -*-
-#-------------------------------------------------------------------------------
-# Name: module1
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 05/03/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-#-------------------------------------------------------------------------------
-import os
-import sys # built-ins first
-import traceback
-
-import arcpy # third-parties second
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- filename = sys.path[0] + os.sep + "test.py"
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def preprocessing(project_gdb="", table_names="", clear_folder=True):
- try:
- import dismap_tools
-
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(1) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- # Set basic arcpy.env variables
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- # Set varaibales
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = os.path.join(project_folder, "Scratch")
- scratch_workspace = os.path.join(project_folder, "Scratch\\scratch.gdb")
- csv_data_folder = os.path.join(project_folder, "CSV_Data")
- base_project_bathymetry_gdb = os.path.join(os.path.dirname(project_folder), "Bathymetry\\Bathymetry.gdb")
-
-## # Clear Scratch Folder
-## #ClearScratchFolder = True
-## #if ClearScratchFolder:
-## if clear_folder:
-## dismap_tools.clear_folder(folder = scratch_folder)
-## else:
-## pass
-## #del ClearScratchFolder
-## del clear_folder
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
- del project_folder, scratch_workspace
-
- if not table_names:
- table_names = [row[0] for row in arcpy.da.SearchCursor(os.path.join(project_gdb, "Datasets"), "TableName", where_clause = "TableName LIKE '%_IDW'")]
- else:
- pass
-
- for table_name in table_names:
- arcpy.AddMessage(f"Pre-Processing: {table_name}")
-
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- region_scratch_workspace = os.path.join(scratch_folder, f"{table_name}", "scratch.gdb")
-
- # Create Scratch Workspace for Region
- if not arcpy.Exists(region_scratch_workspace):
- os.makedirs(os.path.join(scratch_folder, table_name))
- if not arcpy.Exists(region_scratch_workspace):
- arcpy.AddMessage(f"Create File GDB: '{table_name}'")
- arcpy.management.CreateFileGDB(os.path.join(scratch_folder, table_name), "scratch")
- arcpy.AddMessage("\tCreate File GDB: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del region_scratch_workspace
- # # # CreateFileGDB
- arcpy.AddMessage(f"Creating File GDB: '{table_name}'")
- arcpy.management.CreateFileGDB(scratch_folder, table_name)
- arcpy.AddMessage("\tCreate File GDB: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- # # # CreateFileGDB
-
- # # # Datasets
- # Process: Make Table View (Make Table View) (management)
- datasets = rf'{project_gdb}\Datasets'
- arcpy.AddMessage(f"'{os.path.basename(datasets)}' has {arcpy.management.GetCount(datasets)[0]} records")
- arcpy.management.Copy(datasets, os.path.join(region_gdb, "Datasets"))
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del datasets
- # # # Datasets
-
- # # # Fishnet
- region_fishnet = os.path.join(project_gdb, f"{table_name}_Fishnet")
- arcpy.AddMessage(f"The table '{table_name}_Fishnet' has {arcpy.management.GetCount(region_fishnet)[0]} records")
- arcpy.management.Copy(region_fishnet, os.path.join(region_gdb, f"{table_name}_Fishnet"))
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del region_fishnet
- # # # Fishnet
-
- # # # Raster_Mask
- region_raster_mask = os.path.join(project_gdb, f"{table_name}_Raster_Mask")
- arcpy.AddMessage(f"Copy Raster Mask for '{table_name}'")
- #arcpy.management.Copy(os.path.join(project_gdb, f"{table_name}_Raster_Mask"), os.path.join(region_gdb, f"{table_name}_Raster_Mask"))
- arcpy.management.CopyRaster(region_raster_mask, os.path.join(region_gdb, f"{table_name}_Raster_Mask"))
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del region_raster_mask
- # # # Raster_Mask
-
- # # # Bathymetry
- base_fishnet_bathymetry = os.path.join(base_project_bathymetry_gdb, f"{table_name}_Bathymetry")
- arcpy.AddMessage(f"Copy Bathymetry for '{table_name}'")
- #arcpy.management.Copy(os.path.join(project_bathymetry_gdb, f"{table_name}_Bathymetry"), os.path.join(region_gdb, f"{table_name}_Fishnet_Bathymetry"))
- arcpy.management.CopyRaster(base_fishnet_bathymetry, os.path.join(region_gdb, f"{table_name}_Fishnet_Bathymetry"))
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del base_fishnet_bathymetry
- # # # Bathymetry
-
- # Declared Variables
- del table_name
-
- # Declared Variables
- del scratch_folder, region_gdb
- del csv_data_folder, base_project_bathymetry_gdb
- # Imports
- del dismap_tools
- # Function Parameters
- del project_gdb, table_names
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def director(project_gdb="", Sequential=True, table_names=[]):
- try:
- # Imports
- import dismap_tools
- from create_region_bathymetry_worker import worker
-
- # Test if passed workspace exists, if not sys.exit()
- if not arcpy.Exists(project_gdb):
- arcpy.AddError(f"{os.path.basename(project_gdb)} is missing!!")
- arcpy.AddError(arcpy.GetMessages(2))
- sys.exit()
- else:
- pass
-
- # Set History and Metadata logs, set serverity and message level
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = rf"{os.path.dirname(project_gdb)}\Scratch"
- scratch_workspace = rf"{os.path.dirname(project_gdb)}\Scratch\scratch.gdb"
- csv_data_folder = rf"{os.path.dirname(project_gdb)}\CSV_Data"
- #project_bathymetry_gdb = rf"{os.path.dirname(project_gdb)}\Bathymetry\Bathymetry.gdb"
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
-
- preprocessing(project_gdb=project_gdb, table_names=table_names, clear_folder=True)
-
- del project_folder, scratch_workspace
-
- # Sequential Processing
- if Sequential:
- arcpy.AddMessage("Sequential Processing")
- for i in range(0, len(table_names)):
- arcpy.AddMessage(f"Processing: {table_names[i]}")
- table_name = table_names[i]
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- try:
- pass
- worker(region_gdb=region_gdb)
- except: # noqa: E722
- traceback.print_exc()
- del region_gdb, table_name
- del i
- else:
- pass
-
- # Non-Sequential Processing
- if not Sequential:
- import multiprocessing
- from time import time, localtime, strftime, sleep, gmtime
- arcpy.AddMessage("Sequential Processing")
- #Set multiprocessing exe in case we're running as an embedded process, i.e ArcGIS
- #get_install_path() uses a registry query to figure out 64bit python exe if available
- multiprocessing.set_executable(os.path.join(sys.exec_prefix, 'pythonw.exe'))
- # Get CPU count and then take 2 away for other process
- _processes = multiprocessing.cpu_count() - 2
- _processes = _processes if len(table_names) >= _processes else len(table_names)
- arcpy.AddMessage(f"Creating the multiprocessing Pool with {_processes} processes")
- #Create a pool of workers, keep one cpu free for surfing the net.
- #Let each worker process only handle 1 task before being restarted (in case of nasty memory leaks)
- with multiprocessing.Pool(processes=_processes, maxtasksperchild=1) as pool:
- arcpy.AddMessage("\tPrepare arguments for processing")
- # Use apply_async so we can handle exceptions gracefully
- jobs={}
- for i in range(0, len(table_names)):
- try:
- arcpy.AddMessage(f"Processing: {table_names[i]}")
- table_name = table_names[i]
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- jobs[table_name] = pool.apply_async(worker, [region_gdb])
- del table_name, region_gdb
- except: # noqa: E722
- pool.terminate()
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- del i
- all_finished = False
- # Set a start time so that we can see how log things take
- start_time = time()
- result_completed = {}
- while True:
- all_finished = True
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- arcpy.AddMessage(f"\nStart Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage("Have the workers finished?")
- finish_time = strftime('%a %b %d %I:%M %p', localtime())
- time_elapsed = u"Elapsed Time {0} (H:M:S)".format(strftime("%H:%M:%S", gmtime(elapse_time)))
- arcpy.AddMessage(f"It's {finish_time}\n{time_elapsed}")
- finish_time = f"{finish_time}.\n\t{time_elapsed}"
- del time_elapsed
- for table_name, result in jobs.items():
- if result.ready():
- if table_name not in result_completed:
- result_completed[table_name] = finish_time
- try:
- # wait for and get the result from the task
- result.get()
- except SystemExit:
- pool.terminate()
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- pool.terminate()
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- pass
- arcpy.AddMessage(f"Process {table_name}\n\tFinished on {result_completed[table_name]}")
- else:
- all_finished = False
- arcpy.AddMessage(f"Process {table_name} is running. . .")
- del table_name, result
- del elapse_time, end_time, finish_time
- if all_finished:
- break
- sleep(_processes * 7.5)
- del result_completed
- del start_time
- del all_finished
- arcpy.AddMessage("\tClose the process pool")
- # close the process pool
- pool.close()
- # wait for all tasks to complete and processes to close
- arcpy.AddMessage("\tWait for all tasks to complete and processes to close")
- pool.join()
- # Just in case
- pool.terminate()
- del pool
- del jobs
- del _processes
- del time, multiprocessing, localtime, strftime, sleep, gmtime
-
- arcpy.AddMessage("\tDone with multiprocessing Pool")
-
- # Post-Processing
- arcpy.AddMessage("Post-Processing Begins")
- arcpy.AddMessage("Processing Results")
-
- datasets = list()
-
- walk = arcpy.da.Walk(scratch_folder, datatype="RasterDataset", type=[])
- for dirpath, dirnames, filenames in walk:
- for filename in filenames:
- datasets.append(os.path.join(dirpath, filename))
- del filename
- del dirpath, dirnames, filenames
- del walk
-
- for dataset in datasets:
- dataset_short_path = f"..{'/'.join(__file__.split(os.sep)[-4:])}"
- #arcpy.AddMessage(fc_short_path)
- dataset_name = os.path.basename(dataset)
- region_gdb = os.path.dirname(dataset)
- arcpy.AddMessage(f"\tDataset: '{dataset_name}'")
- arcpy.AddMessage(f"\t\tPath: '{dataset_short_path}'")
- arcpy.AddMessage(f"\t\tRegion GDB: '{os.path.basename(region_gdb)}'")
-
-## if arcpy.Exists(rf"{project_gdb}\{dataset_name}"):
-## arcpy.management.Delete(rf"{project_gdb}\{dataset_name}")
-## else:
-## pass
-
- arcpy.management.CopyRaster(dataset, rf"{project_gdb}\{dataset_name}")
- arcpy.AddMessage("\tCopy: {0} {1}\n".format(f"{dataset_name}", arcpy.GetMessages(0).replace("\n", '\n\t')))
-
- desc = arcpy.da.Describe(dataset)
- if desc["dataType"] in ["FeatureClass", "Table", "MosaicDataset"]:
- dismap_tools.alter_fields(csv_data_folder, rf"{project_gdb}\{dataset_name}")
- del desc
-
- del region_gdb, dataset_name, dataset_short_path, dataset
-
- del datasets
-
- arcpy.AddMessage(f"Compacting the {os.path.basename(project_gdb)} GDB")
- arcpy.management.Compact(project_gdb)
- arcpy.AddMessage("\t"+arcpy.GetMessages(0).replace("\n", "\n\t"))
-
- # Declared Variables
- del csv_data_folder, scratch_folder
- # Imports
- del dismap_tools, worker
- # Function Parameters
- del project_gdb, Sequential, table_names
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def script_tool(project_gdb=""):
- try:
- # Imports
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: ..{'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
-## # Clear Scratch Folder
-## ClearScratchFolder = False
-## if ClearScratchFolder:
-## import dismap_tools
-## dismap_tools.clear_folder(folder=scratch_folder)
-## del dismap_tools
-## else:
-## pass
-## del ClearScratchFolder
-
-## tbn = ["AI_IDW", "EBS_IDW", "ENBS_IDW", "GMEX_IDW", "GOA_IDW", "HI_IDW", "NBS_IDW", "NEUS_FAL_IDW", "NEUS_SPR_IDW", "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW", "WC_ANN_IDW", "WC_TRI_IDW",]
-## preprocessing(project_gdb=project_gdb, table_names=tbn, clear_folder=True)
-## del tbn
-
- try:
- # "AI_IDW", "EBS_IDW", "ENBS_IDW", "GMEX_IDW", "GOA_IDW", "HI_IDW", "NBS_IDW", "NEUS_FAL_IDW", "NEUS_SPR_IDW",
- # "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW", "WC_ANN_IDW", "WC_TRI_IDW",
-
- Test = False
- if Test:
- director(project_gdb=project_gdb, Sequential=True, table_names=["HI_IDW"])
- else:
- director(project_gdb=project_gdb, Sequential=False, table_names=["NBS_IDW", "ENBS_IDW", "HI_IDW", "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["WC_TRI_IDW", "GMEX_IDW", "AI_IDW", "GOA_IDW", "WC_ANN_IDW", "NEUS_FAL_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["NEUS_SPR_IDW", "EBS_IDW"])
- del Test
-
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
-
- # Declared Varaiables
- # Imports
-
- # Function Parameters
- del project_gdb
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- hours, rem = divmod(end_time-start_time, 3600)
- minutes, seconds = divmod(rem, 60)
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"End Time: {strftime('%a %b %d %I:%M %p', localtime(end_time))}")
- arcpy.AddMessage(f"Elapsed Time {int(hours):0>2}:{int(minutes):0>2}:{seconds:05.2f} (H:M:S)")
- arcpy.AddMessage(f"{'-' * 80}")
- del hours, rem, minutes, seconds
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-if __name__ == '__main__':
- try:
- project_gdb = arcpy.GetParameterAsText(0)
- if not project_gdb:
- project_gdb = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026\\February 1 2026.gdb")
- else:
- pass
- script_tool(project_gdb)
- arcpy.SetParameterAsText(1, "Result")
- del project_gdb
-
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
-
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_region_bathymetry_worker.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_region_bathymetry_worker.py
deleted file mode 100644
index 532c3a2..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_region_bathymetry_worker.py
+++ /dev/null
@@ -1,289 +0,0 @@
-# -*- coding: utf-8 -*-
-#-------------------------------------------------------------------------------
-# Name: module1
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 05/03/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-#-------------------------------------------------------------------------------
-import os
-import sys
-import traceback
-import inspect
-
-import arcpy # third-parties second
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- filename = sys.path[0] + os.sep + "test.py"
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def worker(region_gdb=""):
- try:
- # Test if passed workspace exists, if not sys.exit()
- if not arcpy.Exists(rf"{region_gdb}"):
- sys.exit()(f"{os.path.basename(region_gdb)} is missing!!")
-
- # Imports
- from arcpy import metadata as md
- import dismap_tools
-
- # Set History and Metadata logs, set serverity and message level
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- # Set basic workkpace variables
- table_name = os.path.basename(region_gdb).replace(".gdb","")
- scratch_folder = os.path.dirname(region_gdb)
- project_folder = os.path.dirname(scratch_folder)
- csv_data_folder = rf"{project_folder}\CSV_Data"
- scratch_workspace = rf"{scratch_folder}\{table_name}\scratch.gdb"
-
- arcpy.AddMessage(f"Table Name: {table_name}\nProject Folder: {os.path.basename(project_folder)}\nScratch Folder: {os.path.basename(scratch_folder)}\n")
-
- # Set basic workkpace variables
- arcpy.env.workspace = region_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.env.compression = "LZ77"
- #arcpy.env.geographicTransformations = "WGS_1984_(ITRF08)_To_NAD_1983_2011"
- arcpy.env.pyramid = "PYRAMIDS -1 BILINEAR LZ77 NO_SKIP"
- arcpy.env.resamplingMethod = "BILINEAR"
- arcpy.env.rasterStatistics = "STATISTICS 1 1"
- #arcpy.env.XYResolution = "0.1 Meters"
- #arcpy.env.XYResolution = "0.01 Meters"
- #arcpy.env.cellAlignment = "ALIGN_WITH_PROCESSING_EXTENT" # Set the cell alignment environment using a keyword.
-
- # DatasetCode, CSVFile, TransformUnit, TableName, GeographicArea, CellSize,
- # PointFeatureType, FeatureClassName, Region, Season, DateCode, Status,
- # DistributionProjectCode, DistributionProjectName, SummaryProduct,
- # FilterRegion, FilterSubRegion, FeatureServiceName, FeatureServiceTitle,
- # MosaicName, MosaicTitle, ImageServiceName, ImageServiceTitle
-
- # Get values for table_name from Datasets table
- #fields = ["TableName", "GeographicArea", "DatasetCode", "CellSize", "MosaicName", "MosaicTitle"]
- #region_list = [row for row in arcpy.da.SearchCursor(rf"{region_gdb}\Datasets", fields, where_clause = f"TableName = '{table_name}'")][0]
- #del fields
-
- # Assigning variables from items in the chosen table list
- # ['AI_IDW', 'AI_IDW_Region', 'AI', 'Aleutian Islands', None, 'IDW']
- #table_name = region_list[0]
- #geographic_area = region_list[1]
- #datasetcode = region_list[2]
- #cell_size = region_list[3]
- #mosaic_name = region_list[4]
- #mosaic_title = region_list[5]
- #del region_list
-
- # Start of business logic for the worker function
- arcpy.AddMessage(f"Processing: {table_name}")
-
- # Input
- region_fishnet = os.path.join(region_gdb, f"{table_name}_Fishnet")
- region_raster_mask = os.path.join(region_gdb, f"{table_name}_Raster_Mask")
- region_fishnet_bathymetry = os.path.join(region_gdb, f"{table_name}_Fishnet_Bathymetry")
- # Output
- region_bathymetry = os.path.join(region_gdb, f"{table_name}_Bathymetry")
-
- # Get the reference system defined for the region in datasets
- # Set the output coordinate system to what is needed for the
- # DisMAP project
- region_prj = arcpy.Describe(region_raster_mask).spatialReference
- #arcpy.AddMessage(f"region_prj: {region_prj}")
- if region_prj.linearUnitName == "Kilometer":
- arcpy.env.cellSize = 1
- arcpy.env.XYResolution = 0.1
- arcpy.env.XYResolution = 1.0
- elif region_prj.linearUnitName == "Meter":
- arcpy.env.cellSize = 1000
- arcpy.env.XYResolution = 0.0001
- arcpy.env.XYResolution = 0.001
-
- # Process: Point to Raster Mask
- arcpy.env.outputCoordinateSystem = region_prj
- arcpy.env.cellSize = int(arcpy.Describe(f"{region_raster_mask}/Band_1").meanCellWidth)
- arcpy.env.extent = arcpy.Describe(region_raster_mask).extent
- arcpy.env.mask = region_raster_mask
- arcpy.env.snapRaster = region_raster_mask
-
- del region_prj
-
- arcpy.AddMessage(f"\tCalculating Zonal Statistics using {os.path.basename(region_fishnet)} and {os.path.basename(region_fishnet_bathymetry)} to create {os.path.basename(region_bathymetry)}")
- # Execute ZonalStatistics
- #out_raster = arcpy.sa.ZonalStatistics(region_fishnet, "OID", region_fishnet_bathymetry, "MEDIAN", "NODATA")
- #out_raster = arcpy.sa.ZonalStatistics(region_fishnet, "OID", region_fishnet_bathymetry, "MEDIAN", "DATA")
-
- with arcpy.EnvManager(scratchWorkspace = arcpy.env.scratchWorkspace):
- #print(region_fishnet)
- #rint(region_fishnet_bathymetry)
- out_raster = arcpy.sa.ZonalStatistics(
- in_zone_data = region_fishnet,
- zone_field = "OID",
- in_value_raster = region_fishnet_bathymetry,
- statistics_type = "MEDIAN",
- ignore_nodata = "DATA",
- process_as_multidimensional = "CURRENT_SLICE",
- percentile_value = 90,
- percentile_interpolation_type = "AUTO_DETECT",
- circular_calculation = "ARITHMETIC",
- circular_wrap_value = 360
- )
-
- arcpy.AddMessage("\tZonal Statistics: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- # Save the output
- out_raster.save(region_bathymetry)
- arcpy.AddMessage("\tSave: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del out_raster
-
- dismap_tools.import_metadata(csv_data_folder, region_bathymetry)
-
- del region_bathymetry
-
- arcpy.management.Delete(os.path.join(region_gdb, "Datasets"))
- arcpy.AddMessage("\tDelete: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- arcpy.management.Delete(region_raster_mask)
- arcpy.AddMessage("\tDelete: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- arcpy.management.Delete(region_fishnet)
- arcpy.AddMessage("\tDelete: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- arcpy.management.Delete(region_fishnet_bathymetry)
- arcpy.AddMessage("\tDelete: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del region_raster_mask, region_fishnet, region_fishnet_bathymetry
-
- arcpy.management.Compact(region_gdb)
-
- # Declared Variables for this function only
- del scratch_folder, scratch_workspace
- del table_name, project_folder, csv_data_folder
- # Imports
- del md, dismap_tools
- # Function parameter
- del region_gdb
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def script_tool(project_gdb=""):
- try:
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
- ## # Set worker parameters
- ## #table_name = "AI_IDW"
- ## table_name = "HI_IDW"
- ## #table_name = "NBS_IDW"
- ## #table_name = "ENBS_IDW"
-
- table_names = ["NBS_IDW",]
-
- from create_region_bathymetry_director import preprocessing
-
- preprocessing(project_gdb=project_gdb, table_names=table_names, clear_folder=True)
-
- del preprocessing
-
- for table_name in table_names:
- region_gdb = rf"{os.path.dirname(project_gdb)}\Scratch\{table_name}.gdb"
- try:
- pass
- worker(region_gdb=region_gdb)
- except SystemExit:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- del table_name, region_gdb
- del table_names
-
- # Declared Varaiables
- # Imports
- # Function Parameters
- del project_gdb
-
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- hours, rem = divmod(end_time-start_time, 3600)
- minutes, seconds = divmod(rem, 60)
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"End Time: {strftime('%a %b %d %I:%M %p', localtime(end_time))}")
- arcpy.AddMessage(f"Elapsed Time {int(hours):0>2}:{int(minutes):0>2}:{seconds:05.2f} (H:M:S)")
- arcpy.AddMessage(f"{'-' * 80}")
- del hours, rem, minutes, seconds
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-if __name__ == '__main__':
- try:
- project_gdb = arcpy.GetParameterAsText(0)
- if not project_gdb:
- project_gdb = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026\\February 1 2026.gdb")
- else:
- pass
- script_tool(project_gdb)
- arcpy.SetParameterAsText(1, "Result")
- del project_gdb
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_region_fishnets_director.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_region_fishnets_director.py
deleted file mode 100644
index f99ce63..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_region_fishnets_director.py
+++ /dev/null
@@ -1,400 +0,0 @@
-# -*- coding: utf-8 -*-
-#-------------------------------------------------------------------------------
-# Name: create_region_fishnets_director.py
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 25/02/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-#-------------------------------------------------------------------------------
-import os
-import sys
-import traceback
-import inspect
-
-import arcpy # third-parties second
-
-def director(project_gdb="", Sequential=True, table_names=[]):
- try:
- # Imports
- import dismap_tools
- from create_region_fishnets_worker import worker
-
- # Set History and Metadata logs, set serverity and message level
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(1) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- # Set basic workkpace variables
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = os.path.join(project_folder, "Scratch")
- scratch_workspace = os.path.join(project_folder, "Scratch\\scratch.gdb")
- csv_data_folder = rf"{project_folder}\CSV_Data"
-
- # Clear Scratch Folder
- dismap_tools.clear_folder(folder=scratch_folder)
-
- # Create Scratch Workspace for Project
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- if not arcpy.Exists(scratch_folder):
- os.makedirs(scratch_folder)
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- arcpy.management.CreateFileGDB(rf"{scratch_folder}", "scratch")
-
- # Set basic workkpace variables
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- del project_folder
-
- if not table_names:
- table_names = [row[0] for row in arcpy.da.SearchCursor(os.path.join(project_gdb, "Datasets"),"TableName", where_clause = "TableName LIKE '%_IDW'")]
- else:
- pass
-
- # Pre Processing
- for table_name in table_names:
- arcpy.AddMessage(f"Pre-Processing: {table_name}")
-
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- region_scratch_workspace = os.path.join(scratch_folder, f"{table_name}", "scratch.gdb")
-
- # Create Scratch Workspace for Region
- if not arcpy.Exists(region_scratch_workspace):
- os.makedirs(os.path.join(scratch_folder, table_name))
- if not arcpy.Exists(region_scratch_workspace):
- arcpy.management.CreateFileGDB(os.path.join(scratch_folder, table_name), "scratch")
- del region_scratch_workspace
-
- datasets = [os.path.join(project_gdb, "Datasets"), os.path.join(project_gdb, f"{table_name}_Region")]
- if not any(arcpy.management.GetCount(d)[0] == 0 for d in datasets):
- if not arcpy.Exists(os.path.join(scratch_folder, f"{table_name}.gdb")):
- arcpy.management.CreateFileGDB(rf"{scratch_folder}", f"{table_name}")
- arcpy.AddMessage("\tCreate File GDB: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- else:
- pass
-
- arcpy.management.Copy(os.path.join(project_gdb, "Datasets"), rf"{region_gdb}\Datasets")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.management.Copy(os.path.join(project_gdb, f"{table_name}_Region"), rf"{region_gdb}\{table_name}_Region")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- else:
- arcpy.AddWarning("One or more datasets contains zero records!!")
- for d in datasets:
- arcpy.AddMessage(f"\t{os.path.basename(d)} has {arcpy.management.GetCount(d)[0]} records")
- del d
- arcpy.AddError(f"SystemExit at line number: '{traceback.extract_stack()[-1].lineno}'")
- sys.exit()
-
- if "datasets" in locals().keys():
- del datasets
-
- del region_gdb, table_name
-
- del scratch_workspace
-
- # Sequential Processing
- if Sequential:
- arcpy.AddMessage("Sequential Processing")
- for i in range(0, len(table_names)):
- arcpy.AddMessage(f"Processing: {table_names[i]}")
- table_name = table_names[i]
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- try:
- pass
- worker(region_gdb=region_gdb)
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- del region_gdb, table_name
- del i
-
- # Non-Sequential Processing
- if not Sequential:
- import multiprocessing
- from time import time, localtime, strftime, sleep, gmtime
- arcpy.AddMessage("Sequential Processing")
- #Set multiprocessing exe in case we're running as an embedded process, i.e ArcGIS
- #get_install_path() uses a registry query to figure out 64bit python exe if available
- multiprocessing.set_executable(os.path.join(sys.exec_prefix, 'pythonw.exe'))
- # Get CPU count and then take 2 away for other process
- _processes = multiprocessing.cpu_count() - 2
- _processes = _processes if len(table_names) >= _processes else len(table_names)
- arcpy.AddMessage(f"Creating the multiprocessing Pool with {_processes} processes")
- #Create a pool of workers, keep one cpu free for surfing the net.
- #Let each worker process only handle 1 task before being restarted (in case of nasty memory leaks)
- with multiprocessing.Pool(processes=_processes, maxtasksperchild=1) as pool:
- arcpy.AddMessage("\tPrepare arguments for processing")
- # Use apply_async so we can handle exceptions gracefully
- jobs={}
- for i in range(0, len(table_names)):
- try:
- arcpy.AddMessage(f"Processing: {table_names[i]}")
- table_name = table_names[i]
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- jobs[table_name] = pool.apply_async(worker, [region_gdb])
- del table_name, region_gdb
- except: # noqa: E722
- pool.terminate()
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- del i
- all_finished = False
- # Set a start time so that we can see how log things take
- start_time = time()
- result_completed = {}
- while True:
- all_finished = True
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- arcpy.AddMessage(f"\nStart Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage("Have the workers finished?")
- finish_time = strftime('%a %b %d %I:%M %p', localtime())
- time_elapsed = u"Elapsed Time {0} (H:M:S)".format(strftime("%H:%M:%S", gmtime(elapse_time)))
- arcpy.AddMessage(f"It's {finish_time}\n{time_elapsed}")
- finish_time = f"{finish_time}.\n\t{time_elapsed}"
- del time_elapsed
- for table_name, result in jobs.items():
- if result.ready():
- if table_name not in result_completed:
- result_completed[table_name] = finish_time
- try:
- # wait for and get the result from the task
- result.get()
- except SystemExit:
- pool.terminate()
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- pool.terminate()
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- pass
- arcpy.AddMessage(f"Process {table_name}\n\tFinished on {result_completed[table_name]}")
- else:
- all_finished = False
- arcpy.AddMessage(f"Process {table_name} is running. . .")
- del table_name, result
- del elapse_time, end_time, finish_time
- if all_finished:
- break
- sleep(_processes * 7.5)
- del result_completed
- del start_time
- del all_finished
- arcpy.AddMessage("\tClose the process pool")
- # close the process pool
- pool.close()
- # wait for all tasks to complete and processes to close
- arcpy.AddMessage("\tWait for all tasks to complete and processes to close")
- pool.join()
- # Just in case
- pool.terminate()
- del pool
- del jobs
- del _processes
- del time, multiprocessing, localtime, strftime, sleep, gmtime
- arcpy.AddMessage("\tDone with multiprocessing Pool")
-
- arcpy.AddMessage("Post-Processing")
- arcpy.AddMessage("Processing Results")
- datasets = list()
- #walk = arcpy.da.Walk(scratch_folder, datatype="FeatureClass", type=["Polyline", "Polygon"])
- walk = arcpy.da.Walk(scratch_folder)
- for dirpath, dirnames, filenames in walk:
- for filename in filenames:
- datasets.append(os.path.join(dirpath, filename))
- del filename
- del dirpath, dirnames, filenames
- del walk
- for dataset in datasets:
- datasets_short_path = f".. {'/'.join(dataset.split(os.sep)[-4:])}"
- dataset_name = os.path.basename(dataset)
- region_gdb = os.path.dirname(dataset)
- arcpy.AddMessage(f"\tDataset: '{dataset_name}'")
- arcpy.AddMessage(f"\t\tPath: '{datasets_short_path}'")
- arcpy.AddMessage(f"\t\tRegion GDB: '{os.path.basename(region_gdb)}'")
- arcpy.management.Copy(dataset, rf"{project_gdb}\{dataset_name}")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- arcpy.management.Delete(dataset)
- arcpy.AddMessage("\tDelete: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- arcpy.management.Compact(region_gdb)
- arcpy.AddMessage("\tCompact: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del region_gdb
- del dataset
- del dataset_name
- del datasets_short_path
- del datasets
- arcpy.AddMessage(f"Compacting the {os.path.basename(project_gdb)} GDB")
- arcpy.management.Compact(project_gdb)
- arcpy.AddMessage("\t"+arcpy.GetMessages(0).replace("\n", "\n\t"))
- # Declared Variables assigned in function
- del scratch_folder, csv_data_folder
- # Imports
- del dismap_tools, worker
- # Function Parameters
- del project_gdb, Sequential, table_names
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(f"Caught an arcpy.ExecuteWarning error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(f"Caught an arcpy.ExecuteError error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except SystemExit as se:
- arcpy.AddError(f"Caught an SystemExit error: {se} in the '{inspect.stack()[0][3]}' function.")
- sys.exit()
- except Exception as e:
- arcpy.AddError(f"Caught an Exception error: {e} in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(f"Caught an except error in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- pass
-
-def script_tool(project_gdb=""):
- try:
- # Imports
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
- # Set varaibales
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = rf"{project_folder}\Scratch"
- del project_folder
-
- # Create project scratch workspace, if missing
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- if not arcpy.Exists(scratch_folder):
- os.makedirs(scratch_folder)
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- arcpy.management.CreateFileGDB(rf"{scratch_folder}", "scratch")
- del scratch_folder
-
- # Set basic arcpy.env variables
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- try:
- pass
- # "AI_IDW", "EBS_IDW", "ENBS_IDW", "GMEX_IDW", "GOA_IDW", "HI_IDW", "NBS_IDW", "NEUS_FAL_IDW", "NEUS_SPR_IDW",
- # "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW", "WC_ANN_IDW", "WC_TRI_IDW",
-
- test = False
- if test:
- #director(project_gdb=project_gdb, Sequential=True, table_names=["HI_IDW"])
- #director(project_gdb=project_gdb, Sequential=False, table_names=["SEUS_SPR_IDW", "HI_IDW"])
- #director(project_gdb=project_gdb, Sequential=False, table_names=["SEUS_SPR_IDW", "SEUS_FAL_IDW",])
- director(project_gdb=project_gdb, Sequential=True, table_names=["NBS_IDW", "SEUS_FAL_IDW"])
- else:
- director(project_gdb=project_gdb, Sequential=False, table_names=["NBS_IDW", "ENBS_IDW", "HI_IDW", "SEUS_FAL_IDW", "SEUS_SPR_IDW"])
- director(project_gdb=project_gdb, Sequential=False, table_names=["WC_TRI_IDW", "GMEX_IDW", "AI_IDW", "GOA_IDW", "WC_ANN_IDW"])
- director(project_gdb=project_gdb, Sequential=False, table_names=["NEUS_SPR_IDW", "EBS_IDW", "NEUS_FAL_IDW", "SEUS_SUM_IDW"])
- del test
-
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
-
- # Declared Varaiables
- # Imports
- # Function Parameters
- del project_gdb
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- hours, rem = divmod(end_time-start_time, 3600)
- minutes, seconds = divmod(rem, 60)
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"End Time: {strftime('%a %b %d %I:%M %p', localtime(end_time))}")
- arcpy.AddMessage(f"Elapsed Time {int(hours):0>2}:{int(minutes):0>2}:{seconds:05.2f} (H:M:S)")
- arcpy.AddMessage(f"{'-' * 80}")
- del hours, rem, minutes, seconds
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(f"Caught an arcpy.ExecuteWarning error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(f"Caught an arcpy.ExecuteError error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddError(arcpy.GetMessages(2))
- except SystemExit as se:
- arcpy.AddError(f"Caught an SystemExit error: {se} in the '{inspect.stack()[0][3]}' function.")
- sys.exit()
- except Exception as e:
- arcpy.AddError(f"Caught an Exception error: {e} in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(f"Caught an except error in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- pass
-
-if __name__ == '__main__':
- try:
- project_gdb = arcpy.GetParameterAsText(0)
- if not project_gdb:
- #project_gdb = rf"{os.path.expanduser('~')}\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\February 1 2026\February 1 2026.gdb"
- project_gdb = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026\\February 1 2026.gdb")
- else:
- pass
- script_tool(project_gdb)
- arcpy.SetParameterAsText(1, "Result")
- del project_gdb
- except: # noqa: E722
- traceback.print_exc()
- else:
- pass
- finally:
- pass
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_region_fishnets_worker.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_region_fishnets_worker.py
deleted file mode 100644
index 7833569..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_region_fishnets_worker.py
+++ /dev/null
@@ -1,657 +0,0 @@
-# -*- coding: utf-8 -*-
-#-------------------------------------------------------------------------------
-# Name: create_region_fishnets_worker.py
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 25/02/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-#-------------------------------------------------------------------------------
-import os
-import sys
-import traceback
-import inspect
-
-import arcpy # third-parties second
-
-def worker(region_gdb=""):
- try:
- # Test if passed workspace exists, if not sys.exit()
- if not arcpy.Exists(rf"{region_gdb}"):
- sys.exit()(f"{os.path.basename(region_gdb)} is missing!!")
-
- # Imports
- from arcpy import metadata as md
- import dismap_tools
-
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(1) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- table_name = os.path.basename(region_gdb).replace(".gdb","")
- scratch_folder = os.path.dirname(region_gdb)
- project_folder = os.path.dirname(scratch_folder)
- csv_data_folder = rf"{project_folder}\CSV_Data"
- scratch_workspace = rf"{scratch_folder}\{table_name}\scratch.gdb"
-
- #arcpy.AddMessage(f"Table Name: {table_name}\nProject Folder: {os.path.basename(project_folder)}\nScratch Folder: {os.path.basename(scratch_folder)}\n")
-
- del scratch_folder, project_folder
-
- arcpy.env.workspace = region_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.env.compression = "LZ77"
- #arcpy.env.geographicTransformations = "WGS_1984_(ITRF08)_To_NAD_1983_2011"
- arcpy.env.pyramid = "PYRAMIDS -1 BILINEAR DEFAULT 75 NO_SKIP NO_SIPS"
- arcpy.env.resamplingMethod = "BILINEAR"
- arcpy.env.rasterStatistics = "STATISTICS 1 1"
- #arcpy.env.XYTolerance = "0.1 Meters"
- #arcpy.env.XYResolution = "0.01 Meters"
-
- # DatasetCode, CSVFile, TransformUnit, TableName, GeographicArea, CellSize,
- # PointFeatureType, FeatureClassName, Region, Season, DateCode, Status,
- # DistributionProjectCode, DistributionProjectName, SummaryProduct,
- # FilterRegion, FilterSubRegion, FeatureServiceName, FeatureServiceTitle,
- # MosaicName, MosaicTitle, ImageServiceName, ImageServiceTitle
-
- fields = ["TableName", "CellSize",]
- region_list = [row for row in arcpy.da.SearchCursor(rf"{region_gdb}\Datasets", fields, where_clause = f"TableName = '{table_name}'")][0]
- del fields
-
- # Assigning variables from items in the chosen table list
- # ['AI_IDW', 'AI_IDW_Region', 'AI', 'Aleutian Islands', None, 'IDW']
- table_name = region_list[0]
- cell_size = region_list[1]
- del region_list
-
- process_region = rf"{region_gdb}\{table_name}_Region"
- region_raster_mask = rf"{table_name}_Raster_Mask"
- region_extent_points = rf"{table_name}_Extent_Points"
- region_fishnet = rf"{table_name}_Fishnet"
- region_lat_long = rf"{table_name}_Lat_Long"
- region_latitude = rf"{table_name}_Latitude"
- region_longitude = rf"{table_name}_Longitude"
- region_name = rf"{table_name}_Region"
-
- arcpy.AddMessage(f"Region: {region_name}")
- arcpy.AddMessage(f"Region GDB: {os.path.basename(arcpy.env.workspace)}")
- arcpy.AddMessage(f"Scratch GDB: {os.path.basename(arcpy.env.scratchWorkspace)}")
-
- psr = arcpy.Describe(process_region).spatialReference
- arcpy.env.outputCoordinateSystem = psr
- arcpy.AddMessage(f"\t\tSpatial Reference: {psr.name}")
- # Set coordinate system of the output fishnet
- # 4326 - World Geodetic System 1984 (WGS 84) and 3857 - Web Mercator
- # Spatial Reference factory code of 4326 is : GCS_WGS_1984
- # Spatial Reference factory code of 5714 is : Mean Sea Level (Height)
- # sr = arcpy.SpatialReference(4326, 5714)
- #gsr = arcpy.SpatialReference(4326, 5714)
- gsr = arcpy.SpatialReference(4326)
-
- #arcpy.AddMessage("process_region")
- #arcpy.AddMessage(f"Spatial Reference: {str(arcpy.Describe(process_region).spatialReference.name)}")
- #arcpy.AddMessage(f"Extent: {str(arcpy.Describe(process_region).extent).replace(' NaN', '')}")
- #arcpy.AddMessage(f"Output Coordinate System: {arcpy.env.outputCoordinateSystem.name}")
- #arcpy.AddMessage(f"Geographic Transformations: {arcpy.env.geographicTransformations}")
-
- # Creating Raster Mask
- arcpy.AddMessage(f"Creating Raster Mask: {table_name}_Raster_Mask")
-
- cell_size = [row[0] for row in arcpy.da.SearchCursor(rf"{region_gdb}\Datasets", "CellSize", where_clause = f"GeographicArea = '{region_name}'")][0]
-
- arcpy.management.CalculateField(rf"{process_region}", "ID", 1)
- arcpy.AddMessage("\tCalculate Field 'ID' for {0}:\n\t\t{1}\n".format(f"{region_name}", arcpy.GetMessages(0).replace("\n", "\n\t\t")))
-
- arcpy.conversion.FeatureToRaster(rf"{process_region}", "ID", rf"{region_gdb}\{region_raster_mask}", cell_size)
- arcpy.AddMessage("\tFeature To Raster for {0}:\n\t\t{1}\n".format(f"{region_name}", arcpy.GetMessages(0).replace("\n", "\n\t\t")))
-
- arcpy.management.DeleteField(rf"{process_region}", "ID")
- arcpy.AddMessage("\tDelete Field 'ID' field in {0}:\n\t\t{1}\n".format(f"{region_name}", arcpy.GetMessages(0).replace("\n", "\n\t\t")))
-
- #del edit
-
- # Creating Extent Points
- arcpy.AddMessage(f"Creating Extent Points: {region_extent_points}")
-
- extent = arcpy.Describe(process_region).extent
- X_Min, Y_Min, X_Max, Y_Max = extent.XMin, extent.YMin, extent.XMax, extent.YMax
- del extent
-
- arcpy.AddMessage(f"\t{region_name} Extent:\n\t\tX_Min: {X_Min}\n\t\tY_Min: {Y_Min}\n\t\tX_Max: {X_Max}\n\t\tY_Max: {Y_Max}\n")
-
- # A list of coordinate pairs
- pointList = [[X_Min, Y_Min], [X_Min, Y_Max], [X_Max, Y_Max]]
- # Create an empty Point object
- point = arcpy.Point()
- # A list to hold the PointGeometry objects
- pointGeometryList = []
- # For each coordinate pair, populate the Point object and create a new
- # PointGeometry object
- for pt in pointList:
- point.X = pt[0]
- point.Y = pt[1]
- pointGeometry = arcpy.PointGeometry(point, arcpy.Describe(process_region).spatialReference)
- pointGeometryList.append(pointGeometry)
- del pt, pointGeometry
- # Delete after last use
- del pointList, point
-
- # Create a copy of the PointGeometry objects, by using pointGeometryList as
- # input to the CopyFeatures tool.
- arcpy.management.CopyFeatures(pointGeometryList, rf"{region_gdb}\{region_extent_points}")
- arcpy.AddMessage("\tCopy Features to {0}:\n\t\t{1}\n".format(region_extent_points, arcpy.GetMessages(0).replace("\n", "\n\t\t")))
-
- del pointGeometryList
-
- # arcpy.AddMessage("tmp_region_extent_points")
- # tmp_region_extent_points = rf"{region_gdb}\{region_extent_points}"
- # arcpy.AddMessage(f"Spatial Reference: {str(arcpy.Describe(tmp_region_extent_points).spatialReference.name)}")
- # arcpy.AddMessage(f"Extent: {str(arcpy.Describe(tmp_region_extent_points).extent).replace(' NaN', '')}")
- # arcpy.AddMessage(f"Output Coordinate System: {arcpy.env.outputCoordinateSystem.name}")
- # arcpy.AddMessage(f"Geographic Transformations: {arcpy.env.geographicTransformations}")
- # del tmp_region_extent_points
-
- with arcpy.EnvManager(outputCoordinateSystem = psr):
- arcpy.management.AddXY(in_features = rf"{region_gdb}\{region_extent_points}")
- arcpy.AddMessage("\tAdd XY:\n\t\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t\t")))
-
- arcpy.management.AlterField(
- in_table = rf"{region_gdb}\{region_extent_points}",
- field = "POINT_X",
- new_field_name = "Easting",
- new_field_alias = "Easting",
- field_type = "",
- field_length = None,
- field_is_nullable = "NULLABLE",
- clear_field_alias = "DO_NOT_CLEAR"
- )
- arcpy.AddMessage("\tAlter Field:\n\t\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t\t")))
-
- arcpy.management.AlterField(
- in_table = rf"{region_gdb}\{region_extent_points}",
- field = "POINT_Y",
- new_field_name = "Northing",
- new_field_alias = "Northing",
- field_type = "",
- field_length = None,
- field_is_nullable = "NULLABLE",
- clear_field_alias = "DO_NOT_CLEAR"
- )
- arcpy.AddMessage("\tAlter Field:\n\t\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t\t")))
-
- tmp_outputCoordinateSystem = arcpy.env.outputCoordinateSystem
- arcpy.env.outputCoordinateSystem = gsr
-
- with arcpy.EnvManager(outputCoordinateSystem = gsr, geographicTransformations = dismap_tools.check_transformation(rf"{region_gdb}\{region_extent_points}", gsr)):
- arcpy.management.AddXY(in_features = rf"{region_gdb}\{region_extent_points}")
- arcpy.AddMessage("\tAdd XY:\n\t\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t\t")))
-
- arcpy.env.outputCoordinateSystem = tmp_outputCoordinateSystem
- del tmp_outputCoordinateSystem
-
- arcpy.management.AlterField(
- in_table = rf"{region_gdb}\{region_extent_points}",
- field = "POINT_X",
- new_field_name = "Longitude",
- new_field_alias = "Longitude",
- field_type = "",
- field_length = None,
- field_is_nullable = "NULLABLE",
- clear_field_alias = "DO_NOT_CLEAR"
- )
- arcpy.AddMessage("\tAlter Field:\n\t\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t\t")))
-
- arcpy.management.AlterField(
- in_table = rf"{region_gdb}\{region_extent_points}",
- field = "POINT_Y",
- new_field_name = "Latitude",
- new_field_alias = "Latitude",
- field_type = "",
- field_length = None,
- field_is_nullable = "NULLABLE",
- clear_field_alias = "DO_NOT_CLEAR"
- )
- arcpy.AddMessage("\tAlter Field:\n\t\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t\t")))
-
- # Creating Fishnet
- arcpy.AddMessage(f"Creating Fishnet: {region_fishnet}")
- arcpy.AddMessage(f"\tCreate Fishnet for {region_name} with {cell_size} by {cell_size} cells")
- arcpy.management.CreateFishnet(
- os.path.join(rf"{region_gdb}\{region_fishnet}"),
- f"{X_Min} {Y_Min}",
- f"{X_Min} {Y_Max}",
- cell_size,
- cell_size,
- None,
- None,
- f"{X_Max} {Y_Max}",
- "NO_LABELS",
- "DEFAULT",
- "POLYGON"
- )
- arcpy.AddMessage("\tCreate Fishnet for {0}:\n\t\t{1}\n".format(f"{region_name}", arcpy.GetMessages(0).replace("\n", "\n\t\t")))
-
- del X_Min, Y_Min, X_Max, Y_Max
-
- arcpy.management.MakeFeatureLayer(rf"{region_gdb}\{region_fishnet}", f"{region_name}_Fishnet_Layer")
- arcpy.AddMessage("\tMake Feature Layer for {0}:\n\t\t{1}\n".format(f"{region_fishnet}", arcpy.GetMessages(0).replace("\n", "\n\t\t")))
- arcpy.AddMessage(f"\t\tRecord Count: {int(arcpy.management.GetCount(f'{region_name}_Fishnet_Layer')[0]):,d}")
-
- arcpy.management.SelectLayerByLocation(f"{region_name}_Fishnet_Layer", "WITHIN_A_DISTANCE", process_region, 2 * int(cell_size), "NEW_SELECTION", "INVERT")
- arcpy.AddMessage("\tSelect Layer By Location:\n\t\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t\t")))
- arcpy.AddMessage(f"\t\tRecord Count: {int(arcpy.management.GetCount(f'{region_name}_Fishnet_Layer')[0]):,d}")
-
- arcpy.management.DeleteFeatures(f"{region_name}_Fishnet_Layer")
- arcpy.AddMessage("\tDelete Features:\n\t\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t\t")))
-
- arcpy.management.Delete(f"{region_name}_Fishnet_Layer")
- arcpy.AddMessage("\tDelete {0}:\n\t\t{1}\n".format(f"{region_name}_Fishnet_Layer", arcpy.GetMessages(0).replace("\n", "\n\t\t")))
-
- # Creating Lat-Long
- arcpy.AddMessage(f"Creating Lat-Long: {region_lat_long}")
- arcpy.management.FeatureToPoint(rf"{region_gdb}\{region_fishnet}", rf"{region_gdb}\{region_lat_long}", "CENTROID")
- arcpy.AddMessage("\tFeature To Point:\n\t\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t\t")))
-
- # Execute DeleteField
- arcpy.management.DeleteField(rf"{region_gdb}\{region_lat_long}", ['ORIG_FID'])
- arcpy.AddMessage("\tDelete Field:\n\t\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t\t")))
-
- with arcpy.EnvManager(outputCoordinateSystem = psr):
- arcpy.management.AddXY(in_features=rf"{region_gdb}\{region_lat_long}")
- arcpy.AddMessage("\tAdd XY:\n\t\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t\t")))
-
- arcpy.management.AlterField(
- in_table = rf"{region_gdb}\{region_lat_long}",
- field = "POINT_X",
- new_field_name = "Easting",
- new_field_alias = "Easting",
- field_type = "",
- field_length = None,
- field_is_nullable = "NULLABLE",
- clear_field_alias = "DO_NOT_CLEAR"
- )
- arcpy.AddMessage("\tAlter Field:\n\t\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t\t")))
-
- arcpy.management.AlterField(
- in_table = rf"{region_gdb}\{region_lat_long}",
- field = "POINT_Y",
- new_field_name = "Northing",
- new_field_alias = "Northing",
- field_type = "",
- field_length = None,
- field_is_nullable = "NULLABLE",
- clear_field_alias = "DO_NOT_CLEAR"
- )
- arcpy.AddMessage("\tAlter Field:\n\t\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t\t")))
-
- with arcpy.EnvManager(outputCoordinateSystem = gsr, geographicTransformations = dismap_tools.check_transformation(rf"{region_gdb}\{region_extent_points}", gsr)):
- arcpy.management.AddXY(in_features=rf"{region_gdb}\{region_lat_long}")
- arcpy.AddMessage("\tAdd XY:\n\t\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t\t")))
-
- arcpy.management.AlterField(
- in_table = rf"{region_gdb}\{region_lat_long}",
- field = "POINT_X",
- new_field_name = "Longitude",
- new_field_alias = "Longitude",
- field_type = "",
- field_length = None,
- field_is_nullable = "NULLABLE",
- clear_field_alias = "DO_NOT_CLEAR"
- )
- arcpy.AddMessage("\tAlter Field:\n\t\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t\t")))
-
- arcpy.management.AlterField(
- in_table = rf"{region_gdb}\{region_lat_long}",
- field = "POINT_Y",
- new_field_name = "Latitude",
- new_field_alias = "Latitude",
- field_type = "",
- field_length = None,
- field_is_nullable = "NULLABLE",
- clear_field_alias = "DO_NOT_CLEAR"
- )
- arcpy.AddMessage("\tAlter Field:\n\t\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t\t")))
-
- # arcpy.management.CalculateFields(
- # in_table = rf"{region_gdb}\{region_lat_long}",
- # expression_type = "PYTHON3",
- # fields = "Easting 'round(!Easting!, 8)' #;Northing 'round(!Northing!, 8)' #;Longitude 'round(!Longitude!, 8)' #;Latitude 'round(!Latitude!, 8)' #",
- # code_block = "",
- # enforce_domains = "NO_ENFORCE_DOMAINS"
- # )
- # arcpy.AddMessage("\tCalculate Fields:\n\t\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t\t")))
-
- arcpy.AddMessage(f"Generating {table_name} Latitude and Longitude Rasters")
-
- # arcpy.env.cellSize = cell_size
- # arcpy.env.extent = arcpy.Describe(rf"{region_gdb}\{region_raster_mask}").extent
- # arcpy.env.mask = rf"{region_gdb}\{region_raster_mask}"
- # arcpy.env.snapRaster = rf"{region_gdb}\{region_raster_mask}"
-
- raster_mask_extent = arcpy.Describe(rf"{region_gdb}\{region_raster_mask}").extent
-
- arcpy.AddMessage(f"Point to Raster Conversion using {region_lat_long} to create {region_longitude}")
-
- region_longitude_tmp = rf"{region_gdb}\tmp_{region_longitude}"
-
- with arcpy.EnvManager(scratchWorkspace=scratch_workspace, workspace = region_gdb, cellSize = cell_size, extent = raster_mask_extent, mask = rf"{region_gdb}\{region_raster_mask}", snapRaster = rf"{region_gdb}\{region_raster_mask}"):
- arcpy.conversion.PointToRaster(rf"{region_gdb}\{region_lat_long}", "Longitude", region_longitude_tmp, "MOST_FREQUENT", "NONE", cell_size)
- arcpy.AddMessage("\tPoint To Raster:\n\t\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t\t")))
-
- arcpy.AddMessage(f"Extract by Mask to create {region_longitude}")
-
- with arcpy.EnvManager(scratchWorkspace=scratch_workspace, workspace = region_gdb,
- cellSize = cell_size, extent = raster_mask_extent,
- mask = rf"{region_gdb}\{region_raster_mask}",
- snapRaster = rf"{region_gdb}\{region_raster_mask}"):
- # Execute ExtractByMask
- outExtractByMask = arcpy.sa.ExtractByMask(region_longitude_tmp, rf"{region_gdb}\{region_raster_mask}", "INSIDE")
- arcpy.AddMessage("\tExtract By Mask:\n\t\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t\t")))
- # Save the output
- outExtractByMask.save(rf"{region_gdb}\{region_longitude}")
- del outExtractByMask
-
- arcpy.management.Delete(region_longitude_tmp)
- del region_longitude_tmp
-
- region_latitude_tmp = rf"{region_gdb}\tmp_{region_latitude}"
-
- arcpy.AddMessage(f"Point to Raster Conversion using {region_lat_long} to create {region_latitude}")
-
- with arcpy.EnvManager(scratchWorkspace=scratch_workspace, workspace = region_gdb,
- cellSize = cell_size, extent = raster_mask_extent,
- mask = rf"{region_gdb}\{region_raster_mask}",
- snapRaster = rf"{region_gdb}\{region_raster_mask}"):
- # Process: Point to Raster Latitude
- arcpy.conversion.PointToRaster(rf"{region_gdb}\{region_lat_long}", "Latitude", region_latitude_tmp, "MOST_FREQUENT", "NONE", cell_size, "BUILD")
- arcpy.AddMessage("\tPoint To Raster:\n\t\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t\t")))
-
- arcpy.AddMessage(f"Extract by Mask to create {region_latitude}")
-
- with arcpy.EnvManager(scratchWorkspace=scratch_workspace, workspace = region_gdb, cellSize = cell_size, extent = raster_mask_extent, mask = rf"{region_gdb}\{region_raster_mask}", snapRaster = rf"{region_gdb}\{region_raster_mask}"):
- # Execute ExtractByMask
- outExtractByMask = arcpy.sa.ExtractByMask(region_latitude_tmp, rf"{region_gdb}\{region_raster_mask}", "INSIDE")
- arcpy.AddMessage("\tExtract By Mask:\n\t\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t\t")))
- # Save the output
- outExtractByMask.save(rf"{region_gdb}\{region_latitude}")
- del outExtractByMask
-
- arcpy.management.Delete(region_latitude_tmp)
- del region_latitude_tmp
-
- del raster_mask_extent
-
- arcpy.ClearEnvironment("cellSize")
- arcpy.ClearEnvironment("extent")
- arcpy.ClearEnvironment("mask")
- arcpy.ClearEnvironment("snapRaster")
-
- # Reset environment settings to default settings.
- arcpy.ResetEnvironments()
-
- arcpy.AddMessage(f"\t\tAlter Fields for: '{region_raster_mask}'")
- #dismap_tools.alter_fields(csv_data_folder, rf"{region_gdb}\{region_raster_mask}")
- dismap_tools.import_metadata(csv_data_folder, dataset = rf"{region_gdb}\{region_raster_mask}")
-
- # Create Metadata
- dataset_md = md.Metadata(region_raster_mask)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- del dataset_md
-
- arcpy.AddMessage(f"\t\tAlter Fields for: '{region_extent_points}'")
- dismap_tools.alter_fields(csv_data_folder, rf"{region_gdb}\{region_extent_points}")
- dismap_tools.import_metadata(csv_data_folder, dataset = rf"{region_gdb}\{region_extent_points}")
-
- # Create Metadata
- dataset_md = md.Metadata(region_extent_points)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- del dataset_md
-
- arcpy.AddMessage(f"\t\tAlter Fields for: '{region_fishnet}'")
- dismap_tools.alter_fields(csv_data_folder, rf"{region_gdb}\{region_fishnet}")
- dismap_tools.import_metadata(csv_data_folder, dataset = rf"{region_gdb}\{region_fishnet}")
-
- # Create Metadata
- dataset_md = md.Metadata(region_fishnet)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- del dataset_md
-
- arcpy.AddMessage(f"\t\tAlter Fields for: '{region_lat_long}'")
- dismap_tools.alter_fields(csv_data_folder, rf"{region_gdb}\{region_lat_long}")
- dismap_tools.import_metadata(csv_data_folder, dataset = rf"{region_gdb}\{region_lat_long}")
-
- # Create Metadata
- dataset_md = md.Metadata(region_lat_long)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- del dataset_md
-
- arcpy.AddMessage(f"\t\tAlter Fields for: '{region_latitude}'")
- dismap_tools.import_metadata(csv_data_folder, dataset = rf"{region_gdb}\{region_latitude}")
-
- # Create Metadata
- dataset_md = md.Metadata(region_latitude)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- del dataset_md
-
- arcpy.AddMessage(f"\t\tAlter Fields for: '{region_longitude}'")
- dismap_tools.import_metadata(csv_data_folder, dataset = rf"{region_gdb}\{region_longitude}")
-
- # Create Metadata
- dataset_md = md.Metadata(region_longitude)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- del dataset_md
-
- arcpy.management.Delete(process_region)
- arcpy.management.Delete(rf"{region_gdb}\Datasets")
-
- del process_region, region_raster_mask, region_extent_points, region_fishnet
- del region_lat_long, region_latitude, region_longitude
- del psr, gsr
- del cell_size
-
- arcpy.AddMessage(f"Compacting the {os.path.basename(region_gdb)} GDB")
- arcpy.management.Compact(region_gdb)
- arcpy.AddMessage("\t"+arcpy.GetMessages(0).replace("\n", "\n\t"))
-
- # End of business logic for the worker function
- arcpy.AddMessage(f"Processing for: {table_name} complete")
-
- # Declared Variables
- del region_name, table_name
- del scratch_workspace, csv_data_folder
- # Imports
- del dismap_tools, md
- # Function parameter
- del region_gdb
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(f"Caught an arcpy.ExecuteWarning error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(f"Caught an arcpy.ExecuteError error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except SystemExit as se:
- arcpy.AddError(f"Caught an SystemExit error: {se} in the '{inspect.stack()[0][3]}' function.")
- sys.exit()
- except Exception as e:
- arcpy.AddError(f"Caught an Exception error: {e} in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(f"Caught an except error in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- pass
-
-def script_tool(project_gdb=""):
- try:
- import dismap_tools
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
- # Set basic arcpy.env variables
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- # Set varaibales
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = rf"{project_folder}\Scratch"
- del project_folder
-
- # Clear Scratch Folder
- dismap_tools.clear_folder(folder=scratch_folder)
-
- # Create project scratch workspace, if missing
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- if not arcpy.Exists(scratch_folder):
- os.makedirs(scratch_folder)
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- arcpy.management.CreateFileGDB(rf"{scratch_folder}", "scratch")
-
- # Set worker parameters
- table_name = "AI_IDW"
- #table_name = "GMEX_IDW"
- #table_name = "HI_IDW"
- #table_name = "SEUS_FAL_IDW"
- #table_name = "NBS_IDW"
-
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- scratch_workspace = rf"{scratch_folder}\{table_name}\scratch.gdb"
-
- if not arcpy.Exists(scratch_workspace):
- os.makedirs(os.path.join(scratch_folder, table_name))
- if not arcpy.Exists(scratch_workspace):
- arcpy.management.CreateFileGDB(os.path.join(scratch_folder, f"{table_name}"), "scratch")
- del scratch_workspace
-
- # Setup worker workspace and copy data
- #datasets = [ros.path.join(project_gdb, "Datasets") os.path.join(project_gdb, f"{table_name}_Region")]
- #if not any(arcpy.management.GetCount(d)[0] == 0 for d in datasets):
-
- if not arcpy.Exists(os.path.join(scratch_folder, f"{table_name}.gdb")):
- arcpy.management.CreateFileGDB(rf"{scratch_folder}", f"{table_name}")
- arcpy.AddMessage("\tCreate File GDB: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- else:
- pass
- arcpy.management.Copy(os.path.join(project_gdb, "Datasets"), rf"{region_gdb}\Datasets")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.management.Copy(os.path.join(project_gdb, f"{table_name}_Region"), rf"{region_gdb}\{table_name}_Region")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- #else:
- # arcpy.AddWarning(f"One or more datasets contains zero records!!")
- # for d in datasets:
- # arcpy.AddMessage(f"\t{os.path.basename(d)} has {arcpy.management.GetCount(d)[0]} records")
- # del d
- # sys.exit()
- #if "datasets" in locals().keys(): del datasets
-
- try:
- pass
- worker(region_gdb=region_gdb)
- except SystemExit:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
-
- # Declared Varaiables
- del region_gdb, table_name, scratch_folder
- # Imports
- del dismap_tools
- # Function Parameters
- del project_gdb
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- hours, rem = divmod(end_time-start_time, 3600)
- minutes, seconds = divmod(rem, 60)
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"End Time: {strftime('%a %b %d %I:%M %p', localtime(end_time))}")
- arcpy.AddMessage(f"Elapsed Time {int(hours):0>2}:{int(minutes):0>2}:{seconds:05.2f} (H:M:S)")
- arcpy.AddMessage(f"{'-' * 80}")
- del hours, rem, minutes, seconds
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(f"Caught an arcpy.ExecuteWarning error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(f"Caught an arcpy.ExecuteError error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except SystemExit as se:
- arcpy.AddError(f"Caught an SystemExit error: {se} in the '{inspect.stack()[0][3]}' function.")
- sys.exit()
- except Exception as e:
- arcpy.AddError(f"Caught an Exception error: {e} in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(f"Caught an except error in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- pass
-
-if __name__ == '__main__':
- try:
- project_gdb = arcpy.GetParameterAsText(0)
- if not project_gdb:
- project_gdb = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026\\February 1 2026.gdb")
- else:
- pass
- script_tool(project_gdb)
- arcpy.SetParameterAsText(1, "Result")
- del project_gdb
- except: # noqa: E722
- traceback.print_exc()
- else:
- pass
- finally:
- pass
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_region_sample_locations_director.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_region_sample_locations_director.py
deleted file mode 100644
index 277f332..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_region_sample_locations_director.py
+++ /dev/null
@@ -1,356 +0,0 @@
-# -*- coding: utf-8 -*-
-#-------------------------------------------------------------------------------
-# Name: module1
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 25/02/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-#-------------------------------------------------------------------------------
-import os
-import sys
-import traceback
-
-import arcpy # third-parties second
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- filename = sys.path[0] + os.sep + "test.py"
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def director(project_gdb="", Sequential=True, table_names=[]):
- try:
- # Imports
- import dismap_tools
- from create_region_sample_locations_worker import worker
- from arcpy import metadata as md
- # Test if passed workspace exists, if not sys.exit()
- if not arcpy.Exists(project_gdb):
- sys.exit()(f"{os.path.basename(project_gdb)} is missing!!")
-
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(1) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = os.path.join(project_folder, "Scratch")
- scratch_workspace = os.path.join(project_folder, "Scratch\\scratch.gdb")
- csv_data_folder = rf"{project_folder}\CSV Data"
-
- # Clear Scratch Folder
- dismap_tools.clear_folder(folder=scratch_folder)
-
- # Create Scratch Workspace for Project
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- if not arcpy.Exists(scratch_folder):
- os.makedirs(scratch_folder)
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- arcpy.management.CreateFileGDB(rf"{scratch_folder}", "scratch")
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- del project_folder, scratch_workspace
-
- if not table_names:
- table_names = [row[0] for row in arcpy.da.SearchCursor(os.path.join(project_gdb, "Datasets"), "TableName", where_clause = "TableName LIKE '%_IDW'")]
- else:
- pass
-
- # Pre Processing
- for table_name in table_names:
- arcpy.AddMessage(f"Pre-Processing: {table_name}")
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- region_scratch_workspace = rf"{scratch_folder}\{table_name}\scratch.gdb"
- # Create Scratch Workspace for Region
- if not arcpy.Exists(region_scratch_workspace):
- os.makedirs(os.path.join(scratch_folder, table_name))
- if not arcpy.Exists(region_scratch_workspace):
- arcpy.management.CreateFileGDB(os.path.join(scratch_folder, f"{table_name}"), "scratch")
- del region_scratch_workspace
- #datasets = [ros.path.join(project_gdb, "Datasets") os.path.join(project_gdb, f"{table_name}_Region")]
- #if not any(arcpy.management.GetCount(d)[0] == 0 for d in datasets):
-
- if not arcpy.Exists(os.path.join(scratch_folder, f"{table_name}.gdb")):
- arcpy.management.CreateFileGDB(rf"{scratch_folder}", f"{table_name}")
- arcpy.AddMessage("\tCreate File GDB: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- else:
- pass
-
- arcpy.management.Copy(os.path.join(project_gdb, "Datasets"), rf"{region_gdb}\Datasets")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.management.Copy(os.path.join(project_gdb, f"{table_name}_Region"), rf"{region_gdb}\{table_name}_Region")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- del region_gdb, table_name
-
- # Sequential Processing
- if Sequential:
- arcpy.AddMessage("Sequential Processing")
- for i in range(0, len(table_names)):
- arcpy.AddMessage(f"Processing: {table_names[i]}")
- table_name = table_names[i]
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- try:
- worker(region_gdb=region_gdb)
- except: # noqa: E722
- traceback.print_exc()
- sys.exit()
- del region_gdb, table_name
- del i
- else:
- pass
-
- # Non-Sequential Processing
- if not Sequential:
- arcpy.AddMessage("Non-Sequential Processing")
- # Imports
- import multiprocessing
- from time import time, localtime, strftime, sleep, gmtime
- arcpy.AddMessage("Start multiprocessing using the ArcGIS Pro pythonw.exe.")
- #Set multiprocessing exe in case we're running as an embedded process, i.e ArcGIS
- #get_install_path() uses a registry query to figure out 64bit python exe if available
- multiprocessing.set_executable(os.path.join(sys.exec_prefix, 'pythonw.exe'))
- # Get CPU count and then take 2 away for other process
- _processes = multiprocessing.cpu_count() - 2
- _processes = _processes if len(table_names) >= _processes else len(table_names)
- arcpy.AddMessage(f"Creating the multiprocessing Pool with {_processes} processes")
- #Create a pool of workers, keep one cpu free for surfing the net.
- #Let each worker process only handle 1 task before being restarted (in case of nasty memory leaks)
- with multiprocessing.Pool(processes=_processes, maxtasksperchild=1) as pool:
- arcpy.AddMessage("\tPrepare arguments for processing")
- # Use apply_async so we can handle exceptions gracefully
- jobs={}
- for i in range(0, len(table_names)):
- try:
- arcpy.AddMessage(f"Processing: {table_names[i]}")
- table_name = table_names[i]
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- jobs[table_name] = pool.apply_async(worker, [region_gdb])
- del table_name, region_gdb
- except: # noqa: E722
- pool.terminate()
- traceback.print_exc()
- sys.exit()
- del i
- all_finished = False
- # Set a start time so that we can see how log things take
- start_time = time()
- result_completed = {}
- while True:
- all_finished = True
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- arcpy.AddMessage(f"\nStart Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage("Have the workers finished?")
-
- finish_time = strftime('%a %b %d %I:%M %p', localtime())
- time_elapsed = u"Elapsed Time {0} (H:M:S)".format(strftime("%H:%M:%S", gmtime(elapse_time)))
- arcpy.AddMessage(f"It's {finish_time}\n{time_elapsed}")
- finish_time = f"{finish_time}.\n\t{time_elapsed}"
- del time_elapsed
- for table_name, result in jobs.items():
- if result.ready():
- if table_name not in result_completed:
- result_completed[table_name] = finish_time
- try:
- # wait for and get the result from the task
- result.get()
- except SystemExit:
- pool.terminate()
- traceback.print_exc()
- sys.exit()
- else:
- pass
- arcpy.AddMessage(f"Process {table_name}\n\tFinished on {result_completed[table_name]}")
- else:
- all_finished = False
- arcpy.AddMessage(f"Process {table_name} is running. . .")
- del table_name, result
- del elapse_time, end_time, finish_time
- if all_finished:
- break
- sleep(_processes * 7.5)
- del result_completed
- del start_time
- del all_finished
- arcpy.AddMessage("\tClose the process pool")
- # close the process pool
- pool.close()
- # wait for all tasks to complete and processes to close
- arcpy.AddMessage("\tWait for all tasks to complete and processes to close")
- pool.join()
- # Just in case
- pool.terminate()
- del pool
- del jobs
- del _processes
- del time, multiprocessing, localtime, strftime, sleep, gmtime
- arcpy.AddMessage("\tDone with multiprocessing Pool")
-
- # Post-Processing
- arcpy.AddMessage("Post-Processing Begins")
- arcpy.AddMessage("Processing Results")
- datasets = list()
- walk = arcpy.da.Walk(scratch_folder, datatype=["Table", "FeatureClass"])
- for dirpath, dirnames, filenames in walk:
- for filename in filenames:
- datasets.append(os.path.join(dirpath, filename))
- del filename
- del dirpath, dirnames, filenames
- del walk
- for dataset in datasets:
- datasets_short_path = f".. {'/'.join(dataset.split(os.sep)[-4:])}"
- dataset_name = os.path.basename(dataset)
- region_gdb = os.path.dirname(dataset)
- arcpy.AddMessage(f"\tDataset: '{dataset_name}'")
- arcpy.AddMessage(f"\t\tPath: '{datasets_short_path}'")
- arcpy.AddMessage(f"\t\tRegion GDB: '{os.path.basename(region_gdb)}'")
- arcpy.management.Copy(dataset, rf"{project_gdb}\{dataset_name}")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- #arcpy.management.Delete(dataset)
- #arcpy.AddMessage(f"\t\tAlter Fields for: '{dataset}'")
- #dismap_tools.alter_fields(csv_data_folder, rf"{project_gdb}\{dataset}")
- del region_gdb, dataset_name, datasets_short_path
- del dataset
- del datasets
- arcpy.AddMessage(f"Compacting the {os.path.basename(project_gdb)} GDB")
- arcpy.management.Compact(project_gdb)
- arcpy.AddMessage("\t"+arcpy.GetMessages(0).replace("\n", "\n\t"))
- # Declared Variables assigned in function
- del scratch_folder, csv_data_folder
- # Imports
- del dismap_tools, worker, md
- # Function Parameters
- del project_gdb, Sequential, table_names
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def script_tool(project_gdb=""):
- try:
- # Imports
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
- #arcpy.AddMessage(project_gdb)
- # Test if passed workspace exists, if not sys.exit()
- if not arcpy.Exists(project_gdb):
- arcpy.AddError(f"{os.path.basename(project_gdb)} is missing!!")
- sys.exit()
- else:
- pass
-
- try:
- # "AI_IDW", "EBS_IDW", "ENBS_IDW", "GMEX_IDW", "GOA_IDW", "HI_IDW", "NBS_IDW", "NEUS_FAL_IDW", "NEUS_SPR_IDW",
- # "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW", "WC_ANN_IDW", "WC_TRI_IDW",
- Test = False
- if Test:
- director(project_gdb=project_gdb, Sequential=True, table_names=["GMEX_IDW"])
- #director(project_gdb=project_gdb, Sequential=True, table_names=["NBS_IDW", "HI_IDW"])
- elif not Test:
- #director(project_gdb=project_gdb, Sequential=True, table_names=["AI_IDW", "EBS_IDW", "ENBS_IDW", "GMEX_IDW", "GOA_IDW", "HI_IDW", "NBS_IDW", ])
- #director(project_gdb=project_gdb, Sequential=False, table_names=["NEUS_FAL_IDW", "NEUS_SPR_IDW", "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW", "WC_ANN_IDW", "WC_TRI_IDW"])
- director(project_gdb=project_gdb, Sequential=False, table_names=["AI_IDW", "EBS_IDW", "ENBS_IDW", "GMEX_IDW", "GOA_IDW", "HI_IDW", "NBS_IDW", "NEUS_FAL_IDW", "NEUS_SPR_IDW", "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW", "WC_ANN_IDW", "WC_TRI_IDW"])
- else:
- pass
- del Test
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
-
- # Declared Variables
- # Imports
- # Function Parameters
- del project_gdb
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- hours, rem = divmod(end_time-start_time, 3600)
- minutes, seconds = divmod(rem, 60)
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"End Time: {strftime('%a %b %d %I:%M %p', localtime(end_time))}")
- arcpy.AddMessage(f"Elapsed Time {int(hours):0>2}:{int(minutes):0>2}:{seconds:05.2f} (H:M:S)")
- arcpy.AddMessage(f"{'-' * 80}")
- del hours, rem, minutes, seconds
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-if __name__ == '__main__':
- try:
- project_gdb = arcpy.GetParameterAsText(0)
- if not project_gdb:
- project_gdb = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026\\February 1 2026.gdb")
- else:
- pass
- script_tool(project_gdb)
- arcpy.SetParameterAsText(1, "Result")
- del project_gdb
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_region_sample_locations_worker.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_region_sample_locations_worker.py
deleted file mode 100644
index 1efb8ec..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_region_sample_locations_worker.py
+++ /dev/null
@@ -1,641 +0,0 @@
-# -*- coding: utf-8 -*-
-#-------------------------------------------------------------------------------
-# Name: module1
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 29/02/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-#-------------------------------------------------------------------------------
-import os
-import sys
-import traceback
-import inspect
-
-import arcpy # third-parties second
-
-def worker(region_gdb=""):
- try:
- # Import the dismap_tools module to access tools
- import dismap_tools
- # Import
- from arcpy import metadata as md
- import pandas as pd
- import numpy as np
- import warnings
-
- # Use all of the cores on the machine
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.env.overwriteOutput = True
-
- # Set History and Metadata logs, set serverity and message levelarcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- # Set basic workkpace variables
- table_name = os.path.basename(region_gdb).replace(".gdb", "")
- scratch_folder = os.path.dirname(region_gdb)
- project_folder = os.path.dirname(scratch_folder)
- csv_data_folder = rf"{project_folder}\CSV_Data"
- process_table = rf"{csv_data_folder}\{table_name}.csv"
- scratch_workspace = os.path.join(scratch_folder, "scratch.gdb")
- del scratch_folder
-
- # Set basic workkpace variables
- arcpy.env.workspace = region_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
-
- field_csv_dtypes = dismap_tools.dTypesCSV(csv_data_folder, table_name)
- field_gdb_dtypes = dismap_tools.dTypesGDB(csv_data_folder, table_name)
-
- #print(field_csv_dtypes)
- #print(field_gdb_dtypes)
- #sys.exit()
-
- # DatasetCode, CSVFile, TransformUnit, TableName, GeographicArea, CellSize,
- # PointFeatureType, FeatureClassName, Region, Season, DateCode, Status,
- # DistributionProjectCode, DistributionProjectName, SummaryProduct,
- # FilterRegion, FilterSubRegion, FeatureServiceName, FeatureServiceTitle,
- # MosaicName, MosaicTitle, ImageServiceName, ImageServiceTitle
-
- # Get values for table_name from Datasets table
- fields = ["TableName", "GeographicArea", "DatasetCode", "Region", "Season", "DistributionProjectCode"]
- region_list = [row for row in arcpy.da.SearchCursor(rf"{region_gdb}\Datasets", fields, where_clause = f"TableName = '{table_name}'")][0]
- del table_name
-
- # Assigning variables from items in the chosen table list
- # ['AI_IDW', 'AI_IDW_Region', 'AI', 'Aleutian Islands', None, 'IDW']
- table_name = region_list[0]
- geographic_area = region_list[1]
- datasetcode = region_list[2]
- region = region_list[3]
- season = region_list[4]
- distri_code = region_list[5]
- del region_list
-
- # Start of business logic for the worker function
- arcpy.AddMessage(f"Reading {table_name} CSV File\n")
-
- pd.set_option("display.max_columns", None)
- pd.set_option("display.max_colwidth", 10)
- pd.set_option("display.min_rows", 2)
- pd.set_option("display.max_rows", 5)
- pd.set_option("display.expand_frame_repr", False)
-
- encoding, index_column = dismap_tools.get_encoding_index_col(process_table)
-
- with warnings.catch_warnings():
- warnings.simplefilter(action='ignore', category=FutureWarning)
- # DataFrame
- df = pd.read_csv(
- process_table,
- index_col = index_column,
- encoding = encoding,
- delimiter = ",",
- dtype = field_csv_dtypes,
- )
- del encoding, index_column
-
- # Rename columns using the dictionary below and the defined list of field names
- # Easting,Northing,year,depth_m,median_est,mean_est,est5,est95,spp_sci,spp_common
- # mean_est, est5, est95
- column_names = {
- "common" : "CommonName",
- "depth" : "Depth",
- "depth_m" : "Depth",
- "DistributionProjectName" : "DistributionProjectName",
- "est5" : "Estimate5",
- "est95" : "Estimate95",
- "haulid" : "SampleID",
- "lat" : "Latitude",
- "lat_UTM" : "Northing",
- "lon" : "Longitude",
- "lon_UTM" : "Easting",
- "mean_est" : "MeanEstimate",
- "median_est" : "MedianEstimate",
- "region" : "Region",
- "sampleid" : "SampleID",
- "spp" : "Species",
- "spp_common" : "CommonName",
- "spp_sci" : "Species",
- "stratum" : "Stratum",
- "stratumarea" : "StratumArea",
- "transformed" : "MapValue",
- "wtcpue" : "WTCPUE",
- "year" : "Year",
- "CoreSpecies" : "CoreSpecies"
- }
-
- df.rename(columns=column_names, inplace=True)
- del column_names
-
- # Print column names
- #for column in list(df.columns): arcpy.AddMessage(column); del column # print columns
-
- # ###--->>>
- arcpy.AddMessage("Inserting additional columns into the dataframe\n")
-
- arcpy.AddMessage(f"\tInserting 'DatasetCode' column into: {table_name}")
- df.insert(0, "DatasetCode", datasetcode)
- del datasetcode
-
- arcpy.AddMessage(f"\tInserting 'Region' column into: {table_name}")
- if "Region" not in list(df.columns):
- df.insert(df.columns.get_loc("DatasetCode")+1, "Region", f"{region}")
-
- arcpy.AddMessage(f"\tInserting 'StdTime' column into: {table_name}")
- if "StdTime" not in list(df.columns):
- df.insert(df.columns.get_loc("Year")+1, "StdTime", pd.to_datetime(df["Year"], format="%Y").dt.tz_localize('Etc/GMT+12'))
-
- arcpy.AddMessage(f"\tInserting 'MapValue' column into: {table_name}")
- if "MapValue" not in list(df.columns):
- df.insert(df.columns.get_loc("WTCPUE")+1, "MapValue", np.nan)
- #-->> MapValue
- arcpy.AddMessage("\tCalculating the MapValue values")
- df["MapValue"] = df["WTCPUE"].pow((1.0/3.0))
-
- arcpy.AddMessage(f"\tInserting 'SpeciesCommonName' column into: {table_name}")
- if "SpeciesCommonName" not in list(df.columns):
- df.insert(df.columns.get_loc("CommonName")+1, "SpeciesCommonName", "")
-
- arcpy.AddMessage(f"\tInserting 'CommonNameSpecies' column into: {table_name}")
- if "CommonNameSpecies" not in list(df.columns):
- df.insert(df.columns.get_loc("SpeciesCommonName")+1, "CommonNameSpecies", "")
-
- # Test if 'IDW' in table name
- #if "IDW" in table_name:
- arcpy.AddMessage(f"\tInserting 'Season' {season} column into: {table_name}")
- if "Season" not in list(df.columns):
- df.insert(df.columns.get_loc("Region")+1, "Season", season if season is not None else "")
-
- arcpy.AddMessage(f"\tInserting 'SummaryProduct' column into: {table_name}")
- if "SummaryProduct" not in list(df.columns):
- df.insert(df.columns.get_loc("Season")+1, "SummaryProduct", "Yes")
-
- arcpy.AddMessage(f"\tInserting 'TransformUnit' column into: {table_name}")
- if "TransformUnit" not in list(df.columns):
- df.insert(df.columns.get_loc("MapValue")+1, "TransformUnit", "cuberoot")
-
- arcpy.AddMessage(f"\tInserting 'CoreSpecies' column into: {table_name}")
- if "CoreSpecies" not in list(df.columns):
- df.insert(df.columns.get_loc("CommonNameSpecies")+1, "CoreSpecies", "No")
-
- arcpy.AddMessage(f"\tCalculate Null for 'StratumArea' column into: {table_name}")
- if "StratumArea" in list(df.columns):
- #df["StratumArea"].fillna(np.nan, inplace = True)
- df["StratumArea"] = df["StratumArea"].fillna(np.nan)
-
- arcpy.AddMessage(f"\tCalculate Null for 'DistributionProjectName' column into: {table_name}")
- if "DistributionProjectName" in list(df.columns):
- #df["DistributionProjectName"].fillna(np.nan, inplace = True)
- df["DistributionProjectName"] = df["DistributionProjectName"].fillna(np.nan)
-
- arcpy.AddMessage(f"\tCalculate Null for 'WTCPUE' column into: {table_name}")
- if "WTCPUE" in list(df.columns):
- df["WTCPUE"] = df["WTCPUE"].fillna(np.nan)
-
- arcpy.AddMessage(f"\tCalculate Null for 'Latitude' column into: {table_name}")
- if "Latitude" in list(df.columns):
- df["Latitude"] = df["Latitude"].fillna(np.nan)
-
- arcpy.AddMessage(f"\tCalculate Null for 'Longitude' column into: {table_name}")
- if "Longitude" in list(df.columns):
- df["Longitude"] = df["Longitude"].fillna(np.nan)
-
- arcpy.AddMessage(f"\tCalculate Null for 'Depth' column into: {table_name}")
- if "Depth" in list(df.columns):
- df["Depth"] = df["Depth"].fillna(np.nan)
-
- del region, season
-
- # ###--->>>
- #arcpy.AddMessage(f"Updating and calculating new values for some columns\n")
- #-->> DistributionProjectName
- arcpy.AddMessage("\tSetting 'NaN' in 'DistributionProjectName' to ''")
- #df.loc[df['DistributionProjectName'] == 'nan', 'DistributionProjectName'] = ""
- df["DistributionProjectName"] = df["DistributionProjectName"].fillna("")
-
- #-->> CommonName
- arcpy.AddMessage("\tSetting 'NaN' in 'CommonName' to ''")
- #df.loc[df['CommonName'] == 'nan', 'CommonName'] = ""
- df["CommonName"] = df["CommonName"].fillna("")
-
- arcpy.AddMessage("\tSetting 'CommonName' unicode'")
- # Cast text as Unicode in the CommonName field
- df["CommonName"] = df["CommonName"].astype("unicode")
-
- #-->> SpeciesCommonName
- arcpy.AddMessage("\tCalculating SpeciesCommonName and setting it to 'Species (CommonName)'")
- df["SpeciesCommonName"] = np.where(df["CommonName"] != "", df["Species"] + ' (' + df["CommonName"] + ')', "")
-
- #-->> CommonNameSpecies
- arcpy.AddMessage("\tCalculating CommonNameSpecies and setting it to 'CommonName (Species)'")
- df["CommonNameSpecies"] = np.where(df["CommonName"] != "", df["CommonName"] + ' (' + df["Species"] + ')', "")
-
- arcpy.AddMessage("\tReplacing Infinity values with Nulls")
- # Replace Inf with Nulls
- # For some cell values in the 'WTCPUE' column, there is an Inf
- # value representing an infinit
- df.replace([np.inf, -np.inf], np.nan, inplace=True)
-
- # Left justify the column names
- #df.columns = pd.Index([col.ljust(10) for col in df.columns])
-
- table_definition = dismap_tools.table_definitions(csv_data_folder, table_name)
- #arcpy.AddMessage(table_definition)
-
- # altering the DataFrame
- df = df[table_definition]
- del table_definition
-
- #raise SystemExist(f"Line Number: {traceback.extract_stack()[-1].lineno}")
-
- pd.set_option("display.max_colwidth", 12)
-
- # Change Table Style
- df.style.set_table_styles([{'selector': 'td', 'props': 'white-space: nowrap !important;'}])
-
- arcpy.AddMessage(f"\nDataframe report:\n{df.head(5)}\n")
-
- arcpy.AddMessage("Converting the Dataframe to an NumPy Array\n")
- try:
- array = np.array(np.rec.fromrecords(df.values), dtype = field_gdb_dtypes)
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
-
- del field_gdb_dtypes
- del field_csv_dtypes
-
- del df # delete dataframe
- # Imports
- del pd, np
-
- # Temporary table
- #tmp_table = f"memory\{table_name.lower()}_tmp"
- tmp_table = rf"{region_gdb}\{table_name.lower()}_tmp"
- try:
- arcpy.da.NumPyArrayToTable(array, tmp_table)
- del array
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
-
- desc = arcpy.da.Describe(tmp_table)
- fields = [f.name for f in desc["fields"] if f.type == "String"]
- #fields = ["Season", "Species", "CommonName", "SpeciesCommonName", "CommonNameSpecies", "Stratum"]
- oid = desc["OIDFieldName"]
- # Use SQL TOP to sort field values
- arcpy.AddMessage(f"{', '.join(fields)}")
- for row in arcpy.da.SearchCursor(tmp_table, fields, f"{oid} <= 5"):
- arcpy.AddMessage(row)
- del row
- del desc, fields, oid
-
- out_table = rf"{region_gdb}\{table_name}"
- #out_table = rf"{region_gdb}\{table_name}_TABLE"
-
- arcpy.AddMessage(f"Copying the {table_name} Table from memory to the GDB")
- arcpy.management.CopyRows(tmp_table, out_table, "")
- arcpy.AddMessage("Copy Rows: \t{0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- # Remove the temporary table
- arcpy.management.Delete(tmp_table)
- del tmp_table
-
- process_table_md = md.Metadata(process_table)
- out_table_md = md.Metadata(out_table)
- out_table_md.copy(process_table_md)
- out_table_md.save()
- out_table_md.synchronize("OVERWRITE")
- out_table_md.save()
- out_table_md.synchronize("ALWAYS")
- out_table_md.save()
- del out_table_md
- del process_table_md
-
- del process_table # delete passed variables
-
- # Test if 'IDW' in region name
- #if distri_code == "IDW":
- # # Calculate Core Species
- # dismap_tools.calculate_core_species(out_table)
-
- #arcpy.conversion.ExportTable(in_table = out_table, out_table = f"{csv_data_folder}\_{table_name}.csv", where_clause="", use_field_alias_as_name = "NOT_USE_ALIAS")
- #arcpy.AddMessage("Export Table: \t{0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.AddMessage(f"Creating the {table_name} Sample Locations Dataset")
-
- # Set the output coordinate system to what is needed for the
- # DisMAP project
- #geographic_area_sr = os.path.join(f"{project_folder}", "Dataset_Shapefiles", f"{table_name}", f"{geographic_area}.prj")
- #psr = arcpy.SpatialReference(geographic_area_sr); del geographic_area_sr
- #arcpy.env.outputCoordinateSystem = psr
- psr = arcpy.Describe(rf"{region_gdb}\{table_name}_Region").spatialReference
-
- arcpy.env.outputCoordinateSystem = psr
-
- out_features = ""
-
- #if distri_code == "IDW":
-
- # 4326 - World Geodetic System 1984 (WGS 84)
- gsr = arcpy.SpatialReference(4326)
- gsr_wkt = gsr.exportToString()
- psr_wkt = psr.exportToString()
- transformation = dismap_tools.get_transformation(gsr_wkt, psr_wkt)
- arcpy.env.geographicTransformations = transformation
- del gsr_wkt, psr_wkt
- del transformation
-
- arcpy.AddMessage("\tMake XY Event layer for IDW datasets")
- # Set the output coordinate system to what is needed for the
- # DisMAP project
- #gsr = "GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',SPHEROID['WGS_1984',6378137.0,298.257223563]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]]"
- x_coord, y_coord = 'Longitude', 'Latitude'
- xy_events = arcpy.management.MakeXYEventLayer(out_table, x_coord, y_coord, "xy_events", gsr, "#")
- del x_coord, y_coord
-
- out_features = rf"{region_gdb}\{table_name}_Sample_Locations"
-
- with arcpy.EnvManager(scratchWorkspace = scratch_workspace, workspace = region_gdb):
- arcpy.conversion.ExportFeatures(in_features = xy_events,
- out_features = out_features,
- where_clause = "",
- use_field_alias_as_name = "",
- field_mapping = "",
- sort_field = "")
- # Clear the XY Event Layer from memory.
- arcpy.management.Delete("xy_events")
- del xy_events, psr
-
- #arcpy.AddMessage(f"\tXY TableToNumPyArray to Feature Class")
- #fields = [f.name for f in arcpy.ListFields(out_table) if f.type not in ["Geometry", "OID"]]
- #arr = arcpy.da.TableToNumPyArray(out_table, fields)
- #arcpy.da.NumPyArrayToFeatureClass(arr, out_features, ('Longitude', 'Latitude'), gsr)
- #del arr, fields
-
- del gsr
-
- #elif distri_code != "IDW":
- #
- # x_field, y_field = 'Easting', 'Northing'
- # out_features = rf"{region_gdb}\{table_name}_GRID_Points"
- #
- # arcpy.AddMessage(f"\tXY Table to Feature Class")
- # arcpy.management.XYTableToPoint(out_table, out_features, x_field, y_field, "#", psr)
- # del x_field, y_field
-
- del geographic_area
- del distri_code
-
- if arcpy.Exists(out_features):
- arcpy.AddMessage(f"Adding field index in the {table_name} Point Locations Dataset")
-
- # Add Attribute Index
- arcpy.management.AddIndex(out_features, ['Species', 'CommonName', 'SpeciesCommonName', 'Year'], f"{table_name}_SampleLocationsSpeciesIndex", "NON_UNIQUE", "NON_ASCENDING")
-
- # Get the count of records for selected species
- getcount = arcpy.management.GetCount(out_features)[0]
- arcpy.AddMessage(f"\t{os.path.basename(out_features)} has {getcount} records")
- del getcount
- else:
- pass
-
- out_table_md = md.Metadata(out_table)
- out_features_md = md.Metadata(out_features)
- out_features_md.copy(out_table_md)
- out_features_md.save()
- out_features_md.synchronize("OVERWRITE")
- out_features_md.save()
- out_features_md.synchronize("ALWAYS")
- out_features_md.save()
- del out_features_md
- del out_table_md
-
- arcpy.AddMessage(f"\t\tAlter Fields for: '{os.path.basename(out_features)}'")
- dismap_tools.alter_fields(csv_data_folder, out_features)
-
- dataset_md = md.Metadata(out_features)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- del dataset_md
-
- arcpy.AddMessage(f"\t\tAlter Fields for: '{os.path.basename(out_table)}'")
- dismap_tools.alter_fields(csv_data_folder, out_table)
-
- dataset_md = md.Metadata(out_table)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- del dataset_md
-
- arcpy.management.Delete(rf"{region_gdb}\{table_name}_Boundary")
- arcpy.management.Delete(rf"{region_gdb}\{table_name}_Region")
- arcpy.management.Delete(rf"{region_gdb}\Datasets")
-
- # Declared Variables
- del out_table, out_features
- del table_name, project_folder, scratch_workspace, csv_data_folder
- # Imports
- del warnings, md
- del dismap_tools
- # Function parameter
- del region_gdb
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(f"Caught an arcpy.ExecuteWarning error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(f"Caught an arcpy.ExecuteError error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except SystemExit as se:
- arcpy.AddError(f"Caught an SystemExit error: {se} in the '{inspect.stack()[0][3]}' function.")
- sys.exit()
- except Exception as e:
- arcpy.AddError(f"Caught an Exception error: {e} in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(f"Caught an except error in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- pass
-
-def script_tool(project_gdb=""):
- try:
- import dismap_tools
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
- # Imports
- # Set basic arcpy.env variables
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- # Set varaibales
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = rf"{project_folder}\Scratch"
- del project_folder
-
- # Clear Image Folder
- ClearImageFolder = True
- if ClearImageFolder:
- dismap_tools.clear_folder(folder=scratch_folder)
- else:
- pass
- del ClearImageFolder
-
- # Test if passed workspace exists, if not sys.exit()
- if not arcpy.Exists(project_gdb):
- sys.exit()(f"{os.path.basename(project_gdb)} is missing!!")
-
- # Create project scratch workspace, if missing
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- if not arcpy.Exists(scratch_folder):
- os.makedirs(scratch_folder)
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- arcpy.management.CreateFileGDB(rf"{scratch_folder}", "scratch")
-
- # Set worker parameters
- table_name = "AI_IDW"
- #table_name = "HI_IDW"
- #table_name = "NBS_IDW"
- #table_name = "SEUS_SPR_IDW"
- #table_name = "GMEX_IDW"
- #table_name = "ENBS_IDW"
-
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- scratch_workspace = rf"{scratch_folder}\{table_name}\scratch.gdb"
-
- # Create worker scratch workspace, if missing
- if not arcpy.Exists(scratch_workspace):
- os.makedirs(os.path.join(scratch_folder, table_name))
- if not arcpy.Exists(scratch_workspace):
- arcpy.management.CreateFileGDB(os.path.join(scratch_folder, f"{table_name}"), "scratch")
- del scratch_workspace
-
- # Setup worker workspace and copy data
- #datasets = [ros.path.join(project_gdb, "Datasets") os.path.join(project_gdb, f"{table_name}_Region")]
- #if not any(arcpy.management.GetCount(d)[0] == 0 for d in datasets):
- if not arcpy.Exists(os.path.join(scratch_folder, f"{table_name}.gdb")):
- arcpy.management.CreateFileGDB(rf"{scratch_folder}", f"{table_name}")
- arcpy.AddMessage("\tCreate File GDB: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- else:
- pass
- arcpy.management.Copy(os.path.join(project_gdb, "Datasets"), rf"{region_gdb}\Datasets")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.management.Copy(os.path.join(project_gdb, f"{table_name}_Region"), rf"{region_gdb}\{table_name}_Region")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- #else:
- # arcpy.AddWarning(f"One or more datasets contains zero records!!")
- # for d in datasets:
- # arcpy.AddMessage(f"\t{os.path.basename(d)} has {arcpy.management.GetCount(d)[0]} records")
- # del d
- # se = f"SystemExit at line number: '{traceback.extract_stack()[-1].lineno}'"
- # sys.exit()(se)
- #if "datasets" in locals().keys(): del datasets
-
- try:
- pass
- worker(region_gdb=region_gdb)
- except SystemExit:
- arcpy.AddMessage(arcpy.GetMessages())
- sys.exit()
- #arcpy.AddMessage(f"caught SystemExit in '{inspect.stack()[0][3]}'")
-
-
- # Declared Varaiables
- del region_gdb, table_name, scratch_folder
- # Imports
- del dismap_tools
- # Function Parameters
- del project_gdb
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- hours, rem = divmod(end_time-start_time, 3600)
- minutes, seconds = divmod(rem, 60)
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"End Time: {strftime('%a %b %d %I:%M %p', localtime(end_time))}")
- arcpy.AddMessage(f"Elapsed Time {int(hours):0>2}:{int(minutes):0>2}:{seconds:05.2f} (H:M:S)")
- arcpy.AddMessage(f"{'-' * 80}")
- del hours, rem, minutes, seconds
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-if __name__ == '__main__':
- try:
- project_gdb = arcpy.GetParameterAsText(0)
- if not project_gdb:
- project_gdb = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026\\February 1 2026.gdb")
- else:
- pass
- script_tool(project_gdb)
- arcpy.SetParameterAsText(1, "Result")
- del project_gdb
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_regions_from_shapefiles_director.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_regions_from_shapefiles_director.py
deleted file mode 100644
index 3cc5973..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_regions_from_shapefiles_director.py
+++ /dev/null
@@ -1,463 +0,0 @@
-# -*- coding: utf-8 -*-
-#-------------------------------------------------------------------------------
-# Name: module1
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 03/03/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-#-------------------------------------------------------------------------------
-import os
-import sys
-import traceback
-import inspect
-
-import arcpy # third-parties second
-
-def create_dismap_regions(project_gdb=""):
- try:
- import dismap_tools
-
- project_folder = os.path.dirname(project_gdb)
- csv_data_folder = os.path.join(project_folder, "CSV_Data")
-
- arcpy.env.overwriteOutput = True
-
- if arcpy.Exists(os.path.join(project_gdb, "DisMAP_Regions")):
- arcpy.management.Delete(os.path.join(project_gdb, "DisMAP_Regions"))
-
- arcpy.AddMessage("Creating: 'DisMAP_Regions'")
- # Execute Tool
- # Spatial Reference factory code of 4326 is : GCS_WGS_1984
- # Spatial Reference factory code of 5714 is : Mean Sea Level (Height)
- # sr = arcpy.SpatialReference(4326, 5714)
- sp_ref = arcpy.SpatialReference('WGS_1984_Web_Mercator_Auxiliary_Sphere')
- arcpy.management.CreateFeatureclass(
- out_path = project_gdb,
- out_name = "DisMAP_Regions",
- geometry_type = "POLYLINE",
- template = "",
- has_m = "DISABLED",
- has_z = "DISABLED",
- spatial_reference = sp_ref,
- config_keyword = "",
- spatial_grid_1 = "0",
- spatial_grid_2 = "0",
- spatial_grid_3 = "0"
- )
- arcpy.AddMessage("\tCreate Featureclass: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del sp_ref
- dismap_tools.add_fields(csv_data_folder, os.path.join(project_gdb, "DisMAP_Regions"))
- dismap_tools.import_metadata(csv_data_folder, os.path.join(project_gdb, "DisMAP_Regions"))
-
- # Imports
- del dismap_tools
- # Function Parameter
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(f"Caught an arcpy.ExecuteWarning error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(f"Caught an arcpy.ExecuteError error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except SystemExit as se:
- arcpy.AddError(f"Caught an SystemExit error: {se} in the '{inspect.stack()[0][3]}' function.")
- sys.exit()
- except Exception as e:
- arcpy.AddError(f"Caught an Exception error: {e} in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(f"Caught an except error in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- arcpy.management.ClearWorkspaceCache()
-
-def director(project_gdb="", Sequential=True, table_names=[]):
- try:
- # Imports
- from arcpy import metadata as md
-
- # Imports
- import dismap_tools
- from create_regions_from_shapefiles_worker import worker
-
- arcpy.env.overwriteOutput = True
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(1) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = os.path.join(project_folder, "Scratch")
- scratch_workspace = os.path.join(project_folder, "Scratch\\scratch.gdb")
- csv_data_folder = rf"{project_folder}\CSV_Data"
-
- # Clear Scratch Folder
- dismap_tools.clear_folder(folder=scratch_folder)
-
- # Create Scratch Workspace for Project
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- if not arcpy.Exists(scratch_folder):
- os.makedirs(scratch_folder)
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- arcpy.management.CreateFileGDB(rf"{scratch_folder}", "scratch")
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- del project_folder, scratch_workspace
-
- create_dismap_regions(project_gdb)
-
- if not table_names:
- table_names = [row[0] for row in arcpy.da.SearchCursor(os.path.join(project_gdb, "Datasets"),
- "TableName",
- where_clause = "TableName LIKE '%_IDW'")]
- else:
- pass
-
- # Pre Processing
- for table_name in table_names:
- arcpy.AddMessage(f"Pre-Processing: {table_name}")
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- region_scratch_workspace = rf"{scratch_folder}\{table_name}\scratch.gdb"
- # Create Scratch Workspace for Region
- if not arcpy.Exists(region_scratch_workspace):
- os.makedirs(os.path.join(scratch_folder, table_name))
- if not arcpy.Exists(region_scratch_workspace):
- arcpy.management.CreateFileGDB(os.path.join(scratch_folder, f"{table_name}"), "scratch")
- del region_scratch_workspace
-
- #datasets = [ros.path.join(project_gdb, "Datasets"]
- #if not any(arcpy.management.GetCount(d)[0] == 0 for d in datasets):
- if not arcpy.Exists(os.path.join(scratch_folder, f"{table_name}.gdb")):
- arcpy.management.CreateFileGDB(rf"{scratch_folder}", f"{table_name}")
- arcpy.AddMessage("\tCreate File GDB: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- else:
- pass
-
- arcpy.management.Copy(os.path.join(project_gdb, "Datasets"), rf"{region_gdb}\Datasets")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.management.CreateFeatureclass(rf"{region_gdb}", "DisMAP_Regions", "POLYLINE", os.path.join(project_gdb, "DisMAP_Regions"))
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- dismap_regions_md = md.Metadata(os.path.join(project_gdb, "DisMAP_Regions"))
- dataset_md = md.Metadata(rf"{region_gdb}\DisMAP_Regions")
- dataset_md.copy(dismap_regions_md)
- dataset_md.save()
- dataset_md.synchronize("OVERWRITE")
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- del dataset_md, dismap_regions_md
- #else:
- # arcpy.AddWarning(f"One or more datasets contains zero records!!")
- # for d in datasets:
- # arcpy.AddMessage(f"\t{os.path.basename(d)} has {arcpy.management.GetCount(d)[0]} records")
- # del d
- # se = f"SystemExit at line number: '{traceback.extract_stack()[-1].lineno}'"
- # sys.exit()(se)
- #if "datasets" in locals().keys(): del datasets
- del region_gdb
- del table_name
-
- # Sequential Processing
- if Sequential:
- arcpy.AddMessage("Sequential Processing")
- for i in range(0, len(table_names)):
- arcpy.AddMessage(f"Processing: {table_names[i]}")
- table_name = table_names[i]
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- try:
- worker(region_gdb=region_gdb)
- except SystemExit:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- del region_gdb, table_name
- del i
- else:
- pass
-
- # Non-Sequential Processing
- if not Sequential:
- arcpy.AddMessage("Non-Sequential Processing")
- # Imports
- import multiprocessing
- from time import time, localtime, strftime, sleep, gmtime
- arcpy.AddMessage("Start multiprocessing using the ArcGIS Pro pythonw.exe.")
- #Set multiprocessing exe in case we're running as an embedded process, i.e ArcGIS
- #get_install_path() uses a registry query to figure out 64bit python exe if available
- multiprocessing.set_executable(os.path.join(sys.exec_prefix, 'pythonw.exe'))
- # Get CPU count and then take 2 away for other process
- _processes = multiprocessing.cpu_count() - 2
- _processes = _processes if len(table_names) >= _processes else len(table_names)
- arcpy.AddMessage(f"Creating the multiprocessing Pool with {_processes} processes")
- #Create a pool of workers, keep one cpu free for surfing the net.
- #Let each worker process only handle 1 task before being restarted (in case of nasty memory leaks)
- with multiprocessing.Pool(processes=_processes, maxtasksperchild=1) as pool:
- arcpy.AddMessage("\tPrepare arguments for processing")
- # Use apply_async so we can handle exceptions gracefully
- jobs={}
- for i in range(0, len(table_names)):
- try:
- arcpy.AddMessage(f"Processing: {table_names[i]}")
- table_name = table_names[i]
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- jobs[table_name] = pool.apply_async(worker, [region_gdb])
- del table_name, region_gdb
- except: # noqa: E722
- pool.terminate()
- traceback.print_exc()
- sys.exit()
- del i
- all_finished = False
- # Set a start time so that we can see how log things take
- start_time = time()
- result_completed = {}
- while True:
- all_finished = True
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- arcpy.AddMessage(f"\nStart Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage("Have the workers finished?")
- finish_time = strftime('%a %b %d %I:%M %p', localtime())
- time_elapsed = u"Elapsed Time {0} (H:M:S)".format(strftime("%H:%M:%S", gmtime(elapse_time)))
- arcpy.AddMessage(f"It's {finish_time}\n{time_elapsed}")
- finish_time = f"{finish_time}.\n\t{time_elapsed}"
- del time_elapsed
- for table_name, result in jobs.items():
- if result.ready():
- if table_name not in result_completed:
- result_completed[table_name] = finish_time
- try:
- # wait for and get the result from the task
- result.get()
- except SystemExit:
- pool.terminate()
- traceback.print_exc()
- sys.exit()
- else:
- pass
- arcpy.AddMessage(f"Process {table_name}\n\tFinished on {result_completed[table_name]}")
- else:
- all_finished = False
- arcpy.AddMessage(f"Process {table_name} is running. . .")
- del table_name, result
- del elapse_time, end_time, finish_time
- if all_finished:
- break
- sleep(_processes * 7.5)
- del result_completed
- del start_time
- del all_finished
- arcpy.AddMessage("\tClose the process pool")
- # close the process pool
- pool.close()
- # wait for all tasks to complete and processes to close
- arcpy.AddMessage("\tWait for all tasks to complete and processes to close")
- pool.join()
- # Just in case
- pool.terminate()
- del pool
- del jobs
- del _processes
- del time, multiprocessing, localtime, strftime, sleep, gmtime
- arcpy.AddMessage("\tDone with multiprocessing Pool")
-
- # Post-Processing
- arcpy.AddMessage("Post-Processing Begins")
- arcpy.AddMessage("Processing Results")
- datasets = list()
- walk = arcpy.da.Walk(scratch_folder, datatype="FeatureClass", type=["Polyline", "Polygon"])
- for dirpath, dirnames, filenames in walk:
- for filename in filenames:
- datasets.append(os.path.join(dirpath, filename))
- del filename
- del dirpath, dirnames, filenames
- del walk
- for dataset in datasets:
- #print(dataset)
- datasets_short_path = f".. {'/'.join(dataset.split(os.sep)[-4:])}"
- dataset_name = os.path.basename(dataset)
- region_gdb = os.path.dirname(dataset)
- arcpy.AddMessage(f"\tDataset: '{dataset_name}'")
- arcpy.AddMessage(f"\t\tPath: '{datasets_short_path}'")
- arcpy.AddMessage(f"\t\tRegion GDB: '{os.path.basename(region_gdb)}'")
- arcpy.management.Copy(dataset, rf"{project_gdb}\{dataset_name}")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- if dataset_name.endswith("_Boundary"):
- arcpy.AddMessage(f"\tAppending the {dataset_name} Dataset to the DisMAP Regions Dataset")
- # Process: Append
- arcpy.management.Append(inputs = rf"{project_gdb}\{dataset_name}",
- target = os.path.join(project_gdb, "DisMAP_Regions"),
- schema_type = "NO_TEST",
- field_mapping = "",
- subtype = "")
- arcpy.AddMessage("\tAppend: {0} {1}\n".format(os.path.basename(dataset), arcpy.GetMessages(0).replace("\n", '\n\t')))
- else:
- pass
- #arcpy.AddMessage(f"\t\tAlter Fields for: '{dataset_name}'")
- #dismap_tools.alter_fields(csv_data_folder, rf"{project_gdb}\{dataset_name}")
- #dismap_tools.import_metadata(dataset=rf"{project_gdb}\{dataset_name}")
- del region_gdb, dataset_name, datasets_short_path
- del dataset
- del datasets
- arcpy.AddMessage(f"Compacting the {os.path.basename(project_gdb)} GDB")
- arcpy.management.Compact(project_gdb)
- arcpy.AddMessage("\t"+arcpy.GetMessages(0).replace("\n", "\n\t"))
- # Declared Variables
- del scratch_folder, csv_data_folder
- # Imports
- del dismap_tools, worker, md
- # Function Parameters
- del project_gdb, Sequential, table_names
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(f"Caught an arcpy.ExecuteWarning error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(f"Caught an arcpy.ExecuteError error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except SystemExit as se:
- arcpy.AddError(f"Caught an SystemExit error: {se} in the '{inspect.stack()[0][3]}' function.")
- sys.exit()
- except Exception as e:
- arcpy.AddError(f"Caught an Exception error: {e} in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(f"Caught an except error in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- pass
-
-def script_tool(project_gdb=""):
- try:
- # Imports
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
- try:
- pass
- # "AI_IDW", "EBS_IDW", "ENBS_IDW", "GMEX_IDW", "GOA_IDW", "HI_IDW", "NBS_IDW", "NEUS_FAL_IDW", "NEUS_SPR_IDW",
- # "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW", "WC_ANN_IDW", "WC_TRI_IDW",
- test = False
- if test:
- #director(project_gdb=project_gdb, Sequential=True, table_names=["HI_IDW"])
- director(project_gdb=project_gdb, Sequential=True, table_names=["SEUS_SPR_IDW", "HI_IDW"])
- #create_dismap_regions(project_gdb)
- elif not test:
- #director(project_gdb=project_gdb, Sequential=False, table_names=["NBS_IDW", "ENBS_IDW", "HI_IDW", "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW",])
- #director(project_gdb=project_gdb, Sequential=False, table_names=["WC_TRI_IDW", "GMEX_IDW", "AI_IDW", "GOA_IDW", "WC_ANN_IDW", "NEUS_FAL_IDW",])
- #director(project_gdb=project_gdb, Sequential=False, table_names=["NEUS_SPR_IDW", "EBS_IDW"])
- director(project_gdb=project_gdb, Sequential=False, table_names=[])
- del test
- except: # noqa: E722
- traceback.print_exc()
- sys.exit()
-
- # Declared Varaiables
- del project_gdb
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- hours, rem = divmod(end_time-start_time, 3600)
- minutes, seconds = divmod(rem, 60)
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"End Time: {strftime('%a %b %d %I:%M %p', localtime(end_time))}")
- arcpy.AddMessage(f"Elapsed Time {int(hours):0>2}:{int(minutes):0>2}:{seconds:05.2f} (H:M:S)")
- arcpy.AddMessage(f"{'-' * 80}")
- del hours, rem, minutes, seconds
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(f"Caught an arcpy.ExecuteWarning error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(f"Caught an arcpy.ExecuteError error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except SystemExit as se:
- arcpy.AddError(f"Caught an SystemExit error: {se} in the '{inspect.stack()[0][3]}' function.")
- sys.exit()
- except Exception as e:
- arcpy.AddError(f"Caught an Exception error: {e} in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(f"Caught an except error in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- pass
-
-if __name__ == '__main__':
- try:
- project_gdb = arcpy.GetParameterAsText(0)
- if not project_gdb:
- project_gdb = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026\\February 1 2026.gdb")
- else:
- pass
- script_tool(project_gdb)
- arcpy.SetParameterAsText(1, "Result")
- del project_gdb
- except: # noqa: E722
- traceback.print_exc()
- else:
- pass
- finally:
- pass
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_regions_from_shapefiles_director.zip b/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_regions_from_shapefiles_director.zip
deleted file mode 100644
index 36a1a0d..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_regions_from_shapefiles_director.zip and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_regions_from_shapefiles_worker.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_regions_from_shapefiles_worker.py
deleted file mode 100644
index 1742a49..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_regions_from_shapefiles_worker.py
+++ /dev/null
@@ -1,408 +0,0 @@
-# -*- coding: utf-8 -*-
-#-------------------------------------------------------------------------------
-# Name: module1
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 03/03/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-#-------------------------------------------------------------------------------
-import os
-import sys
-import traceback
-import inspect
-
-import arcpy # third-parties second
-
-def worker(region_gdb=""):
- try:
- # Test if passed workspace exists, if not sys.exit()
- if not arcpy.Exists(rf"{region_gdb}"):
- sys.exit()(f"{os.path.basename(region_gdb)} is missing!!")
-
- # Import the dismap_tools module to access tools
- import dismap_tools
- # Imports
- from arcpy import metadata as md
-
- # Set History and Metadata logs, set serverity and message level
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- # Set basic workkpace variables
- table_name = os.path.basename(region_gdb).replace(".gdb","")
- scratch_folder = os.path.dirname(region_gdb)
- project_folder = os.path.dirname(scratch_folder)
- csv_data_folder = rf"{project_folder}\CSV_Data"
- scratch_workspace = rf"{scratch_folder}\{table_name}\scratch.gdb"
-
- arcpy.AddMessage(f"Table Name: {table_name}\nProject Folder: {os.path.basename(project_folder)}\nScratch Folder: {os.path.basename(scratch_folder)}\n")
-
- del scratch_folder
-
- # Set basic workkpace variables
- arcpy.env.workspace = region_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- del scratch_workspace
-
- # DatasetCode CSVFile TransformUnit TableName GeographicArea CellSize
- # PointFeatureType FeatureClassName Region Season DateCode
- # Status DistributionProjectCode DistributionProjectName
- # SummaryProduct FilterRegion FilterSubRegion FeatureServiceName
- # FeatureServiceTitle MosaicName MosaicTitle ImageServiceName, ImageServiceTitle
-
- fields = ["TableName", "GeographicArea", "DatasetCode", "Region", "Season", "DistributionProjectCode"]
- region_list = [row for row in arcpy.da.SearchCursor(rf"{region_gdb}\Datasets", fields, where_clause = f"TableName = '{table_name}'")][0]
- del fields
-
- # Assigning variables from items in the chosen table list
- # ['AI_IDW', 'AI_IDW_Region', 'AI', 'Aleutian Islands', None, 'IDW']
- table_name = region_list[0]
- geographic_area = region_list[1]
- datasetcode = region_list[2]
- region = region_list[3]
- season = region_list[4] if region_list[4] else ""
- distri_code = region_list[5]
-
- del region_list
-
- arcpy.AddMessage(f"\tTable Name: {table_name}")
- arcpy.AddMessage(f"\tGeographic Area: {geographic_area}")
- arcpy.AddMessage(f"\tDataset Code: {datasetcode}")
- arcpy.AddMessage(f"\tRegion: {region}")
- arcpy.AddMessage(f"\tSeason: {season}")
- arcpy.AddMessage(f"\tDistri Code: {distri_code}")
-
- geographicarea_sr = os.path.join(project_folder, f"Dataset_Shapefiles\\{table_name}\\{geographic_area}.prj")
- arcpy.AddMessage(geographicarea_sr)
- datasetcode_sr = arcpy.SpatialReference(geographicarea_sr)
- del geographicarea_sr
-
- if datasetcode_sr.linearUnitName == "Kilometer":
- arcpy.env.cellSize = 1
- arcpy.env.XYResolution = 0.1
- arcpy.env.XYTolerance = 1.0
- elif datasetcode_sr.linearUnitName == "Meter":
- arcpy.env.cellSize = 1000
- arcpy.env.XYResolution = 0.0001
- arcpy.env.XYTolerance = 0.001
-
- arcpy.AddMessage(f"\t\tCreating Feature Class: {geographic_area}")
- # Execute Create Feature Class
- # Use DisMAP regions as a template
- geographic_area_path = arcpy.management.CreateFeatureclass(
- out_path = region_gdb,
- out_name = f"{geographic_area}",
- geometry_type = "POLYGON",
- template = rf"{region_gdb}\DisMAP_Regions",
- has_m = "DISABLED",
- has_z = "DISABLED",
- spatial_reference = datasetcode_sr,
- config_keyword = "",
- spatial_grid_1 = "0",
- spatial_grid_2 = "0",
- spatial_grid_3 = "0"
- )
- arcpy.AddMessage("\t\t\t{0}\n".format(arcpy.GetMessages().replace("\n", '\n\t\t\t')))
- del datasetcode_sr
- del geographic_area_path
-
- geographic_area_path = rf"{region_gdb}\{geographic_area}"
-
- # The shapefile used to create the extent and mask for the environment variable
- geographic_area_shape_file = rf"{project_folder}\Dataset_Shapefiles\{table_name}\{geographic_area}.shp"
- geographic_area_boundary = f"{geographic_area.replace('_Region','_Boundary')}"
- geographic_area_boundary_path = rf"{region_gdb}\{geographic_area.replace('_Region','_Boundary')}"
-
- dismap_regions_md = md.Metadata(rf"{region_gdb}\DisMAP_Regions")
- dataset_md = md.Metadata(geographic_area_path)
- dataset_md.copy(dismap_regions_md)
- dataset_md.save()
- dataset_md.synchronize("OVERWRITE")
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- del dataset_md, dismap_regions_md
-
- arcpy.AddMessage(f'\t\tCopy {geographic_area} Shape File.')
-
- arcpy.AddMessage(f"\t\tAppend: {geographic_area}")
- arcpy.management.Append(inputs = geographic_area_shape_file, target = geographic_area_path, schema_type = "NO_TEST")
- arcpy.AddMessage("\t\t\t{0}\n".format(arcpy.GetMessages().replace("\n", '\n\t\t\t')))
-
- arcpy.AddMessage(f"\t\tCalculate Fields for: {geographic_area}")
- arcpy.management.CalculateFields(geographic_area_path, "PYTHON3",
- [
- ["DatasetCode", f'"{datasetcode}"'],
- ["Region", f'"{region}"'],
- ["Season", f'"{season}"'],
- ["DistributionProjectCode", f'"{distri_code}"'],
- ],
- )
- arcpy.AddMessage("\t\t\tCalculate Fields: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t\t\t')))
-
- arcpy.AddMessage(f"\t\tFeature to Line to create: {geographic_area_boundary}")
- arcpy.management.FeatureToLine(in_features = geographic_area_path, out_feature_class = geographic_area_boundary_path, cluster_tolerance="", attributes="ATTRIBUTES")
- arcpy.AddMessage("\t\t\t{0}\n".format(arcpy.GetMessages().replace("\n", '\n\t\t\t')))
-
- arcpy.AddMessage(f"\t\tDeleting fields from table: {geographic_area_boundary}")
- arcpy.management.DeleteField(in_table = rf"{region_gdb}\{geographic_area_boundary}", drop_field = [f"FID_{geographic_area}"])
- arcpy.AddMessage("\t\t\t{0}\n".format(arcpy.GetMessages().replace("\n", '\n\t\t\t')))
-
-
- arcpy.AddMessage(f"\t\tAlter Fields for: '{os.path.basename(geographic_area_path)}'")
- dismap_tools.alter_fields(csv_data_folder, geographic_area_path)
-
- dataset_md = md.Metadata(geographic_area_path)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- del dataset_md
-
- arcpy.AddMessage(f"\t\tAlter Fields for: '{os.path.basename(geographic_area_boundary_path)}'")
- dismap_tools.alter_fields(csv_data_folder, geographic_area_boundary_path)
-
- geographic_area_path_md = md.Metadata(geographic_area_path)
- dataset_md = md.Metadata(geographic_area_boundary_path)
- dataset_md.copy(geographic_area_path_md)
- dataset_md.save()
- dataset_md.synchronize("OVERWRITE")
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- del dataset_md, geographic_area_path_md
-
- del geographic_area, geographic_area_boundary
-
- del geographic_area_path, geographic_area_shape_file
- del geographic_area_boundary_path
-
- # Remove template
- arcpy.management.Delete(rf"{region_gdb}\DisMAP_Regions")
- arcpy.AddMessage("\t"+arcpy.GetMessages(0).replace("\n", "\n\t"))
-
- arcpy.management.Delete(rf"{region_gdb}\Datasets")
- arcpy.AddMessage("\t"+arcpy.GetMessages(0).replace("\n", "\n\t"))
-
- arcpy.management.Compact(region_gdb)
-
- # Declared Variables for this function only
- del datasetcode, region, season, distri_code
- # Basic variables
- del table_name, project_folder, csv_data_folder
- # Imports
- del md, dismap_tools
- # Function parameter
- del region_gdb
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(f"Caught an arcpy.ExecuteWarning error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(f"Caught an arcpy.ExecuteError error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except SystemExit as se:
- arcpy.AddError(f"Caught an SystemExit error: {se} in the '{inspect.stack()[0][3]}' function.")
- sys.exit()
- except Exception as e:
- arcpy.AddError(f"Caught an Exception error: {e} in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(f"Caught an except error in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- pass
-
-def script_tool(project_gdb=""):
- try:
- # Imports
- import dismap_tools
- from arcpy import metadata as md
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
- # Set basic arcpy.env variables
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- # Set varaibales
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = os.path.join(project_folder, "Scratch")
- del project_folder
-
- # Clear Scratch Folder
- dismap_tools.clear_folder(folder=scratch_folder)
-
- # Create project scratch workspace, if missing
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- if not arcpy.Exists(scratch_folder):
- os.makedirs(scratch_folder)
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- arcpy.management.CreateFileGDB(scratch_folder, "scratch")
- else:
- pass
-
- # Set worker parameters
- table_name = "AI_IDW"
- #table_name = "HI_IDW"
- #table_name = "GMEX_IDW"
- #table_name = "GOA_IDW"
- #table_name = "NBS_IDW"
- #table_name = "SEUS_SPR_IDW"
-
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- scratch_workspace = os.path.join(scratch_folder, f"{table_name}\\scratch.gdb")
-
- # Create worker scratch workspace, if missing
- if not arcpy.Exists(scratch_workspace):
- os.makedirs(os.path.join(scratch_folder, table_name))
- if not arcpy.Exists(scratch_workspace):
- arcpy.management.CreateFileGDB(os.path.join(scratch_folder, table_name), "scratch")
- del scratch_workspace
-
-## edit = arcpy.da.Editor(region_gdb)
-## arcpy.AddMessage("edit created")
-## edit.startEditing()
-## arcpy.AddMessage("edit started")
-## edit.startOperation()
-## arcpy.AddMessage("operation started")
-
- # Setup worker workspace and copy data
- #datasets = [ros.path.join(project_gdb, "Datasets") os.path.join(project_gdb, "DisMAP_Regions")]
- #if not any(arcpy.management.GetCount(d)[0] == 0 for d in datasets):
- if not arcpy.Exists(os.path.join(scratch_folder, f"{table_name}.gdb")):
- arcpy.management.CreateFileGDB(scratch_folder, table_name)
- arcpy.AddMessage("\tCreate File GDB: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- else:
- pass
-
- arcpy.management.Copy(os.path.join(project_gdb, "Datasets"), rf"{region_gdb}\Datasets")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.management.CreateFeatureclass(rf"{region_gdb}", "DisMAP_Regions", "POLYLINE", os.path.join(project_gdb, "DisMAP_Regions"))
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- dismap_regions_md = md.Metadata(os.path.join(project_gdb, "DisMAP_Regions"))
- dataset_md = md.Metadata(rf"{region_gdb}\DisMAP_Regions")
- dataset_md.copy(dismap_regions_md)
- dataset_md.save()
- dataset_md.synchronize("OVERWRITE")
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- del dataset_md, dismap_regions_md
-
- #else:
- # arcpy.AddWarning(f"One or more datasets contains zero records!!")
- # for d in datasets:
- # arcpy.AddMessage(f"\t{os.path.basename(d)} has {arcpy.management.GetCount(d)[0]} records")
- # del d
- # sys.exit()
- #if "datasets" in locals().keys(): del datasets
-
- try:
- pass
- worker(region_gdb=region_gdb)
- except SystemExit:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
-
- # Declared Varaiables
- del region_gdb, table_name, scratch_folder
- # Imports
- del md, dismap_tools
-
- # Function Parameters
- del project_gdb
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- hours, rem = divmod(end_time-start_time, 3600)
- minutes, seconds = divmod(rem, 60)
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"End Time: {strftime('%a %b %d %I:%M %p', localtime(end_time))}")
- arcpy.AddMessage(f"Elapsed Time {int(hours):0>2}:{int(minutes):0>2}:{seconds:05.2f} (H:M:S)")
- arcpy.AddMessage(f"{'-' * 80}")
- del hours, rem, minutes, seconds
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(f"Caught an arcpy.ExecuteWarning error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(f"Caught an arcpy.ExecuteError error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except SystemExit as se:
- arcpy.AddError(f"Caught an SystemExit error: {se} in the '{inspect.stack()[0][3]}' function.")
- sys.exit()
- except Exception as e:
- arcpy.AddError(f"Caught an Exception error: {e} in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(f"Caught an except error in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- pass
-
-if __name__ == '__main__':
- try:
- project_gdb = arcpy.GetParameterAsText(0)
- if not project_gdb:
- project_gdb = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026\\February 1 2026.gdb")))
- else:
- pass
- script_tool(project_gdb)
- arcpy.SetParameterAsText(1, "Result")
- del project_gdb
- except: # noqa: E722
- traceback.print_exc()
- else:
- pass
- finally:
- pass
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_species_richness_rasters_director.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_species_richness_rasters_director.py
deleted file mode 100644
index 0087ccd..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_species_richness_rasters_director.py
+++ /dev/null
@@ -1,406 +0,0 @@
-# -*- coding: utf-8 -*-
-#-------------------------------------------------------------------------------
-# Name: create_species_year_image_name_table_director
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 09/03/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-#-------------------------------------------------------------------------------
-import os
-import sys
-import traceback
-
-import arcpy # third-parties second
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- #filename = sys.path[0] + os.sep + f"{os.path.basename(__file__)}"
- filename = os.path.basename(__file__)
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def preprocessing(project_gdb="", table_names="", clear_folder=True):
- try:
- import dismap_tools
-
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(1) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- # Set basic arcpy.env variables
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- # Set varaibales
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = rf"{project_folder}\Scratch"
- scratch_workspace = os.path.join(project_folder, "Scratch\\scratch.gdb")
-
- # Clear Scratch Folder
- #ClearScratchFolder = True
- #if ClearScratchFolder:
- if clear_folder:
- dismap_tools.clear_folder(folder=rf"{os.path.dirname(project_gdb)}\Scratch")
- else:
- pass
- #del ClearScratchFolder
- del clear_folder
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
- del project_folder, scratch_workspace
-
- if not table_names:
- table_names = [row[0] for row in arcpy.da.SearchCursor(os.path.join(project_gdb, "Datasets"),
- "TableName",
- where_clause = "TableName LIKE '%_IDW'")]
- else:
- pass
-
- for table_name in table_names:
- arcpy.AddMessage(f"Pre-Processing: {table_name}")
-
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- region_scratch_workspace = rf"{scratch_folder}\{table_name}\scratch.gdb"
-
- # Create Scratch Workspace for Region
- if not arcpy.Exists(region_scratch_workspace):
- os.makedirs(os.path.join(scratch_folder, table_name))
- if not arcpy.Exists(region_scratch_workspace):
- arcpy.AddMessage(f"Create File GDB: '{table_name}'")
- arcpy.management.CreateFileGDB(os.path.join(scratch_folder, f"{table_name}"), "scratch")
- arcpy.AddMessage("\tCreate File GDB: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del region_scratch_workspace
- # # # CreateFileGDB
- arcpy.AddMessage(f"Creating File GDB: '{table_name}'")
- arcpy.management.CreateFileGDB(rf"{scratch_folder}", f"{table_name}")
- arcpy.AddMessage("\tCreate File GDB: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- # # # CreateFileGDB
- # # # Datasets
- # Process: Make Table View (Make Table View) (management)
- datasets = rf'{project_gdb}\Datasets'
- arcpy.AddMessage(f"'{os.path.basename(datasets)}' has {arcpy.management.GetCount(datasets)[0]} records")
-
- table_name_view = "Dataset Table View"
- arcpy.management.MakeTableView(in_table = datasets,
- out_view = table_name_view,
- where_clause = f"TableName = '{table_name}'"
- )
- arcpy.AddMessage(f"The table '{table_name_view}' has {arcpy.management.GetCount(table_name_view)[0]} records")
- arcpy.management.CopyRows(table_name_view, rf"{region_gdb}\Datasets")
- arcpy.AddMessage("\tCopy Rows: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.management.Delete(table_name_view)
- del table_name_view
- # # # Datasets
- # # # LayerSpeciesYearImageName
- #arcpy.AddMessage(f"The table '{table_name}_LayerSpeciesYearImageName' has {arcpy.management.GetCount(table_name_view)[0]} records")
- arcpy.management.Copy(rf"{project_gdb}\{table_name}_LayerSpeciesYearImageName", rf"{region_gdb}\{table_name}_LayerSpeciesYearImageName")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- # # # LayerSpeciesYearImageName
- # # # Raster_Mask
- arcpy.management.Copy(rf"{project_gdb}\{table_name}_Raster_Mask", rf"{region_gdb}\{table_name}_Raster_Mask")
- arcpy.AddMessage("\tCopy: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- # # # Raster_Mask
-
- del datasets #, filter_region, filter_subregion
- # Leave so we can block the above code
- # Declared Variables
- del table_name
-
- # Declared Variables
- del scratch_folder, region_gdb
- # Imports
- del dismap_tools
- # Function Parameters
- del project_gdb, table_names
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def director(project_gdb="", Sequential=True, table_names=[]):
- try:
- from create_species_richness_rasters_worker import worker
-
- # Test if passed workspace exists, if not sys.exit()
- if not arcpy.Exists(rf"{project_gdb}"):
- arcpy.AddError(f"{os.path.basename(project_gdb)} is missing!!")
- arcpy.AddError(arcpy.GetMessages(2))
- sys.exit()
- else:
- pass
-
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(1) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- preprocessing(project_gdb=project_gdb, table_names=table_names, clear_folder=True)
-
-## project_folder = os.path.dirname(project_gdb)
-## scratch_folder = rf"{os.path.dirname(project_gdb)}\Scratch"
-## scratch_workspace = os.path.join(project_folder, "Scratch\\scratch.gdb")
-##
-## arcpy.env.workspace = project_gdb
-## arcpy.env.scratchWorkspace = scratch_workspace
-## del project_folder, scratch_workspace
-
- # Sequential Processing
- if Sequential:
- arcpy.AddMessage("Sequential Processing")
- for i in range(0, len(table_names)):
- arcpy.AddMessage(f"Processing: {table_names[i]}")
- table_name = table_names[i]
- region_gdb = rf"{os.path.dirname(project_gdb)}\Scratch\{table_name}.gdb"
- try:
- pass
- worker(region_gdb=region_gdb)
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- del region_gdb, table_name
- del i
- else:
- pass
-
- # Non-Sequential Processing
- if not Sequential:
- import multiprocessing
- from time import time, localtime, strftime, sleep, gmtime
- arcpy.AddMessage("Start multiprocessing using the ArcGIS Pro pythonw.exe.")
- #Set multiprocessing exe in case we're running as an embedded process, i.e ArcGIS
- #get_install_path() uses a registry query to figure out 64bit python exe if available
- multiprocessing.set_executable(os.path.join(sys.exec_prefix, 'pythonw.exe'))
- # Get CPU count and then take 2 away for other process
- _processes = multiprocessing.cpu_count() - 2
- _processes = _processes if len(table_names) >= _processes else len(table_names)
- arcpy.AddMessage(f"Creating the multiprocessing Pool with {_processes} processes")
- #Create a pool of workers, keep one cpu free for surfing the net.
- #Let each worker process only handle 1 task before being restarted (in case of nasty memory leaks)
- with multiprocessing.Pool(processes=_processes, maxtasksperchild=1) as pool:
- arcpy.AddMessage("\tPrepare arguments for processing")
- # Use apply_async so we can handle exceptions gracefully
- jobs={}
- for i in range(0, len(table_names)):
- try:
- arcpy.AddMessage(f"Processing: {table_names[i]}")
- table_name = table_names[i]
- region_gdb = rf"{os.path.dirname(project_gdb)}\Scratch\{table_name}.gdb"
- jobs[table_name] = pool.apply_async(worker, [region_gdb])
- del table_name, region_gdb
- except: # noqa: E722
- pool.terminate()
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- del i
- all_finished = False
- # Set a start time so that we can see how log things take
- start_time = time()
- result_completed = {}
- while True:
- all_finished = True
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- arcpy.AddMessage("\nHave the workers finished?")
- finish_time = strftime('%a %b %d %I:%M %p', localtime())
- time_elapsed = u"Elapsed Time {0} (H:M:S)".format(strftime("%H:%M:%S", gmtime(elapse_time)))
- arcpy.AddMessage(f"It's {finish_time}\n{time_elapsed}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- finish_time = f"{finish_time}.\n\t{time_elapsed}"
- del time_elapsed
- for table_name, result in jobs.items():
- if result.ready():
- if table_name not in result_completed:
- result_completed[table_name] = finish_time
- try:
- # wait for and get the result from the task
- result.get()
- except: # noqa: E722
- pool.terminate()
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- pass
- arcpy.AddMessage(f"Process {table_name}\n\tFinished on {result_completed[table_name]}")
- else:
- all_finished = False
- arcpy.AddMessage(f"Process {table_name} is running. . .")
- del table_name, result
- del elapse_time, end_time, finish_time
- if all_finished:
- break
- sleep(_processes * 7.5)
- del result_completed
- del start_time
- del all_finished
- arcpy.AddMessage("\tClose the process pool")
- # close the process pool
- pool.close()
- # wait for all tasks to complete and processes to close
- arcpy.AddMessage("\tWait for all tasks to complete and processes to close")
- pool.join()
- # Just in case
- pool.terminate()
- del pool
- del jobs
- del _processes
- del time, multiprocessing, localtime, strftime, sleep, gmtime
-
- arcpy.AddMessage("\tDone with multiprocessing Pool")
-
- arcpy.AddMessage(f"Compacting the {os.path.basename(project_gdb)} GDB")
- arcpy.management.Compact(project_gdb)
- arcpy.AddMessage("\t"+arcpy.GetMessages(0).replace("\n", "\n\t"))
-
- # Declared Variables assigned in function
- #del scratch_folder
- # Imports
- del worker
- # Function Parameters
- del project_gdb, Sequential, table_names
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def script_tool(project_gdb=""):
- try:
- # Imports
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
- try:
- pass
- # "AI_IDW", "EBS_IDW", "ENBS_IDW", "GMEX_IDW", "GOA_IDW", "HI_IDW", "NBS_IDW", "NEUS_FAL_IDW", "NEUS_SPR_IDW",
- # "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW", "WC_ANN_IDW", "WC_TRI_IDW",
-
- Test = False
- if Test:
- pass
- director(project_gdb=project_gdb, Sequential=True, table_names=["SEUS_FAL_IDW"])
- elif not Test:
- director(project_gdb=project_gdb, Sequential=False, table_names=["AI_IDW", "EBS_IDW", "ENBS_IDW", "GMEX_IDW", "GOA_IDW", "HI_IDW", "NBS_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["NEUS_FAL_IDW", "NEUS_SPR_IDW", "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW", "WC_ANN_IDW", "WC_TRI_IDW",])
- else:
- pass
- del Test
- #except SystemExit:
- except: # noqa: E722
- pass
- #arcpy.AddError(arcpy.GetMessages(2))
- #traceback.print_exc()
- #sys.exit()
-
- # Declared Variables
-
- # Function
- del project_gdb
-
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- hours, rem = divmod(end_time-start_time, 3600)
- minutes, seconds = divmod(rem, 60)
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"End Time: {strftime('%a %b %d %I:%M %p', localtime(end_time))}")
- arcpy.AddMessage(f"Elapsed Time {int(hours):0>2}:{int(minutes):0>2}:{seconds:05.2f} (H:M:S)")
- arcpy.AddMessage(f"{'-' * 80}")
- del hours, rem, minutes, seconds
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-if __name__ == '__main__':
- try:
- project_gdb = arcpy.GetParameterAsText(0)
- if not project_gdb:
- project_gdb = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026\\February 1 2026.gdb")
- else:
- pass
- script_tool(project_gdb)
- arcpy.SetParameterAsText(1, "Result")
- del project_gdb
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_species_richness_rasters_worker.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_species_richness_rasters_worker.py
deleted file mode 100644
index 2d4c99c..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_species_richness_rasters_worker.py
+++ /dev/null
@@ -1,460 +0,0 @@
-# -*- coding: utf-8 -*-
-#-------------------------------------------------------------------------------
-# Name: create_species_year_image_name_table_worker
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 09/03/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-#-------------------------------------------------------------------------------
-import os
-import sys
-import traceback
-
-import arcpy # third-parties second
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- #filename = sys.path[0] + os.sep + f"{os.path.basename(__file__)}"
- filename = os.path.basename(__file__)
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def print_table(table=""):
- try:
- """ Print first 5 rows of a table """
- desc = arcpy.da.Describe(table)
- fields = [f.name for f in desc["fields"] if f.type == "String"]
- #Get OID field
- oid = desc["OIDFieldName"]
- # Use SQL TOP to sort field values
- arcpy.AddMessage(f"{', '.join(fields)}")
- for row in arcpy.da.SearchCursor(table, fields, f"{oid} <= 5"):
- arcpy.AddMessage(row)
- del row
- del desc, fields, oid
- del table
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def worker(region_gdb=""):
- try:
- # Test if passed workspace exists, if not sys.exit()
- if not arcpy.Exists(region_gdb):
- arcpy.AddError(f"{os.path.basename(region_gdb)} is missing!!")
- sys.exit()
-
- # Import
- import numpy as np
- from arcpy import metadata as md
- # Import the dismap module to access tools
- import dismap_tools
-
- # Set History and Metadata logs, set serverity and message level
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- # Set basic workkpace variables
- table_name = os.path.basename(region_gdb).replace(".gdb","")
- scratch_folder = os.path.dirname(region_gdb)
- project_folder = os.path.dirname(scratch_folder)
- scratch_workspace = rf"{scratch_folder}\{table_name}\scratch.gdb"
- region_raster_mask = rf"{region_gdb}\{table_name}_Raster_Mask"
-
- arcpy.AddMessage(f"Table Name: {table_name}\n\tProject Folder: {project_folder}\n\tScratch Folder: {scratch_folder}\n")
-
- del scratch_folder
-
- # Set basic workkpace variables
- arcpy.env.workspace = region_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.env.pyramid = "PYRAMIDS -1 BILINEAR LZ77 NO_SKIP"
- arcpy.env.resamplingMethod = "BILINEAR"
- arcpy.env.rasterStatistics = "STATISTICS 1 1"
-
- arcpy.AddMessage(f"Creating {table_name} Species Richness Rasters")
-
- arcpy.AddMessage("\tGet list of variables from the 'Datasets' table")
-
- # DatasetCode, CSVFile, TransformUnit, TableName, GeographicArea, CellSize,
- # PointFeatureType, FeatureClassName, Region, Season, DateCode, Status,
- # DistributionProjectCode, DistributionProjectName, SummaryProduct,
- # FilterRegion, FilterSubRegion, FeatureServiceName, FeatureServiceTitle,
- # MosaicName, MosaicTitle, ImageServiceName, ImageServiceTitle
-
- # Get values for table_name from Datasets table
- fields = ["TableName", "GeographicArea", "DatasetCode", "CellSize"]
- region_list = [row for row in arcpy.da.SearchCursor(rf"{region_gdb}\Datasets", fields, where_clause = f"TableName = '{table_name}'")][0]
- del fields
-
- # Assigning variables from items in the chosen table list
- # ['AI_IDW', 'AI_IDW_Region', 'AI', 'Aleutian Islands', None, 'IDW']
- table_name = region_list[0]
- #geographic_area = region_list[1]
- datasetcode = region_list[2]
- cell_size = region_list[3]
- del region_list
-
-
- if isinstance(cell_size, type('str')):
- cell_size = int(cell_size)
- else:
- pass
-
- arcpy.AddMessage(f"\tGet the 'rowCount', 'columnCount', and 'lowerLeft' corner of '{table_name}_Raster_Mask'")
- # These are used later to set the rows and columns for a zero numpy array
- rowCount = int(arcpy.management.GetRasterProperties(region_raster_mask, "ROWCOUNT" ).getOutput(0))
- columnCount = int(arcpy.management.GetRasterProperties(region_raster_mask, "COLUMNCOUNT" ).getOutput(0))
-
- # Create Raster from Array
- raster_mask_extent = arcpy.Raster(region_raster_mask)
- lowerLeft = arcpy.Point(raster_mask_extent.extent.XMin, raster_mask_extent.extent.YMin)
- del raster_mask_extent
-
- arcpy.AddMessage("\tSet the 'outputCoordinateSystem' based on the projection information for the geographic region")
- #geographic_area_sr = rf"{project_folder}\Dataset_Shapefiles\{table_name}\{geographic_area}.prj"
- #geographic_area_sr = arcpy.Describe(region_raster_mask).spatialReference
- #geographic_area_sr = rf"{project_folder}\Dataset_Shapefiles\{table_name}\{geographic_area}.prj"
- # Set the output coordinate system to what is needed for the
- # DisMAP project
- arcpy.env.outputCoordinateSystem = arcpy.Describe(region_raster_mask).spatialReference
- #del geographic_area_sr, geographic_area, psr
- #del geographic_area
-
- arcpy.AddMessage("\tGet information for input rasters")
-
- layerspeciesyearimagename = rf"{region_gdb}\{table_name}_LayerSpeciesYearImageName"
-
- fields = ['DatasetCode', 'CoreSpecies', 'Year', 'Variable', 'ImageName']
- input_rasters = {}
- input_rasters_path = rf"{project_folder}\Images\{table_name}"
-
- with arcpy.da.SearchCursor(layerspeciesyearimagename, fields, where_clause=f"Variable NOT IN ('Core Species Richness', 'Species Richness') and DatasetCode = '{datasetcode}'") as cursor:
- for row in cursor:
- _datasetcode = row[0]
- _corespecies = row[1]
- _year = row[2]
- _variable = row[3]
- _image = row[4]
- input_rasters[f"{_image}.tif"] = [_variable, _corespecies, _year, os.path.join(input_rasters_path, _variable, f"{_image}.tif")]
- del row, _datasetcode, _corespecies, _year, _variable, _image
- del cursor
- del input_rasters_path, fields, layerspeciesyearimagename
-
- #for input_raster in input_rasters:
- # arcpy.AddMessage(input_raster, input_rasters[input_raster])
- # del input_raster
-
- arcpy.AddMessage("\tSet the output and scratch paths")
-
- # Set species_richness_path
- species_richness_path = rf"{project_folder}\Images\{table_name}\_Species Richness"
- species_richness_scratch_path = rf"{project_folder}\Scratch\{table_name}\_Species Richness"
-
- if not os.path.exists(species_richness_path):
- os.makedirs(species_richness_path)
- if not os.path.exists(species_richness_scratch_path):
- os.makedirs(species_richness_scratch_path)
-
- years = sorted(list(set([input_rasters[input_raster][2] for input_raster in input_rasters])))
-
- arcpy.AddMessage("\tProcessing all species")
-
- for year in years:
-
- layercode_year_richness = os.path.join(species_richness_path, f"{table_name}_Species_Richness_{year}.tif")
-
- #if not arcpy.Exists(layercode_year_richness):
-
- arcpy.AddMessage(f"\t\tProcessing rasters for year: {year}")
-
- richnessArray = np.zeros((rowCount, columnCount), dtype='float32', order='C')
-
- rasters = [r for r in input_rasters if input_rasters[r][2] == year]
-
- # For each raster exported, create the Con mask
- for raster in rasters:
- arcpy.AddMessage(f"\t\t\tProcessing the {raster} raster")
-
- _in_raster = input_rasters[raster][3]
-
- rasterArray = arcpy.RasterToNumPyArray(_in_raster, nodata_to_value=np.nan)
-
- rasterArray[rasterArray < 0.0] = np.nan
-
- rasterArray[rasterArray > 0.0] = 1.0
-
- #add rasterArray to richnessArray
- richnessArray = np.add(richnessArray, rasterArray) # Can also use: richnessArray + rasterArray
- del rasterArray, _in_raster, raster
-
- arcpy.AddMessage(f"\t\tCreating Species Richness Raster for year: {year}")
-
- # Cast array as float321
- richnessArray = richnessArray.astype('float32')
-
- # Convert Array to Raster
- with arcpy.EnvManager(scratchWorkspace=species_richness_scratch_path, workspace = species_richness_path):
- richnessArrayRaster = arcpy.NumPyArrayToRaster(richnessArray, lowerLeft, cell_size, cell_size, -3.40282346639e+38) #-3.40282346639e+38
- richnessArrayRaster.save(layercode_year_richness)
- del richnessArrayRaster
- # Add statitics
- arcpy.management.CalculateStatistics(layercode_year_richness)
-
- raster_md = md.Metadata(layercode_year_richness)
- raster_md.title = os.path.basename(layercode_year_richness).replace("_", " ")
- raster_md.save()
- raster_md.synchronize("ALWAYS")
- raster_md.save()
- del raster_md
-
- del richnessArray, rasters
-
- #else:
- # arcpy.AddMessage(f"\t\t{os.path.basename(layercode_year_richness)} exists")
-
- del year, layercode_year_richness
-
- del years, species_richness_path, species_richness_scratch_path
-
- # ###--->>>
-
- arcpy.AddMessage("\tCreating the {table_name} Core Species Richness Rasters")
-
- # Set core_species_richness_path
- core_species_richness_path = rf"{project_folder}\Images\{table_name}\_Core Species Richness"
- core_species_richness_scratch_path = rf"{project_folder}\Scratch\{table_name}\_Core Species Richness"
-
- if not os.path.exists(core_species_richness_path):
- os.makedirs(core_species_richness_path)
- if not os.path.exists(core_species_richness_scratch_path):
- os.makedirs(core_species_richness_scratch_path)
-
- years = sorted(list(set([input_rasters[input_raster][2] for input_raster in input_rasters if input_rasters[input_raster][1] == "Yes"])))
-
- # ###--->>>
- arcpy.AddMessage("\t\tProcessing Core Species")
-
- for year in years:
-
- layercode_year_richness = os.path.join(core_species_richness_path, f"{table_name}_Core_Species_Richness_{year}.tif")
-
- #if not arcpy.Exists(layercode_year_richness):
-
- richnessArray = np.zeros((rowCount, columnCount), dtype='float32', order='C')
-
- rasters = [r for r in input_rasters if input_rasters[r][2] == year and input_rasters[r][1] == "Yes"]
-
- arcpy.AddMessage("\t\tProcessing rasters")
-
- # For each raster exported, create the Con mask
- for raster in rasters:
- arcpy.AddMessage(f"\t\t\tProcessing {raster} raster")
-
- _in_raster = input_rasters[raster][3]
-
- rasterArray = arcpy.RasterToNumPyArray(_in_raster, nodata_to_value=np.nan)
- rasterArray[rasterArray < 0.0] = np.nan
-
- rasterArray[rasterArray > 0.0] = 1.0
-
- #add rasterArray to richnessArray
- richnessArray = np.add(richnessArray, rasterArray)
- # Can also use: richnessArray + rasterArray
- del rasterArray, _in_raster, raster
-
- arcpy.AddMessage(f"\t\tCreating Core Species Richness Raster for year: {year}")
-
- # Cast array as float32
- richnessArray = richnessArray.astype('float32')
-
- # Convert Array to Raster
- with arcpy.EnvManager(scratchWorkspace=core_species_richness_scratch_path, workspace = core_species_richness_path):
- richnessArrayRaster = arcpy.NumPyArrayToRaster(richnessArray, lowerLeft, cell_size, cell_size, -3.40282346639e+38) #-3.40282346639e+38
- richnessArrayRaster.save(layercode_year_richness)
- del richnessArrayRaster
- # Add statistics
- arcpy.management.CalculateStatistics(layercode_year_richness)
-
- raster_md = md.Metadata(layercode_year_richness)
- raster_md.title = os.path.basename(layercode_year_richness).replace("_", " ")
- raster_md.save()
- del raster_md
-
- del richnessArray, rasters
- #else:
- # arcpy.AddMessage(f"\t\t{os.path.basename(layercode_year_richness)} exists")
-
- del year, layercode_year_richness
- del years, core_species_richness_path, core_species_richness_scratch_path
-
- # End of business logic for the worker function
- arcpy.AddMessage(f"Processing for: {table_name} complete")
-
- # Clean up
- # Declared Variables for this function only
- del rowCount, columnCount, lowerLeft, input_rasters
- del cell_size
- del region_raster_mask
-
- # Declared Variables for this function only
- del datasetcode
- # Basic variables
- del table_name, project_folder, scratch_workspace
- # Imports
- del md, dismap_tools, np
- # Function parameter
- del region_gdb
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def script_tool(project_gdb=""):
- try:
- # Imports
- import dismap_tools
- from create_species_richness_rasters_director import preprocessing
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
- # Clear Scratch Folder
- ClearScratchFolder = False
- if ClearScratchFolder:
- dismap_tools.clear_folder(folder=rf"{os.path.dirname(project_gdb)}\Scratch")
- else:
- pass
- del ClearScratchFolder
-
- ## # Set worker parameters
- ## #table_name = "AI_IDW"
- ## table_name = "HI_IDW"
- ## #table_name = "NBS_IDW"
- ## #table_name = "ENBS_IDW"
-
- table_names = ["HI_IDW"]
-
- preprocessing(project_gdb=project_gdb, table_names=table_names, clear_folder=True)
-
- for table_name in table_names:
- region_gdb = rf"{os.path.dirname(project_gdb)}\Scratch\{table_name}.gdb"
- try:
- pass
- worker(region_gdb=region_gdb)
- except SystemExit:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- sys.exit()
-
- del table_name, region_gdb
-
- del table_names
-
- # Declared Varaiables
- # Imports
- del dismap_tools
- # Function Parameters
- del project_gdb
-
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- hours, rem = divmod(end_time-start_time, 3600)
- minutes, seconds = divmod(rem, 60)
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"End Time: {strftime('%a %b %d %I:%M %p', localtime(end_time))}")
- arcpy.AddMessage(f"Elapsed Time {int(hours):0>2}:{int(minutes):0>2}:{seconds:05.2f} (H:M:S)")
- arcpy.AddMessage(f"{'-' * 80}")
- del hours, rem, minutes, seconds
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-if __name__ == '__main__':
- try:
- project_gdb = arcpy.GetParameterAsText(0)
- if not project_gdb:
- project_gdb = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026\\February 1 2026.gdb")
- else:
- pass
- script_tool(project_gdb)
- arcpy.SetParameterAsText(1, "Result")
- del project_gdb
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_species_year_image_name_table_director.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_species_year_image_name_table_director.py
deleted file mode 100644
index 12e192a..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_species_year_image_name_table_director.py
+++ /dev/null
@@ -1,522 +0,0 @@
-# -*- coding: utf-8 -*-
-#-------------------------------------------------------------------------------
-# Name: create_species_year_image_name_table_director
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 09/03/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-#-------------------------------------------------------------------------------
-import os
-import sys
-import traceback
-
-import arcpy # third-parties second
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- filename = sys.path[0] + os.sep + "test.py"
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def preprocessing(project_gdb="", table_names="", clear_folder=True):
- try:
- import dismap_tools
-
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(1) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- # Set basic arcpy.env variables
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- # Set varaibales
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = rf"{project_folder}\Scratch"
- scratch_workspace = os.path.join(project_folder, "Scratch\\scratch.gdb")
-
- # Clear Scratch Folder
- #ClearScratchFolder = True
- #if ClearScratchFolder:
- if clear_folder:
- dismap_tools.clear_folder(folder=scratch_folder)
- else:
- pass
- #del ClearScratchFolder
- del clear_folder
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
- del project_folder, scratch_workspace
-
- if not table_names:
- table_names = [row[0] for row in arcpy.da.SearchCursor(os.path.join(project_gdb, "Datasets"),
- "TableName",
- where_clause = "TableName LIKE '%_IDW'")]
- else:
- pass
-
- for table_name in table_names:
- arcpy.AddMessage(f"Pre-Processing: {table_name}")
-
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- region_scratch_workspace = rf"{scratch_folder}\{table_name}\scratch.gdb"
-
- # Create Scratch Workspace for Region
- if not arcpy.Exists(region_scratch_workspace):
- os.makedirs(os.path.join(scratch_folder, table_name))
- if not arcpy.Exists(region_scratch_workspace):
- arcpy.management.CreateFileGDB(os.path.join(scratch_folder, f"{table_name}"), "scratch")
- del region_scratch_workspace
-
- arcpy.AddMessage(f"Creating File GDB: {table_name}")
- arcpy.management.CreateFileGDB(rf"{scratch_folder}", f"{table_name}")
- arcpy.AddMessage("\tCreate File GDB: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- # Process: Make Table View (Make Table View) (management)
- datasets = rf'{project_gdb}\Datasets'
- arcpy.AddMessage(f"\t{os.path.basename(datasets)} has {arcpy.management.GetCount(datasets)[0]} records")
-
- table_name_view = "Dataset Table View"
- arcpy.management.MakeTableView(in_table = datasets,
- out_view = table_name_view,
- where_clause = f"TableName = '{table_name}'"
- )
- arcpy.AddMessage(f"\tThe table {table_name_view} has {arcpy.management.GetCount(table_name_view)[0]} records")
- arcpy.management.CopyRows(table_name_view, rf"{region_gdb}\Datasets")
- arcpy.AddMessage("\tCopy Rows: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- filter_region = [row[0] for row in arcpy.da.SearchCursor(rf"{region_gdb}\Datasets", "FilterRegion")][0].replace("'", "''")
- filter_subregion = [row[0] for row in arcpy.da.SearchCursor(rf"{region_gdb}\Datasets", "FilterSubRegion")][0].replace("'", "''")
-
- arcpy.management.Delete(table_name_view)
- del table_name_view
-
- region_table = rf"{project_gdb}\{table_name}"
- arcpy.AddMessage(f"\t{os.path.basename(region_table)} has {arcpy.management.GetCount(region_table)[0]} records")
- # Process: Make Table View (Make Table View) (management)
- table_name_view = "IDW Table View"
- arcpy.management.MakeTableView(in_table = region_table,
- out_view = table_name_view,
- where_clause = "DistributionProjectName = 'NMFS/Rutgers IDW Interpolation'"
- )
- # Process: Copy Rows (Copy Rows) (management)
- arcpy.AddMessage(f"\t{table_name_view} has {arcpy.management.GetCount(table_name_view)[0]} records")
- arcpy.management.CopyRows(in_rows = table_name_view, out_table = rf"{region_gdb}\{table_name}")
- arcpy.AddMessage("\tCopy Rows: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.management.Delete(table_name_view)
- del table_name_view
-
- # Process: Make Table View (Make Table View) (management)
- #arcpy.AddMessage(filter_subregion)
- species_filter = rf"{project_gdb}\Species_Filter"
- arcpy.AddMessage(f"\t{os.path.basename(species_filter)} has {arcpy.management.GetCount(species_filter)[0]} records")
- table_name_view = "Species Filter Table View"
- arcpy.management.MakeTableView(in_table = species_filter,
- out_view = table_name_view,
- #where_clause = f"FilterSubRegion = '{filter_subregion}'",
- where_clause = f"FilterSubRegion = '{filter_subregion}' AND DistributionProjectName = 'NMFS/Rutgers IDW Interpolation'",
- workspace=region_gdb,
- field_info="OBJECTID OBJECTID VISIBLE NONE;Species Species VISIBLE NONE;CommonName CommonName VISIBLE NONE;TaxonomicGroup TaxonomicGroup VISIBLE NONE;FilterRegion FilterRegion VISIBLE NONE;FilterSubRegion FilterSubRegion VISIBLE NONE;ManagementBody ManagementBody VISIBLE NONE;ManagementPlan ManagementPlan VISIBLE NONE;DistributionProjectName DistributionProjectName VISIBLE NONE"
- )
-
- arcpy.AddMessage(f"\t{table_name_view} has {arcpy.management.GetCount(table_name_view)[0]} records")
- arcpy.management.CopyRows(in_rows = table_name_view, out_table = rf"{region_gdb}\Species_Filter")
- arcpy.AddMessage("\tCopy Rows: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- arcpy.management.Delete(table_name_view)
- del table_name_view
- #print(filter_region, filter_subregion)
- #
- del region_table, species_filter
- del datasets, filter_region, filter_subregion
- # Leave so we can block the above code
- # Declared Variables
- del table_name
-
- # Declared Variables
- del scratch_folder, region_gdb
- # Imports
- del dismap_tools
- # Function Parameters
- del project_gdb, table_names
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- sys.exit()
- return False
- else:
- return True
-
-def director(project_gdb="", Sequential=True, table_names=[]):
- try:
- # Test if passed workspace exists, if not sys.exit()
- if not arcpy.Exists(project_gdb):
- sys.exit()(f"{os.path.basename(project_gdb)} is missing!!")
-
- import dismap_tools
- from create_species_year_image_name_table_worker import worker
-
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(1) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = os.path.join(project_folder, "Scratch")
- del project_folder
-
- #scratch_workspace = os.path.join(project_folder, "Scratch\\scratch.gdb")
- #csv_data_folder = rf"{project_folder}\CSV_Data"
- #arcpy.env.workspace = project_gdb
- #arcpy.env.scratchWorkspace = scratch_workspace
- #del project_folder, scratch_workspace
-
- preprocessing(project_gdb=project_gdb, table_names=table_names, clear_folder=True)
-
- # Sequential Processing
- if Sequential:
- arcpy.AddMessage("Sequential Processing")
- for i in range(0, len(table_names)):
- arcpy.AddMessage(f"Processing: {table_names[i]}")
- table_name = table_names[i]
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- try:
- worker(region_gdb=region_gdb)
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- del region_gdb, table_name
- del i
- else:
- pass
-
- # Non-Sequential Processing
- if not Sequential:
- arcpy.AddMessage("Non-Sequential Processing")
- # Imports
- import multiprocessing
- from time import time, localtime, strftime, sleep, gmtime
- arcpy.AddMessage("Start multiprocessing using the ArcGIS Pro pythonw.exe.")
- #Set multiprocessing exe in case we're running as an embedded process, i.e ArcGIS
- #get_install_path() uses a registry query to figure out 64bit python exe if available
- multiprocessing.set_executable(os.path.join(sys.exec_prefix, 'pythonw.exe'))
- # Get CPU count and then take 2 away for other process
- _processes = multiprocessing.cpu_count() - 2
- _processes = _processes if len(table_names) >= _processes else len(table_names)
- arcpy.AddMessage(f"Creating the multiprocessing Pool with {_processes} processes")
- #Create a pool of workers, keep one cpu free for surfing the net.
- #Let each worker process only handle 1 task before being restarted (in case of nasty memory leaks)
- with multiprocessing.Pool(processes=_processes, maxtasksperchild=1) as pool:
- arcpy.AddMessage("\tPrepare arguments for processing")
- # Use apply_async so we can handle exceptions gracefully
- jobs={}
- for i in range(0, len(table_names)):
- try:
- arcpy.AddMessage(f"Processing: {table_names[i]}")
- table_name = table_names[i]
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
- jobs[table_name] = pool.apply_async(worker, [region_gdb])
- del table_name, region_gdb
- except: # noqa: E722
- pool.terminate()
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- del i
- all_finished = False
- # Set a start time so that we can see how log things take
- start_time = time()
- result_completed = {}
- while True:
- all_finished = True
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- arcpy.AddMessage(f"\nStart Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage("Have the workers finished?")
- arcpy.AddMessage("Have the workers finished?")
- finish_time = strftime('%a %b %d %I:%M %p', localtime())
- time_elapsed = u"Elapsed Time {0} (H:M:S)".format(strftime("%H:%M:%S", gmtime(elapse_time)))
- arcpy.AddMessage(f"It's {finish_time}\n{time_elapsed}")
- finish_time = f"{finish_time}.\n\t{time_elapsed}"
- del time_elapsed
- for table_name, result in jobs.items():
- if result.ready():
- if table_name not in result_completed:
- result_completed[table_name] = finish_time
- try:
- # wait for and get the result from the task
- result.get()
- except SystemExit:
- pool.terminate()
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- pass
- arcpy.AddMessage(f"Process {table_name}\n\tFinished on {result_completed[table_name]}")
- else:
- all_finished = False
- arcpy.AddMessage(f"Process {table_name} is running. . .")
- del table_name, result
- del elapse_time, end_time, finish_time
- if all_finished:
- break
- sleep(_processes * 7.5)
- del result_completed
- del start_time
- del all_finished
- arcpy.AddMessage("\tClose the process pool")
- # close the process pool
- pool.close()
- # wait for all tasks to complete and processes to close
- arcpy.AddMessage("\tWait for all tasks to complete and processes to close")
- pool.join()
- # Just in case
- pool.terminate()
- del pool
- del jobs
- del _processes
- del time, multiprocessing, localtime, strftime, sleep, gmtime
- arcpy.AddMessage("\tDone with multiprocessing Pool")
-
- # Post-Processing
- arcpy.AddMessage("Post-Processing Begins")
- arcpy.AddMessage("Processing Results")
- datasets = list()
- walk = arcpy.da.Walk(scratch_folder, datatype=["Table", "FeatureClass"])
- for dirpath, dirnames, filenames in walk:
- for filename in filenames:
- if filename.endswith("LayerSpeciesYearImageName"):
- datasets.append(os.path.join(dirpath, filename))
- else:
- pass
- del filename
- del dirpath, dirnames, filenames
- del walk
- for dataset in datasets:
- datasets_short_path = f".. {'/'.join(dataset.split(os.sep)[-4:])}"
- dataset_name = os.path.basename(dataset)
- region_gdb = os.path.dirname(dataset)
- arcpy.AddMessage(f"\tDataset: '{dataset_name}'")
- arcpy.AddMessage(f"\t\tPath: '{datasets_short_path}'")
- arcpy.AddMessage(f"\t\tRegion GDB: '{os.path.basename(region_gdb)}'")
- arcpy.AddMessage(f"\tCopying the {dataset_name} Table to the project GDB Table")
- arcpy.management.Copy(rf"{region_gdb}\{dataset_name}", rf"{project_gdb}\{dataset_name}")
- arcpy.AddMessage("\tCopy: {0} {1}\n".format(dataset_name, arcpy.GetMessages(0).replace("\n", '\n\t')))
-
- arcpy.AddMessage("\t\tUpdating field values to replace None with empty string")
- fields = [f.name for f in arcpy.ListFields(rf"{project_gdb}\{dataset_name}") if f.type == "String"]
- # Create update cursor for feature class
- with arcpy.da.UpdateCursor(rf"{project_gdb}\{dataset_name}", fields) as cursor:
- for row in cursor:
- #arcpy.AddMessage(row)
- for field_value in row:
- #arcpy.AddMessage(field_value)
- if field_value is None:
- row[row.index(field_value)] = ""
- cursor.updateRow(row)
- del field_value
- del row
- del fields, cursor
-
- del region_gdb, dataset_name, datasets_short_path
- del dataset
- del datasets
-
- arcpy.AddMessage(f"Compacting the {os.path.basename(project_gdb)} GDB")
- arcpy.management.Compact(project_gdb)
- arcpy.AddMessage("\t"+arcpy.GetMessages(0).replace("\n", "\n\t"))
-
- # Declared Variables assigned in function
- del scratch_folder
- # Imports
- del dismap_tools, worker
- # Function Parameters
- del project_gdb, Sequential, table_names
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def script_tool(project_gdb=""):
- try:
- # Imports
- import dismap_tools
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
- # Set varaibales
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = rf"{os.path.dirname(project_gdb)}\Scratch"
- del project_folder
-
- # Clear Scratch Folder
- ClearScratchFolder = False
- if ClearScratchFolder:
- #if clear_folder:
- _scratch_folder = rf"{os.path.dirname(project_gdb)}\Scratch"
- dismap_tools.clear_folder(folder=_scratch_folder)
- del _scratch_folder
- else:
- pass
- del ClearScratchFolder
- #del clear_folder
-
- # Create project scratch workspace, if missing
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- if not arcpy.Exists(scratch_folder):
- os.makedirs(scratch_folder)
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- arcpy.management.CreateFileGDB(rf"{scratch_folder}", "scratch")
- del scratch_folder
-
- # Set basic arcpy.env variables
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- try:
- # table_names = ["AI_IDW", "EBS_IDW", "ENBS_IDW", "GMEX_IDW", "GOA_IDW", "HI_IDW", "NBS_IDW", "NEUS_FAL_IDW", "NEUS_SPR_IDW", "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW", "WC_ANN_IDW", "WC_TRI_IDW",]
- Test = False
- if Test:
- director(project_gdb=project_gdb, Sequential=True, table_names=["GMEX_IDW", "HI_IDW", "WC_ANN_IDW", "WC_TRI_IDW"])
- #director(project_gdb=project_gdb, Sequential=False, table_names=["SEUS_SPR_IDW", "HI_IDW"])
- elif not Test:
- pass
- #director(project_gdb=project_gdb, Sequential=False, table_names=["AI_IDW", "EBS_IDW", "ENBS_IDW", "GOA_IDW", "NBS_IDW",])
- #director(project_gdb=project_gdb, Sequential=False, table_names=["HI_IDW", "WC_ANN_IDW", "WC_TRI_IDW",])
- #director(project_gdb=project_gdb, Sequential=False, table_names=["GMEX_IDW", "NEUS_FAL_IDW", "NEUS_SPR_IDW",])
- #director(project_gdb=project_gdb, Sequential=False, table_names=["SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["AI_IDW", "EBS_IDW", "ENBS_IDW", "GMEX_IDW", "GOA_IDW", "HI_IDW", "NBS_IDW", "NEUS_FAL_IDW", "NEUS_SPR_IDW", "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW", "WC_ANN_IDW", "WC_TRI_IDW",])
- #director(project_gdb=project_gdb, Sequential=False, table_names=["NEUS_FAL_IDW", "NEUS_SPR_IDW", "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW",])
-
- else:
- pass
- del Test
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
-
- # Clear Scratch Folder
- ClearScratchFolder = False
- if ClearScratchFolder:
- #if clear_folder:
- _scratch_folder = rf"{os.path.dirname(project_gdb)}\Scratch"
- dismap_tools.clear_folder(folder=_scratch_folder)
- del _scratch_folder
- else:
- pass
- del ClearScratchFolder
- #del clear_folder
-
- # Declared Variables
- del dismap_tools
- # Function Parameters
- del project_gdb
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- hours, rem = divmod(end_time-start_time, 3600)
- minutes, seconds = divmod(rem, 60)
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"End Time: {strftime('%a %b %d %I:%M %p', localtime(end_time))}")
- arcpy.AddMessage(f"Elapsed Time {int(hours):0>2}:{int(minutes):0>2}:{seconds:05.2f} (H:M:S)")
- arcpy.AddMessage(f"{'-' * 80}")
- del hours, rem, minutes, seconds
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- sys.exit()
- return False
- else:
- return True
-
-if __name__ == '__main__':
- try:
- project_gdb = arcpy.GetParameterAsText(0)
- if not project_gdb:
- project_gdb = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026\\February 1 2026.gdb")
- else:
- pass
-
- script_tool(project_gdb)
-
- arcpy.SetParameterAsText(1, "Result")
- del project_gdb
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_species_year_image_name_table_worker.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_species_year_image_name_table_worker.py
deleted file mode 100644
index 6c103b6..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/create_species_year_image_name_table_worker.py
+++ /dev/null
@@ -1,559 +0,0 @@
-# -*- coding: utf-8 -*-
-#-------------------------------------------------------------------------------
-# Name: create_species_year_image_name_table_worker
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 09/03/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-#-------------------------------------------------------------------------------
-import os
-import sys
-import traceback
-import inspect
-
-import arcpy # third-parties second
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- filename = sys.path[0] + os.sep + "test.py"
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def print_table(table=""):
- try:
- """ Print first 5 rows of a table """
- desc = arcpy.da.Describe(table)
- fields = [f.name for f in desc["fields"] if f.type == "String"]
- #Get OID field
- oid = desc["OIDFieldName"]
- # Use SQL TOP to sort field values
- arcpy.AddMessage(f"{', '.join(fields)}")
- for row in arcpy.da.SearchCursor(table, fields, f"{oid} <= 5"):
- arcpy.AddMessage(row)
- del row
- del desc, fields, oid
- del table
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
-
-def worker(region_gdb=""):
- try:
- # Test if passed workspace exists, if not sys.exit()
- if not arcpy.Exists(rf"{region_gdb}"):
- arcpy.AddError(f"{os.path.basename(region_gdb)} is missing!!")
- sys.exit()
-
- from arcpy import metadata as md
- # Import the dismap module to access tools
- import dismap_tools
-
- # Set History and Metadata logs, set serverity and message level
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- # Set basic workkpace variables
- table_name = os.path.basename(region_gdb).replace(".gdb", "")
- scratch_folder = os.path.dirname(region_gdb)
- project_folder = os.path.dirname(scratch_folder)
- scratch_workspace = rf"{scratch_folder}\{table_name}\scratch.gdb"
- region_table = rf"{region_gdb}\{table_name}"
- csv_data_folder = rf"{project_folder}\CSV_Data"
-
- arcpy.AddMessage(f"Table Name: {table_name}\nProject Folder: {project_folder}\nScratch Folder: {scratch_folder}\n")
- # Set basic workkpace variables
- del project_folder, scratch_folder
-
- arcpy.env.workspace = region_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- # **********************************************************************
- # Start: Create new LayerSpeciesYearImageName table
- layer_species_year_image_name = rf"{region_gdb}\{table_name}_LayerSpeciesYearImageName"
-
- arcpy.AddMessage(f"Create Table: {table_name}_LayerSpeciesYearImageName" )
- arcpy.management.CreateTable(out_path = region_gdb,
- out_name = f"{table_name}_LayerSpeciesYearImageName",
- template = "",
- config_keyword = "",
- out_alias = "")
- arcpy.AddMessage("\tCreate Table: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- # Add Fields to layer_species_year_image_name
- dismap_tools.add_fields(csv_data_folder, layer_species_year_image_name)
- dismap_tools.import_metadata(csv_data_folder, layer_species_year_image_name)
- # End
- # **********************************************************************
-
- # **********************************************************************
- # Start: Create new LayerSpeciesYearImageName table
- arcpy.AddMessage("\nDatasets Table\n" )
- datasets_table = rf"{region_gdb}\\Datasets"
- datasets_table_fields = [f.name for f in arcpy.ListFields(datasets_table) if f.type not in ['Geometry', 'OID']]
- print_table(datasets_table)
- #region = [row[0] for row in arcpy.da.SearchCursor(datasets_table, "Region", where_clause = f"TableName = '{table_name}'")][0]
- filter_region = [row[0] for row in arcpy.da.SearchCursor(datasets_table, "FilterRegion", where_clause = f"TableName = '{table_name}'")][0].replace("'", "''")
- filter_subregion = [row[0] for row in arcpy.da.SearchCursor(datasets_table, "FilterSubRegion", where_clause = f"TableName = '{table_name}'")][0].replace("'", "''")
- # End
- # **********************************************************************
-
- # **********************************************************************
- # Start: Create new LayerSpeciesYearImageName table
- arcpy.AddMessage("\nRegion IDW Table\n" )
- region_table_fields = [f.name for f in arcpy.ListFields(region_table) if f.type not in ['Geometry', 'OID']]
- # Get a record count to see if data is present; we don't want to add data
- getcount = arcpy.management.GetCount(region_table)[0]
- arcpy.AddMessage(f"\t{os.path.basename(region_table)} has {getcount} records")
- del getcount
- print_table(region_table)
- arcpy.AddMessage(f"\n\tUnique Species Count: {len(dismap_tools.unique_values(table=region_table, field='Species'))} for {os.path.basename(region_table)}")
- # End
- # **********************************************************************
-
- # **********************************************************************
- # Start: Create new LayerSpeciesYearImageName table
- arcpy.AddMessage("\nImage Name Table\n" )
- layer_species_year_image_name_fields = [f.name for f in arcpy.ListFields(layer_species_year_image_name) if f.type not in ['Geometry', 'OID']]
- arcpy.AddMessage(f"Image Name Fields:\n\t{', '.join(layer_species_year_image_name_fields)}")
- print_table(layer_species_year_image_name)
- # End
- # **********************************************************************
-
- # **********************************************************************
- # Start: Get information from the species filter table to create a
- # species filter dictionary
- arcpy.AddMessage("\nCreating the Species_Filter dictionary\n" )
-
- species_filter_table = os.path.join(region_gdb, "Species_Filter")
- species_filter_table_fields = [f.name for f in arcpy.ListFields(species_filter_table) if f.type not in ['Geometry', 'OID']]
- # Get a record count to see if data is present; we don't want to add data
- getcount = arcpy.management.GetCount(species_filter_table)[0]
- arcpy.AddMessage(f"\t{os.path.basename(species_filter_table)} has {getcount} records")
- arcpy.AddMessage(f"\tUnique Species Count: {len(dismap_tools.unique_values(table=species_filter_table, field='Species'))} for {os.path.basename(species_filter_table)}")
- del getcount
- #arcpy.AddMessage(species_filter_table_fields)
- print_table(species_filter_table)
- # Species, CommonName, TaxonomicGroup, FilterRegion, FilterSubRegion, ManagementBody, ManagementPlan, DistributionProjectName
- species_filter = {}
- with arcpy.da.SearchCursor(species_filter_table, species_filter_table_fields, f"FilterSubRegion = '{filter_subregion}'") as cursor:
- for row in cursor:
- #arcpy.AddMessage(row)
- species_filter[row[0]] = [row[1],row[2],row[3],row[4],row[5],row[6],row[7]]
- del row
- del cursor, species_filter_table, species_filter_table_fields
- # End
- # **********************************************************************
-#Datasets
-# table_name
-# DatasetCode, TableName, Region, Season, DistributionProjectName, SummaryProduct, FilterRegion, FilterSubRegion
-# ['AI', 'AI_IDW', 'Aleutian Islands', '', 'NMFS/Rutgers IDW Interpolation', 'Yes', 'Alaska', 'Aleutian Islands'
-
-# IDW Table
-# DatasetCode, Region, Season, DistributionProjectName, SummaryProduct, SampleID, Species, TransformUnit, CommonName, SpeciesCommonName, CommonNameSpecies, CoreSpecies, Stratum
-# ['AI', 'Aleutian Islands', '', 'NMFS/Rutgers IDW Interpolation', 'Yes', '-10850', 'Anoplopoma fimbria', 'cuberoot', 'Sablefish', 'Anoplopoma fimbria (Sablefish)', 'Sablefish (Anoplopoma fimbria)', 'Yes', '721']
-
-# Species Filter
-# Species, CommonName, TaxonomicGroup, FilterRegion, FilterSubRegion, ManagementBody, ManagementPlan, DistributionProjectName
-# ['Anoplopoma fimbria', 'Sablefish', 'Perciformes/Cottoidei (sculpins)', 'Alaska', 'Aleutian Islands', 'NPFMC', 'Groundfish of the Bering Sea and Aleutian Islands Management Area', 'NMFS/Rutgers IDW Interpolation']
-
-# Image Name Table
-# DatasetCode, Region, Season, SummaryProduct, FilterRegion, FilterSubRegion, Species, CommonName, SpeciesCommonName, CommonNameSpecies, TaxonomicGroup, ManagementBody, ManagementPlan, DistributionProjectName, CoreSpecies, Variable, Value, Dimensions, ImageName
-
- arcpy.AddMessage("\nDefining the case fields\n")
-
- case_fields = [f for f in layer_species_year_image_name_fields if f in region_table_fields]
- arcpy.AddMessage(f"Case Fields:\n\t{', '.join(case_fields)}")
-
- # Execute Statistics to get unique set of records
- table_name_tmp = table_name+"_tmp"
- stats_fields = [[f"{f}", "COUNT"] for f in case_fields]
-
- arcpy.AddMessage(f"Statistics Analysis of {table_name} Table")
- arcpy.analysis.Statistics(table_name, table_name_tmp, stats_fields, case_fields)
- arcpy.AddMessage("\tStatistics Analysis: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- del stats_fields, case_fields
-
- table_name_tmp_fields = [f.name for f in arcpy.ListFields(table_name_tmp) if f.type not in ['Geometry', 'OID']]
-
- table_name_tmp_drop_fields = ";".join([f for f in table_name_tmp_fields if "FREQUENCY" in f or "COUNT" in f])
- del table_name_tmp_fields
-
- arcpy.management.DeleteField(in_table=table_name_tmp, drop_field=table_name_tmp_drop_fields)
- del table_name_tmp_drop_fields
-
- # Get a record count to see if data is present; we don't want to add data
- getcount = arcpy.management.GetCount(table_name_tmp)[0]
- arcpy.AddMessage(f"\t{table_name_tmp} has {getcount} records")
- del getcount
-
- arcpy.AddMessage(f"\tAdding the Variable, Dimensions, and ImageName Fields to the {table_name_tmp} table")
-
- table_name_tmp_new_fields = ['FilterRegion', 'FilterSubRegion', 'TaxonomicGroup',
- 'ManagementBody', 'ManagementPlan', 'DistributionProjectName',
- 'Variable', 'Value', 'Dimensions', 'ImageName',]
-
- table_name_tmp_fields = [f.name for f in arcpy.ListFields(table_name_tmp) if f.type not in ['Geometry', 'OID']]
- arcpy.AddMessage(table_name_tmp_fields)
-
- table_name_tmp_new_fields = [f for f in table_name_tmp_new_fields if f not in table_name_tmp_fields]
- arcpy.AddMessage(table_name_tmp_new_fields)
-
- field_definitions = dismap_tools.field_definitions(csv_data_folder, "")
-
- field_definition_list = []
- for table_name_tmp_new_field in table_name_tmp_new_fields:
- #arcpy.AddMessage(table_name_tmp_new_field)
- field_definition_list.append([field_definitions[table_name_tmp_new_field]["field_name"],
- field_definitions[table_name_tmp_new_field]["field_type"],
- field_definitions[table_name_tmp_new_field]["field_aliasName"],
- field_definitions[table_name_tmp_new_field]["field_length"]])
- del table_name_tmp_new_field
- del field_definitions
-
- arcpy.AddMessage(f"Adding Fields to Table: {table_name}_tmp")
- arcpy.management.AddFields(in_table = table_name_tmp, field_description = field_definition_list, template="")
- arcpy.AddMessage("\t{0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- del field_definition_list
-
- del table_name_tmp_new_fields, table_name_tmp_fields
-
- # The following calculates the time stamp for the Dataset
- # Use Update Cursor instead of Calculate Field
- fields = ["DatasetCode", "Region", "Species", "Year", "FilterRegion",
- "FilterSubRegion", "TaxonomicGroup", "ManagementBody",
- "ManagementPlan", "DistributionProjectName", "Variable",
- "Value", "Dimensions", "ImageName"]
-
- with arcpy.da.UpdateCursor(table_name_tmp, fields) as cursor:
- for row in cursor:
- variable = row[2].replace("(","").replace(")","").replace(".","")
- value = "Species"
- dimensions = "StdTime"
- imagename = f"{table_name}_{variable.replace(' ','_')}_{str(row[3])}"
- if row[2] in species_filter:
- row[4] = filter_region.replace("''", "'")
- row[5] = filter_subregion.replace("''", "'")
- row[6] = species_filter[row[2]][1] # TaxonomicGroup
- row[7] = species_filter[row[2]][4] # ManagementBody
- row[8] = species_filter[row[2]][5] # ManagementPlan
- row[9] = species_filter[row[2]][6] # DistributionProjectName
- else:
- row[4] = ""
- row[5] = ""
- row[6] = ""
- row[7] = ""
- row[8] = ""
- row[9] = ""
- row[10] = variable
- row[11] = value
- row[12] = dimensions
- row[13] = imagename
- cursor.updateRow(row)
- del row, variable, value, dimensions, imagename
- del cursor
- del fields
- del species_filter
-
- arcpy.management.Append(inputs = table_name_tmp, target = layer_species_year_image_name, schema_type="NO_TEST", field_mapping="", subtype="")
- arcpy.AddMessage("\tAppend: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- table_name_tmp_fields = [f.name for f in arcpy.ListFields(table_name_tmp) if f.type not in ['Geometry', 'OID']]
-
- case_fields = [f.name for f in arcpy.ListFields(table_name_tmp) if f.type not in ['Geometry', 'OID'] and f.name not in ["CoreSpecies", "Species", "CommonName", "SpeciesCommonName", "CommonNameSpecies", "TaxonomicGroup", "ManagementBody", "ManagementPlan", "Variable", "Value", "Dimensions", "ImageName"]]
-
- # Execute Statistics to get unique set of records
- table_name_tmp_stats = table_name_tmp+"_stats"
-
- stats_fields = [[f"{f}", "COUNT"] for f in case_fields]
-
- arcpy.AddMessage(f"\tStatistics Analysis of '{table_name}_tmp' Table")
-
- arcpy.analysis.Statistics(table_name_tmp, table_name_tmp_stats, stats_fields, case_fields)
- arcpy.AddMessage("\tStatistics Analysis: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del stats_fields, case_fields
-
- fields = [f.name for f in arcpy.ListFields(table_name_tmp_stats) if f.type not in ['Geometry', 'OID']]
-
- drop_fields = ";".join([f for f in fields if "FREQUENCY" in f or "COUNT" in f])
- del fields
-
- arcpy.management.DeleteField(in_table=table_name_tmp_stats, drop_field=drop_fields)
- arcpy.AddMessage("\tDelete Field: {0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- del drop_fields
-
- # Get a record count to see if data is present; we don't want to add data
- getcount = arcpy.management.GetCount(table_name_tmp_stats)[0]
- arcpy.AddMessage(f'\t\t> {os.path.basename(table_name_tmp_stats)} has {getcount} records')
- del getcount
-
- arcpy.AddMessage(f'\t\t> Add Variable, Dimensions, and ImageName \n\t\t> Fields to {os.path.basename(table_name_tmp_stats)} table\n')
-
- table_name_tmp_new_fields = ['CoreSpecies', 'Variable', 'Value', 'Dimensions', 'ImageName',]
-
- tb_fields = [f.name for f in arcpy.ListFields(table_name_tmp_stats) if f.type not in ['Geometry', 'OID']]
-
- table_name_tmp_new_fields = [f for f in table_name_tmp_new_fields if f not in tb_fields]
- del tb_fields
-
- field_definitions = dismap_tools.field_definitions(csv_data_folder, "")
-
- field_definition_list = []
- for table_name_tmp_new_field in table_name_tmp_new_fields:
- field_definition_list.append([field_definitions[table_name_tmp_new_field]["field_name"],
- field_definitions[table_name_tmp_new_field]["field_type"],
- field_definitions[table_name_tmp_new_field]["field_aliasName"],
- field_definitions[table_name_tmp_new_field]["field_length"]])
- del table_name_tmp_new_field
- del field_definitions
- del table_name_tmp_new_fields
-
- arcpy.AddMessage(f"Adding Fields to Table: {table_name}_tmp")
- arcpy.management.AddFields(in_table = table_name_tmp_stats, field_description = field_definition_list, template="")
- arcpy.AddMessage("\t{0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
-
- del field_definition_list
-
- fields = [f.name for f in arcpy.ListFields(table_name_tmp_stats) if f.type not in ['Geometry', 'OID']]
-
- arcpy.AddMessage(fields)
- # ['DatasetCode', 'Region', 'Season', 'SummaryProduct', 'DistributionProjectName',
- # 'Year', 'StdTime', 'FilterRegion', 'FilterSubRegion', 'CoreSpecies', 'Variable',
- # 'Value', 'Dimensions', 'ImageName']
-
- with arcpy.da.UpdateCursor(table_name_tmp_stats, fields) as cursor:
- for row in cursor:
- variable = "Core Species Richness"
- value = "Core Species Richness"
- dimensions = "StdTime"
- imagename = f"{table_name}_{variable.replace(' ','_')}_{str(row[5])}"
- row[7] = filter_region.replace("''", "'")
- row[8] = filter_subregion.replace("''", "'")
- row[9] = "Yes"
- row[10] = variable
- row[11] = value
- row[12] = dimensions
- row[13] = imagename
- arcpy.AddMessage(row)
- cursor.updateRow(row)
- del row, variable, value, dimensions, imagename
- del cursor
-
- arcpy.management.Append(inputs = table_name_tmp_stats, target = layer_species_year_image_name, schema_type="NO_TEST", field_mapping="", subtype="")
-
- # The following calculates the time stamp for the Dataset
- # Use Update Cursor instead of Calculate Field
-
- with arcpy.da.UpdateCursor(table_name_tmp_stats, fields) as cursor:
- for row in cursor:
- # #variable = "Core Species Richness" if row[8] == "Yes" else "Species Richness"
- variable = "Species Richness"
- value = "Species Richness"
- dimensions = "StdTime"
- imagename = f"{table_name}_{variable.replace(' ','_')}_{str(row[5])}"
- row[7] = filter_region.replace("''", "'")
- row[8] = filter_subregion.replace("''", "'")
- row[9] = "No"
- row[10] = variable
- row[11] = value
- row[12] = dimensions
- row[13] = imagename
- arcpy.AddMessage(row)
- cursor.updateRow(row)
- del row, variable, value, dimensions, imagename
- del fields, cursor
-
- arcpy.management.Append(inputs = table_name_tmp_stats, target = layer_species_year_image_name, schema_type="NO_TEST", field_mapping="", subtype="")
-
- del table_name_tmp_stats, table_name_tmp_fields
-
- del table_name_tmp
-
- # Alter Field Names to layer_species_year_image_name
- dismap_tools.alter_fields(csv_data_folder, layer_species_year_image_name)
-
- dataset_md = md.Metadata(layer_species_year_image_name)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- del dataset_md
-
- # End of business logic for the worker function
- arcpy.AddMessage(f"Processing for: {table_name} complete")
-
- arcpy.env.workspace = region_gdb
- datasets = [ds for ds in arcpy.ListTables("*") if not ds.endswith("LayerSpeciesYearImageName")]
- for dataset in datasets:
-## arcpy.AddMessage(f"Deleting: '{dataset}'")
-## arcpy.management.Delete(dataset)
- del dataset
- del datasets
-
- # Declared Variables
- del filter_region, filter_subregion
- del datasets_table, datasets_table_fields, region_table_fields
- del layer_species_year_image_name, layer_species_year_image_name_fields
- del csv_data_folder, region_table, scratch_workspace, table_name
- # Imports
- del md, dismap_tools
- # Function parameter
- del region_gdb
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(f"Caught an arcpy.ExecuteWarning error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(f"Caught an arcpy.ExecuteError error in the '{inspect.stack()[0][3]}' function.")
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except SystemExit as se:
- arcpy.AddError(f"Caught an SystemExit error: {se} in the '{inspect.stack()[0][3]}' function.")
- sys.exit()
- except Exception as e:
- arcpy.AddError(f"Caught an Exception error: {e} in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(f"Caught an except error in the '{inspect.stack()[0][3]}' function.")
- traceback.print_exc()
- sys.exit()
- else: # noqa: E722
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- pass
-
-def script_tool(project_gdb=""):
- try:
- from create_species_year_image_name_table_director import preprocessing
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
- # Set basic arcpy.env variables
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- ## # Set worker parameters
- ## #table_name = "AI_IDW"
- ## table_name = "HI_IDW"
- ## #table_name = "NBS_IDW"
- ## #table_name = "ENBS_IDW"
-
- #table_names = ["NEUS_FAL_IDW", "NEUS_SPR_IDW", "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW",]
- table_names = ["NEUS_FAL_IDW"]
-
- preprocessing(project_gdb=project_gdb, table_names=table_names, clear_folder=True)
-
- # Set varaibales
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = os.path.join(project_folder, "Scratch")
- del project_folder
-
- for table_name in table_names:
- region_gdb = os.path.join(scratch_folder, f"{table_name}.gdb")
-
- try:
- pass
- worker(region_gdb=region_gdb)
- except SystemExit:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
-
- del table_name, region_gdb
-
- del table_names
-
- # Declared Varaiables
- del scratch_folder
- # Imports
-
- # Function Parameters
- del project_gdb
-
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- hours, rem = divmod(end_time-start_time, 3600)
- minutes, seconds = divmod(rem, 60)
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"End Time: {strftime('%a %b %d %I:%M %p', localtime(end_time))}")
- arcpy.AddMessage(f"Elapsed Time {int(hours):0>2}:{int(minutes):0>2}:{seconds:05.2f} (H:M:S)")
- arcpy.AddMessage(f"{'-' * 80}")
- del hours, rem, minutes, seconds
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-if __name__ == '__main__':
- try:
- project_gdb = arcpy.GetParameterAsText(0)
- if not project_gdb:
- project_gdb = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026\\February 1 2026.gdb")
- else:
- pass
-
- script_tool(project_gdb)
-
- arcpy.SetParameterAsText(1, "Result")
-
- del project_gdb
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dev_dismap_metadata_processing.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/dev_dismap_metadata_processing.py
deleted file mode 100644
index 154026c..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dev_dismap_metadata_processing.py
+++ /dev/null
@@ -1,4381 +0,0 @@
-# -*- coding: utf-8 -*-
-# -------------------------------------------------------------------------------
-# Name: module1
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 03/03/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-# -------------------------------------------------------------------------------
-import os, sys # built-ins first
-import traceback
-import importlib
-import inspect
-
-import arcpy # third-parties second
-
-def new_function():
- try:
- pass
- # Declared Varaiables
- # Imports
- # Function Parameters
- except KeyboardInterrupt:
- raise SystemExit
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def date_code(version):
- try:
- from datetime import datetime
- from time import strftime
-
- _date_code = ""
-
- if version.isdigit():
- # The version value is 'YYYYMMDD' format (20230501)
- # and is converted to 'Month Day and Year' (i.e. May 1 2023)
- _date_code = datetime.strptime(version, "%Y%m%d").strftime("%B %#d %Y")
- elif not version.isdigit():
- # The version value is 'Month Day and Year' (i.e. May 1 2023)
- # and is converted to 'YYYYMMDD' format (20230501)
- _date_code = datetime.strptime(version, "%B %d %Y").strftime("%Y%m%d")
- else:
- _date_code = "error"
- # Imports
- del datetime, strftime
- del version
-
- import copy
- __results = copy.deepcopy(_date_code)
- del _date_code, copy
- except KeyboardInterrupt:
- raise SystemExit
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return __results
- finally:
- if "__results" in locals().keys(): del __results
-
-# #
-# Function: unique_years
-# Gets the unique years in a table
-# @param string table: The name of the layer
-# @return array: a sorted year array so we can go in order.
-# #
-def unique_years(table):
- #print(table)
- arcpy.management.SelectLayerByAttribute( table, "CLEAR_SELECTION" )
- arcpy.management.SelectLayerByAttribute( table, "NEW_SELECTION", "Year IS NOT NULL")
- with arcpy.da.SearchCursor(table, ["Year"]) as cursor:
- return sorted({row[0] for row in cursor})
-
-def xml_tree_merge(source, target):
- import copy
- """Merge two xml trees A and B, so that each recursively found leaf element of B is added to A. If the element
- already exists in A, it is replaced with B's version. Tree structure is created in A as required to reflect the
- position of the leaf element in B.
- Given and , a merge results in
- (order not guaranteed)
- """
- def inner(aparent, bparent):
- for bchild in bparent:
- achild = aparent.xpath('./' + bchild.tag)
- if not achild:
- aparent.append(bchild)
- elif bchild.getchildren():
- inner(achild[0], bchild)
-
- source_copy = copy.deepcopy(source)
- inner(source_copy, target)
- return source_copy
-
-def dataset_title_dict(project_gdb=""):
- try:
- if "Scratch" in project_gdb:
- project = os.path.basename(os.path.dirname(os.path.dirname(project_gdb)))
- else:
- project = os.path.basename(os.path.dirname(project_gdb))
-
- project_folder = os.path.dirname(project_gdb)
- crf_folder = rf"{project_folder}\CRFs"
- _credits = "These data were produced by NMFS OST."
- access_constraints = "***No Warranty*** The user assumes the entire risk related to its use of these data. NMFS is providing these data 'as is' and NMFS disclaims any and all warranties, whether express or implied, including (without limitation) any implied warranties of merchantability or fitness for a particular purpose. No warranty expressed or implied is made regarding the accuracy or utility of the data on any other system or for general or scientific purposes, nor shall the act of distribution constitute any such warranty. It is strongly recommended that careful attention be paid to the contents of the metadata file associated with these data to evaluate dataset limitations, restrictions or intended use. In no event will NMFS be liable to you or to any third party for any direct, indirect, incidental, consequential, special or exemplary damages or lost profit resulting from any use or misuse of these data."
-
- __datasets_dict = {}
-
- dataset_codes = {row[0] : [row[1], row[2], row[3], row[4], row[5]] for row in arcpy.da.SearchCursor(rf"{project_gdb}\Datasets", ["DatasetCode", "PointFeatureType", "DistributionProjectCode", "FilterRegion", "FilterSubRegion", "Season"])}
- for dataset_code in dataset_codes:
- point_feature_type = dataset_codes[dataset_code][0] if dataset_codes[dataset_code][0] else ""
- distribution_project_code = dataset_codes[dataset_code][1] if dataset_codes[dataset_code][1] else ""
- filter_region = dataset_codes[dataset_code][2] if dataset_codes[dataset_code][2] else dataset_code.replace("_", " ")
- filter_sub_region = dataset_codes[dataset_code][3] if dataset_codes[dataset_code][3] else dataset_code.replace("_", " ")
- season = dataset_codes[dataset_code][4] if dataset_codes[dataset_code][4] else ""
-
- tags = f"DisMAP; {filter_region}" if filter_region == filter_sub_region else f"DisMAP; {filter_region}; {filter_sub_region}"
- tags = f"{tags}; {season}" if season else f"{tags}"
- tags = f"{tags}; distribution; seasonal distribution; fish; invertebrates; climate change; fishery-independent surveys; ecological dynamics; oceans; biosphere; earth science; species/population interactions; aquatic sciences; fisheries; range changes"
- summary = "These data were created as part of the DisMAP project to enable visualization and analysis of changes in fish and invertebrate distributions"
-
- #print(f"Dateset Code: {dataset_code}")
- if distribution_project_code:
- if distribution_project_code == "IDW":
-
- #table_name = f"{dataset_code}_{distribution_project_code}_TABLE"
- table_name = f"{dataset_code}_{distribution_project_code}"
- table_name_s = f"{table_name}_{date_code(project)}"
- table_name_st = f"{filter_sub_region} {season} Table {date_code(project)}".replace(' ',' ')
-
- #print(f"\tProcessing: {table_name}")
-
- __datasets_dict[table_name] = {"Dataset Service" : table_name_s,
- "Dataset Service Title" : table_name_st,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"This table represents the CSV Data files in ArcGIS format",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- del table_name, table_name_s, table_name_st
-
- table_name = f"{dataset_code}_{distribution_project_code}"
- sample_locations_fc = f"{table_name}_{point_feature_type.replace(' ', '_')}"
- sample_locations_fcs = f"{table_name}_{point_feature_type.replace(' ', '_')}_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} {point_feature_type} {date_code(project)}"
- sample_locations_fcst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- __datasets_dict[sample_locations_fc] = {"Dataset Service" : sample_locations_fcs,
- "Dataset Service Title" : sample_locations_fcst,
- "Tags" : tags,
- "Summary" : f"{summary}. These layers provide information on the spatial extent/boundaries of the bottom trawl surveys. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Description" : f"This survey points layer provides information on both the locations where species are caught in several NOAA Fisheries surveys and the amount (i.e., biomass weight catch per unit effort, standardized to kg/ha) of each species that was caught at each location. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tSample Locations FC: {sample_locations_fc}")
- #print(f"\tSample Locations FCS: {sample_locations_fcs}")
- #print(f"\tSample Locations FST: {sample_locations_fcst}")
-
- del table_name, sample_locations_fc, sample_locations_fcs, sample_locations_fcst
-
- table_name = f"{dataset_code}"
- sample_locations_fc = f"{table_name}_{point_feature_type.replace(' ', '_')}"
- sample_locations_fcs = f"{table_name}_{point_feature_type.replace(' ', '_')}_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} {point_feature_type} {date_code(project)}"
- sample_locations_fcst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- __datasets_dict[sample_locations_fc] = {"Dataset Service" : sample_locations_fcs,
- "Dataset Service Title" : sample_locations_fcst,
- "Tags" : tags,
- "Summary" : f"{summary}. These layers provide information on the spatial extent/boundaries of the bottom trawl surveys. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Description" : f"This survey points layer provides information on both the locations where species are caught in several NOAA Fisheries surveys and the amount (i.e., biomass weight catch per unit effort, standardized to kg/ha) of each species that was caught at each location. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tSample Locations FC: {sample_locations_fc}")
- #print(f"\tSample Locations FCS: {sample_locations_fcs}")
- #print(f"\tSample Locations FST: {sample_locations_fcst}")
-
- del table_name, sample_locations_fc, sample_locations_fcs, sample_locations_fcst
-
-
- elif distribution_project_code != "IDW":
-
- #table_name = f"{dataset_code}_TABLE"
- table_name = f"{dataset_code}"
- table_name_s = f"{table_name}_{date_code(project)}"
- table_name_st = f"{filter_sub_region} {season} Table {date_code(project)}".replace(' ',' ')
-
- #print(f"\tProcessing: {table_name}")
-
- __datasets_dict[table_name] = {"Dataset Service" : table_name_s,
- "Dataset Service Title" : table_name_st,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"This table represents the CSV Data files in ArcGIS format",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- del table_name, table_name_s, table_name_st
-
- table_name = f"{dataset_code}"
- grid_points_fc = f"{table_name}_{point_feature_type.replace(' ', '_')}"
- grid_points_fcs = f"{table_name}_{point_feature_type.replace(' ', '_')}_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Sample Locations {date_code(project)}"
- grid_points_fcst = f"{dataset_code.replace('_', ' ')} {point_feature_type} {date_code(project)}"
-
- __datasets_dict[grid_points_fc] = {"Dataset Service" : grid_points_fcs,
- "Dataset Service Title" : grid_points_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"This grid points layer provides information on model output amount (i.e., biomass weight catch per unit effort, standardized to kg/ha) of each species that was modeled at each location. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tGRID Points FC: {grid_points_fc}")
- #print(f"\tGRID Points FCS: {grid_points_fcs}")
- #print(f"\tGRID Points FCST: {grid_points_fcst}")
-
- del table_name, grid_points_fc, grid_points_fcs, grid_points_fcst
-
- dataset_code = f"{dataset_code}_{distribution_project_code}" if distribution_project_code not in dataset_code else dataset_code
-
- # Bathymetry
- bathymetry_r = f"{dataset_code}_Bathymetry"
- bathymetry_rs = f"{dataset_code}_Bathymetry_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Bathymetry {date_code(project)}"
- bathymetry_rst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {bathymetry_r}")
-
- __datasets_dict[bathymetry_r] = {"Dataset Service" : bathymetry_rs,
- "Dataset Service Title" : bathymetry_rst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"The bathymetry dataset represents the ocean depth at that grid cell.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tBathymetry R: {bathymetry_r}")
- #print(f"\tBathymetry RS: {bathymetry_rs}")
- #print(f"\tBathymetry RST: {bathymetry_rst}")
-
- del bathymetry_r, bathymetry_rs, bathymetry_rst
-
- # Boundary
- boundary_fc = f"{dataset_code}_Boundary"
- boundary_fcs = f"{dataset_code}_Boundary_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Boundary {date_code(project)}"
- boundary_fcst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {boundary_fc}")
-
- __datasets_dict[boundary_fc] = {"Dataset Service" : boundary_fcs,
- "Dataset Service Title" : boundary_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"These files contain the spatial boundaries of the NOAA Fisheries Bottom-trawl surveys. This data set covers 8 regions of the United States: Northeast, Southeast, Gulf of Mexico, West Coast, Eastern Bering Sea, Aleutian Islands, Gulf of Alaska, and Hawai'i Islands.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tBoundary FC: {boundary_fc}")
- #print(f"\tBoundary FCS: {boundary_fcs}")
- #print(f"\tBoundary FCST: {boundary_fcst}")
-
- del boundary_fc, boundary_fcs, boundary_fcst
-
- # Boundary
- boundary_line_fc = f"{dataset_code}_Boundary_Line"
- boundary_line_fcs = f"{dataset_code}_Boundary_Line_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Boundary Line {date_code(project)}"
- boundary_line_fcst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {boundary_line_fc}")
-
- __datasets_dict[boundary_line_fc] = {"Dataset Service" : boundary_line_fcs,
- "Dataset Service Title" : boundary_line_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"These files contain the spatial boundaries of the NOAA Fisheries Bottom-trawl surveys. This data set covers 8 regions of the United States: Northeast, Southeast, Gulf of Mexico, West Coast, Eastern Bering Sea, Aleutian Islands, Gulf of Alaska, and Hawai'i Islands.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tBoundary FC: {boundary_line_fc}")
- #print(f"\tBoundary FCS: {boundary_line_fcs}")
- #print(f"\tBoundary FCST: {boundary_line_fcst}")
-
- del boundary_line_fc, boundary_line_fcs, boundary_line_fcst
-
- # CRF
- crf_r = f"{dataset_code}_CRF"
- crf_rs = f"{dataset_code}_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} {dataset_code[dataset_code.rfind('_')+1:]} {date_code(project)}"
- crf_rst = f"{feature_service_title.replace(' ',' ')}"
- #del feature_service_title
-
- #print(f"Processing: {crf_r}")
- #print(f"\t{crf_rs}")
- #print(f"\t{feature_service_title}")
- #print(f"\t{crf_rst}")
-
- __datasets_dict[crf_r] = {"Dataset Service" : crf_rs,
- "Dataset Service Title" : crf_rst,
- "Tags" : tags,
- "Summary" : f"{summary}. These interpolated biomass layers provide information on the spatial distribution of species caught in the NOAA Fisheries fisheries-independent surveys. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Description" : f"NOAA Fisheries and its partners conduct fisheries-independent surveys in 8 regions in the US (Northeast, Southeast, Gulf of Mexico, West Coast, Gulf of Alaska, Bering Sea, Aleutian Islands, Hawai’i Islands). These surveys are designed to collect information on the seasonal distribution, relative abundance, and biodiversity of fish and invertebrate species found in U.S. waters. Over 400 species of fish and invertebrates have been identified in these surveys.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tCRF R: {crf_r}")
- #print(f"\tCRF RS: {crf_rs}")
- #print(f"\tCRF RST: {crf_rst}")
-
- del crf_r, crf_rs, crf_rst
-
- # Extent Points
- extent_points_fc = f"{dataset_code}_Extent_Points"
- extent_points_fcs = f"{dataset_code}_Extent_Points_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Extent Points {date_code(project)}"
- extent_points_fcst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {extent_points_fc}")
-
- __datasets_dict[extent_points_fc] = {"Dataset Service" : extent_points_fcs,
- "Dataset Service Title" : extent_points_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"The Extent Points layer represents the extent of the model region.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tExtent Points FC: {extent_points_fc}")
- #print(f"\tExtent Points FCS: {extent_points_fcs}")
- #print(f"\tExtent Points FCST: {extent_points_fcst}")
-
- del extent_points_fc, extent_points_fcs, extent_points_fcst
-
- # Extent Points
- points_fc = f"{dataset_code}_Points"
- points_fcs = f"{dataset_code}_Points_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Extent Points {date_code(project)}"
- points_fcst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {points_fc}")
-
- __datasets_dict[points_fc] = {"Dataset Service" : points_fcs,
- "Dataset Service Title" : points_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"The Points layer represents the extent of the model region.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tExtent Points FC: {points_fc}")
- #print(f"\tExtent Points FCS: {points_fcs}")
- #print(f"\tExtent Points FCST: {points_fcst}")
-
- del points_fc, points_fcs, points_fcst
-
- fishnet_fc = f"{dataset_code}_Fishnet"
- fishnet_fcs = f"{dataset_code}_Fishnet_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Fishnet {date_code(project)}"
- fishnet_fcst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {fishnet_fc}")
-
- __datasets_dict[fishnet_fc] = {"Dataset Service" : fishnet_fcs,
- "Dataset Service Title" : fishnet_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"The Fishnet is used to create the latitude and longitude rasters.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tFishnet FC: {fishnet_fc}")
- #print(f"\tFishnet FCS: {fishnet_fcs}")
- #print(f"\tFishnet FCST: {fishnet_fcst}")
-
- del fishnet_fc, fishnet_fcs, fishnet_fcst
-
- indicators_tb = f"{dataset_code}_Indicators"
- indicators_tbs = f"{dataset_code}_Indicators_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Indicators Table {date_code(project)}"
- indicators_tbst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {indicators_t}")
-
- __datasets_dict[indicators_tb] = {"Dataset Service" : indicators_tbs,
- "Dataset Service Title" : indicators_tbst,
- "Tags" : tags,
- "Summary" : f"{summary}. This table provides the key metrics used to evaluate a species distribution shift. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Description" : f"These data contain the key distribution metrics of center of gravity, range limits, and depth for each species in the portal. This data set covers 8 regions of the United States: Northeast, Southeast, Gulf of Mexico, West Coast, Bering Sea, Aleutian Islands, Gulf of Alaska, and Hawai'i Islands.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tIndicators T: {indicators_t}")
- #print(f"\tIndicators TS: {indicators_ts}")
- #print(f"\tIndicators TST: {indicators_tst}")
-
- del indicators_tb, indicators_tbs, indicators_tbst
-
- lat_long_fc = f"{dataset_code}_Lat_Long"
- lat_long_fcs = f"{dataset_code}_Lat_Long_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Lat Long {date_code(project)}"
- lat_long_fcst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {lat_long_fc}")
-
- __datasets_dict[lat_long_fc] = {"Dataset Service" : lat_long_fcs,
- "Dataset Service Title" : lat_long_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"The lat_long layer is used to get the latitude & longitude values to create these rasters",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tLat Long FC: {lat_long_fc}")
- #print(f"\tLat Long FCS: {lat_long_fcs}")
- #print(f"\tLat Long FCST: {lat_long_fcst}")
-
- del lat_long_fc, lat_long_fcs, lat_long_fcst
-
- latitude_r = f"{dataset_code}_Latitude"
- latitude_rs = f"{dataset_code}_Latitude_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Latitude {date_code(project)}"
- latitude_rst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {latitude_r}")
-
- __datasets_dict[latitude_r] = {"Dataset Service" : latitude_rs,
- "Dataset Service Title" : latitude_rst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"The Latitude raster",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tLatitude R: {latitude_r}")
- #print(f"\tLatitude RS: {latitude_rs}")
- #print(f"\tLatitude RST: {latitude_rst}")
-
- del latitude_r, latitude_rs, latitude_rst
-
- layer_species_year_image_name_tb = f"{dataset_code}_LayerSpeciesYearImageName"
- layer_species_year_image_name_tbs = f"{dataset_code}_LayerSpeciesYearImageName_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Layer Species Year Image Name Table {date_code(project)}"
- layer_species_year_image_name_tbst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {layer_species_year_image_name_tb}")
-
- __datasets_dict[layer_species_year_image_name_tb] = {"Dataset Service" : layer_species_year_image_name_tbs,
- "Dataset Service Title" : layer_species_year_image_name_tbst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"Layer Species Year Image Name Table",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tLayerSpeciesYearImageName T: {layer_species_year_image_name_tb}")
- #print(f"\tLayerSpeciesYearImageName TS: {layer_species_year_image_name_tbs}")
- #print(f"\tLayerSpeciesYearImageName TST: {layer_species_year_image_name_tbst}")
-
- del layer_species_year_image_name_tb, layer_species_year_image_name_tbs, layer_species_year_image_name_tbst
-
- longitude_r = f"{dataset_code}_Longitude"
- longitude_rs = f"{dataset_code}_Longitude_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Longitude {date_code(project)}"
- longitude_rst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {longitude_r}")
-
- __datasets_dict[longitude_r] = {"Dataset Service" : longitude_rs,
- "Dataset Service Title" : longitude_rst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"The Longitude raster",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tLongitude R: {longitude_r}")
- #print(f"\tLongitude RS: {longitude_rs}")
- #print(f"\tLongitude RST: {longitude_rst}")
-
- del longitude_r, longitude_rs, longitude_rst
-
- mosaic_r = f"{dataset_code}_Mosaic"
- mosaic_rs = f"{dataset_code}_Mosaic_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} {dataset_code[dataset_code.rfind('_')+1:]} Mosaic {date_code(project)}"
- mosaic_rst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {mosaic_r}")
-
- __datasets_dict[mosaic_r] = {"Dataset Service" : mosaic_rs,
- "Dataset Service Title" : mosaic_rst,
- #"Tags" : _tags,
- "Tags" : tags,
- "Summary" : f"{summary}. These interpolated biomass layers provide information on the spatial distribution of species caught in the NOAA Fisheries fisheries-independent surveys. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Description" : f"NOAA Fisheries and its partners conduct fisheries-independent surveys in 8 regions in the US (Northeast, Southeast, Gulf of Mexico, West Coast, Gulf of Alaska, Bering Sea, Aleutian Islands, Hawai’i Islands). These surveys are designed to collect information on the seasonal distribution, relative abundance, and biodiversity of fish and invertebrate species found in U.S. waters. Over 400 species of fish and invertebrates have been identified in these surveys.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tMosaic R: {mosaic_r}")
- #print(f"\tMosaic RS: {mosaic_rs}")
- #print(f"\tMosaic RST: {mosaic_rst}")
-
- del mosaic_r, mosaic_rs, mosaic_rst
-
- crf_r = f"{dataset_code}.crf"
- crf_rs = f"{dataset_code}_CRF_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} {dataset_code[dataset_code.rfind('_')+1:]} C {date_code(project)}"
- crf_rst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {mosaic_r}")
-
- __datasets_dict[crf_r] = {"Dataset Service" : crf_rs,
- "Dataset Service Title" : crf_rst,
- #"Tags" : _tags,
- "Tags" : tags,
- "Summary" : f"{summary}. These interpolated biomass layers provide information on the spatial distribution of species caught in the NOAA Fisheries fisheries-independent surveys. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Description" : f"NOAA Fisheries and its partners conduct fisheries-independent surveys in 8 regions in the US (Northeast, Southeast, Gulf of Mexico, West Coast, Gulf of Alaska, Bering Sea, Aleutian Islands, Hawai’i Islands). These surveys are designed to collect information on the seasonal distribution, relative abundance, and biodiversity of fish and invertebrate species found in U.S. waters. Over 400 species of fish and invertebrates have been identified in these surveys.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tCFR R: {crf_r}")
- #print(f"\tCFR RS: {crf_rs}")
- #print(f"\tCFR RST: {crf_rst}")
-
- del crf_r, crf_rs, crf_rst
-
- raster_mask_r = f"{dataset_code}_Raster_Mask"
- raster_mask_rs = f"{dataset_code}_Raster_Mask_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Raster Mask {date_code(project)}"
- raster_mask_rst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {raster_mask_r}")
-
- __datasets_dict[raster_mask_r] = {"Dataset Service" : raster_mask_rs,
- "Dataset Service Title" : raster_mask_rst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"Raster Mask is used for image production",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tRaster_Mask R: {raster_mask_r}")
- #print(f"\tRaster_Mask RS: {raster_mask_rs}")
- #print(f"\tRaster_Mask RST: {raster_mask_rst}")
-
- del raster_mask_r, raster_mask_rs, raster_mask_rst
-
- region_fc = f"{dataset_code}_Region"
- region_fcs = f"{dataset_code}_Region_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Region {date_code(project)}"
- region_fcst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {region_fc}")
-
- __datasets_dict[region_fc] = {"Dataset Service" : region_fcs,
- "Dataset Service Title" : region_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"These files contain the spatial boundaries of the NOAA Fisheries Bottom-trawl surveys. This data set covers 8 regions of the United States: Northeast, Southeast, Gulf of Mexico, West Coast, Bering Sea, Aleutian Islands, Gulf of Alaska, and Hawai'i Islands.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tRegion FC: {region_fc}")
- #print(f"\tRegion FCS: {region_fcs}")
- #print(f"\tRegion FCST: {region_fcst}")
-
- del region_fc, region_fcs, region_fcst
-
- survey_area_fc = f"{dataset_code}_Survey_Area"
- survey_area_fcs = f"{dataset_code}_Region_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Region {date_code(project)}"
- survey_area_fcst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {survey_area_fc}")
-
- __datasets_dict[survey_area_fc] = {"Dataset Service" : survey_area_fcs,
- "Dataset Service Title" : survey_area_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"These files contain the spatial boundaries of the NOAA Fisheries Bottom-trawl surveys. This data set covers 8 regions of the United States: Northeast, Southeast, Gulf of Mexico, West Coast, Bering Sea, Aleutian Islands, Gulf of Alaska, and Hawai'i Islands.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tRegion FC: {survey_area_fc}")
- #print(f"\tRegion FCS: {survey_area_fcs}")
- #print(f"\tRegion FCST: {survey_area_fcst}")
-
- del survey_area_fc, survey_area_fcs, survey_area_fcst
-
-
- del tags
-
- if not distribution_project_code:
-
- if "Datasets" == dataset_code:
-
- #print(f"\tProcessing: Datasets")
-
- datasets_tb = dataset_code
- datasets_tbs = f"{dataset_code}_{date_code(project)}"
- datasets_tbst = f"{dataset_code} {date_code(project)}"
-
- __datasets_dict[datasets_tb] = {"Dataset Service" : datasets_tbs,
- "Dataset Service Title" : datasets_tbst,
- "Tags" : "DisMAP, Datasets",
- "Summary" : summary,
- "Description" : "This table functions as a look-up table of vales",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- del datasets_tb, datasets_tbs, datasets_tbst
-
- elif "DisMAP_Regions" == dataset_code:
-
- #print(f"\tProcessing: DisMAP_Regions")
-
- regions_fc = dataset_code
- regions_fcs = f"{dataset_code}_{date_code(project)}"
- regions_fcst = f"DisMAP Regions {date_code(project)}"
-
- __datasets_dict[regions_fc] = {"Dataset Service" : regions_fcs,
- "Dataset Service Title" : regions_fcst,
- "Tags" : "DisMAP Regions",
- "Summary" : summary,
- "Description" : "These files contain the spatial boundaries of the NOAA Fisheries Bottom-trawl surveys. This data set covers 8 regions of the United States: Northeast, Southeast, Gulf of Mexico, West Coast, Eastern Bering Sea, Aleutian Islands, Gulf of Alaska, and Hawai'i Islands.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- del regions_fc, regions_fcs, regions_fcst
-
- elif "Indicators" == dataset_code:
-
- #print(f"\tProcessing: Indicators")
-
- indicators_tb = f"{dataset_code}"
- indicators_tbs = f"{dataset_code}_{date_code(project)}"
- indicators_tbst = f"{dataset_code} {date_code(project)}"
-
- __datasets_dict[indicators_tb] = {"Dataset Service" : indicators_tbs,
- "Dataset Service Title" : indicators_tbst,
- "Tags" : "DisMAP, Indicators",
- "Summary" : f"{summary}. This table provides the key metrics used to evaluate a species distribution shift. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Description" : f"These data contain the key distribution metrics of center of gravity, range limits, and depth for each species in the portal. This data set covers 8 regions of the United States: Northeast, Southeast, Gulf of Mexico, West Coast, Bering Sea, Aleutian Islands, Gulf of Alaska, and Hawai'i Islands.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- del indicators_tb, indicators_tbs, indicators_tbst
-
- elif "LayerSpeciesYearImageName" == dataset_code:
-
- #print(f"\tProcessing: LayerSpeciesYearImageName")
-
- layer_species_year_image_name_tb = dataset_code
- layer_species_year_image_name_tbs = f"{dataset_code}_{date_code(project)}"
- layer_species_year_image_name_tbst = f"Layer Species Year Image Name Table {date_code(project)}"
-
- #print(f"\tProcessing: {layer_species_year_image_name_tb}")
-
- __datasets_dict[layer_species_year_image_name_tb] = {"Dataset Service" : layer_species_year_image_name_tbs,
- "Dataset Service Title" : layer_species_year_image_name_tbst,
- "Tags" : "DisMAP, Layer Species Year Image Name Table",
- "Summary" : summary,
- "Description" : "This table functions as a look-up table of values",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tLayerSpeciesYearImageName T: {layer_species_year_image_name_tb}")
- #print(f"\tLayerSpeciesYearImageName TS: {layer_species_year_image_name_tbs}")
- #print(f"\tLayerSpeciesYearImageName TST: {layer_species_year_image_name_tbst}")
-
- del layer_species_year_image_name_tb, layer_species_year_image_name_tbs, layer_species_year_image_name_tbst
-
- elif "Species_Filter" == dataset_code:
-
- #print(f"\tProcessing: Species_Filter")
-
- species_filter_tb = dataset_code
- species_filter_tbs = f"{dataset_code}_{date_code(project)}"
- species_filter_tbst = f"Species Filter Table {date_code(project)}"
-
- __datasets_dict[species_filter_tb] = {"Dataset Service" : species_filter_tbs,
- "Dataset Service Title" : species_filter_tbst,
- "Tags" : "DisMAP, Species Filter Table",
- "Summary" : summary,
- "Description" : "This table functions as a look-up table of values",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tLayerSpeciesYearImageName T: {species_filter_tb}")
- #print(f"\tLayerSpeciesYearImageName TS: {species_filter_tbs}")
- #print(f"\tLayerSpeciesYearImageName TST: {species_filter_tbst}")
-
- del species_filter_tb, species_filter_tbs, species_filter_tbst
-
- elif "DisMAP_Survey_Info" == dataset_code:
-
- #print(f"\tProcessing: DisMAP_Survey_Info")
-
- tb = dataset_code
- tbs = f"{dataset_code}_{date_code(project)}"
- tbst = f"DisMAP Survey Info Table {date_code(project)}"
-
- __datasets_dict[tb] = {"Dataset Service" : tbs,
- "Dataset Service Title" : tbst,
- "Tags" : "DisMAP; DisMAP Survey Info Table",
- "Summary" : summary,
- "Description" : "This table functions as a look-up table of values",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tLayerSpeciesYearImageName T: {tb}")
- #print(f"\tLayerSpeciesYearImageName TS: {tbs}")
- #print(f"\tLayerSpeciesYearImageName TST: {tbst}")
-
- del tb, tbs, tbst
-
- else:
- #print(f"\tProcessing: {dataset_code}")
-
- #table = dataset_code
- #table_s = f"{dataset_code}_{date_code(project)}"
- #table_st = f"{table_s.replace('_',' ')} {date_code(project)}"
- #print(f"\tProcessing: {table_s}")
- #__datasets_dict[table] = {"Dataset Service" : table_s,
- # "Dataset Service Title" : table_st,
- # "Tags" : f"DisMAP, {table}",
- # "Summary" : summary,
- # "Description" : "Unknown table",
- # "Credits" : _credits,
- # "Access Constraints" : access_constraints}
-
- #print(f"\tTable: {table}")
- #print(f"\tTable TS: {table_s}")
- #print(f"\tTable TST: {table_st}")
-
- #del table, table_s, table_st
-
- raise Exception(f"{dataset_code} is missing")
-
- else:
- pass
-
- del summary
- del point_feature_type, distribution_project_code
- del filter_region, filter_sub_region, season
- del dataset_code
-
- del _credits, access_constraints
-
- del dataset_codes
- del project_folder, crf_folder
- del project, project_gdb
- except KeyboardInterrupt:
- raise SystemExit
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return __datasets_dict
- finally:
- if "__datasets_dict" in locals().keys(): del __datasets_dict
-
-def import_basic_template_xml(dataset_path=""):
- try:
- # Import
- from lxml import etree
- from io import StringIO, BytesIO
- from arcpy import metadata as md
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- project_gdb = os.path.dirname(dataset_path)
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = rf"{project_folder}\Scratch"
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = rf"{scratch_folder}\scratch.gdb"
-
- import json
- json_path = rf"{project_folder}\root_dict.json"
- with open(json_path, "r") as json_file:
- root_dict = json.load(json_file)
- del json_file
- del json_path
- del json
-
-## #print("Creating the Metadata Dictionary. Please wait!!")
-## metadata_dictionary = dataset_title_dict(project_gdb)
-## #print("Creating the Metadata Dictionary. Completed")
-
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
-
- print(f"Dataset: {dataset_name}")
-
-## xml_file = '''
-##
-##
-##
-##
-## Timothy J Haverland
-##
-##
-## tim.haverland@noaa.gov
-##
-##
-## https://www.fisheries.noaa.gov/about/office-science-and-technology
-##
-##
-##
-##
-##
-##
-##
-##
-## Melissa Ann Karp
-##
-##
-## melissa.karp@noaa.gov
-##
-##
-## https://www.fisheries.noaa.gov/about/office-science-and-technology
-##
-##
-##
-##
-##
-##
-##
-##
-##
-##
-## NMFS Office of Science and Technology
-##
-##
-## tim.haverland@noaa.gov
-##
-##
-## https://www.fisheries.noaa.gov/about/office-science-and-technology
-##
-##
-##
-##
-##
-##
-##
-##
-##
-## John F Kennedy
-##
-##
-## john.f.kennedy@noaa.gov
-##
-##
-## https://www.fisheries.noaa.gov/about/office-science-and-technology
-##
-##
-##
-##
-##
-##
-## '''
-
-## xml_file = '''
-##
-##
-## John F Kennedy
-##
-##
-## john.f.kennedy@noaa.gov
-##
-##
-## https://www.fisheries.noaa.gov/about/office-science-and-technology
-##
-##
-##
-##
-##
-##
-## '''
-
-## # Parse the XML
-## dataset_md = md.Metadata(dataset_path)
-## #dataset_md.synchronize('ALWAYS')
-## #dataset_md.save()
-## in_md = md.Metadata(rf"C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMap\ArcGIS-Analysis-Python\December 1 2024\Export\WC_TRI_IDW.xml")
-## dataset_md.copy(in_md)
-## #dataset_md.importMetadata(rf"C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMap\ArcGIS-Analysis-Python\December 1 2024\Export\WC_TRI_IDW.xml", "ARCGIS_METADATA")
-## #dataset_md.importMetadata(xml_file, "ARCGIS_METADATA")
-## dataset_md.save()
-## dataset_md.synchronize("OVERWRITE")
-## dataset_md.save()
-## #dataset_md.reload()
-## #dataset_md.synchronize("ALWAYS")
-## #dataset_md.save()
-## #dataset_md.reload()
-## del in_md
-## del dataset_md
-## del xml_file
-##
-## tags = "DisMap;"
-## summary = "These data were created as part of the DisMAP project to enable visualization and analysis of changes in fish and invertebrate distributions"
-## description = ""
-## project_credits = "These data were produced by NMFS OST."
-## access_constraints = "***No Warranty*** The user assumes the entire risk related to its use of these data. NMFS is providing these data 'as is' and NMFS disclaims any and all warranties, whether express or implied, including (without limitation) any implied warranties of merchantability or fitness for a particular purpose. No warranty expressed or implied is made regarding the accuracy or utility of the data on any other system or for general or scientific purposes, nor shall the act of distribution constitute any such warranty. It is strongly recommended that careful attention be paid to the contents of the metadata file associated with these data to evaluate dataset limitations, restrictions or intended use. In no event will NMFS be liable to you or to any third party for any direct, indirect, incidental, consequential, special or exemplary damages or lost profit resulting from any use or misuse of these data."
-##
-## dataset_md = md.Metadata(dataset_path)
-## dataset_md.title = f"{dataset_name.replace('_', ' ')}"
-## dataset_md.tags = f"{tags}{dataset_name.replace('_', ' ')};"
-## dataset_md.summary = summary
-## dataset_md.description = f"{description}{dataset_name.replace('_', ' ')}"
-## dataset_md.credits = project_credits
-## dataset_md.accessConstraints = access_constraints
-## dataset_md.save()
-## dataset_md.synchronize("ALWAYS")
-## dataset_md.save()
-## del dataset_md
-##
-## del tags, summary, description, project_credits, access_constraints
-
-
- # Option #1
- #empty_md = md.Metadata()
- #dataset_md = md.Metadata(dataset_path)
- #dataset_md.copy(empty_md)
- #dataset_md.save()
- #del empty_md
- # Option #2
- #empty_md = md.Metadata(xml_file)
- #dataset_md = md.Metadata(dataset_path)
- #dataset_md.copy(empty_md)
- #dataset_md.save()
- #del empty_md
- # Option #3
- #
- #dataset_md = md.Metadata(dataset_path)
- #dataset_md.copy(in_md)
- #dataset_md.save()
- #del in_md
- # Option #4
- dataset_md = md.Metadata(dataset_path)
- dataset_md.importMetadata(rf"{project_folder}\metadata_template.xml")
- dataset_md.save()
- del dataset_md
-
- tags = "DisMap;"
- summary = "These data were created as part of the DisMAP project to enable visualization and analysis of changes in fish and invertebrate distributions"
- description = ""
- project_credits = "These data were produced by NMFS OST."
- access_constraints = "***No Warranty*** The user assumes the entire risk related to its use of these data. NMFS is providing these data 'as is' and NMFS disclaims any and all warranties, whether express or implied, including (without limitation) any implied warranties of merchantability or fitness for a particular purpose. No warranty expressed or implied is made regarding the accuracy or utility of the data on any other system or for general or scientific purposes, nor shall the act of distribution constitute any such warranty. It is strongly recommended that careful attention be paid to the contents of the metadata file associated with these data to evaluate dataset limitations, restrictions or intended use. In no event will NMFS be liable to you or to any third party for any direct, indirect, incidental, consequential, special or exemplary damages or lost profit resulting from any use or misuse of these data."
-
- dataset_md = md.Metadata(dataset_path)
- dataset_md.title = f"{dataset_name.replace('_', ' ')}"
- dataset_md.tags = f"{tags}{dataset_name.replace('_', ' ')};"
- dataset_md.summary = summary
- dataset_md.description = f"{description}{dataset_name.replace('_', ' ')}"
- dataset_md.credits = project_credits
- dataset_md.accessConstraints = access_constraints
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- dataset_md.reload()
- export_folder = rf"{os.path.dirname(os.path.dirname(dataset_path))}\Export"
- dataset_md.saveAsXML(rf"{export_folder}\{os.path.basename(dataset_path)}.xml", "REMOVE_ALL_SENSITIVE_INFO")
- # To parse from a string, use the fromstring() function instead.
- _tree = etree.parse(rf"{export_folder}\{os.path.basename(dataset_path)}.xml", parser=etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- _root = _tree.getroot()
- _root[:] = sorted(_root, key=lambda x: root_dict[x.tag])
- del _root
- etree.indent(_tree, space='\t')
- _tree.write(rf"{export_folder}\{os.path.basename(dataset_path)}.xml", encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
- del _tree
- del export_folder
- del dataset_md
-
- del tags, summary, description, project_credits, access_constraints
-
-
- # Parse the XML
- dataset_md = md.Metadata(dataset_path)
- parser = etree.XMLParser(encoding='UTF-8', remove_blank_text=True)
- target_tree = etree.parse(StringIO(dataset_md.xml), parser=parser)
- #target_tree = etree.parse(xml_file, parser=parser)
- target_root = target_tree.getroot()
- target_root[:] = sorted(target_root, key=lambda x: root_dict[x.tag])
- etree.indent(target_tree, space='\t')
- print(etree.tostring(target_tree, encoding='UTF-8', method='xml', pretty_print=True).decode())
- del parser, dataset_md
-
- del target_tree, target_root
-
-
-
-## _tree = etree.parse(BytesIO(xml_file), etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## _root = _tree.getroot()
-## distributor = target_root.xpath(f"./distInfo/distributor")
-## if len(distributor) == 0:
-## target_root.xpath(f"./distInfo")[0].insert(distInfo_dict["distributor"], _root)
-## elif len(distributor) == 1:
-## distributor[0].getparent().replace(distributor[0], _root)
-## else:
-## pass
-## del _root, _tree, xml_file
-## #print(f"\n\t{etree.tostring(target_root.xpath(f'./distInfo/distributor')[0], encoding='UTF-8', method='xml', pretty_print=True).decode()}\n")
-## del distributor
-
-
-## mdFileID = target_root.xpath(f"//mdFileID")
-## if mdFileID is not None and len(mdFileID) == 0:
-## _xml = 'gov.noaa.nmfs.inport:'
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## target_root.insert(root_dict['mdFileID'], _root)
-## del _root, _xml
-## elif mdFileID is not None and len(mdFileID) and len(mdFileID[0]) == 0:
-## mdFileID[0].text = "gov.noaa.nmfs.inport:"
-## elif mdFileID is not None and len(mdFileID) and len(mdFileID[0]) == 1:
-## pass
-## #print(etree.tostring(mdFileID[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del mdFileID
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## mdMaint = target_root.xpath(f"//mdMaint")
-## if mdMaint is not None and len(mdMaint) == 0:
-## _xml = ''
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## target_root.insert(root_dict['mdMaint'], _root)
-## del _root, _xml
-## elif mdMaint is not None and len(mdMaint) and len(mdMaint[0]) == 0:
-## target_root.xpath("./mdMaint/maintFreq/MaintFreqCd")[0].attrib["value"] = "009"
-## elif mdMaint is not None and len(mdMaint) and len(mdMaint[0]) == 1:
-## pass #print(etree.tostring(mdMaint[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## else:
-## pass
-## #print(etree.tostring(mdMaint[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del mdMaint
-##
-## # No changes needed below
-## #print(etree.tostring(target_tree, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## etree.indent(target_root, space=' ')
-## dataset_md_xml = etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
-##
-## SaveBackXml = False
-## if SaveBackXml:
-## dataset_md = md.Metadata(dataset_path)
-## dataset_md.xml = dataset_md_xml
-## dataset_md.save()
-## dataset_md.synchronize("ALWAYS")
-## dataset_md.save()
-## #dataset_md.reload()
-## del dataset_md
-## else:
-## pass
-## del SaveBackXml
-## del dataset_md_xml
-
- # Declared Variables
- del root_dict
- #del target_tree, target_root
- #del metadata_dictionary,
- del dataset_name
- del project_gdb, project_folder, scratch_folder
- # Imports
- del md
- del etree, StringIO, BytesIO
- # Function Parameters
- del dataset_path
- except KeyboardInterrupt:
- raise SystemExit
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- raise SystemExit
- except arcpy.ExecuteError:
- #traceback.print_exc()
- arcpy.AddError(arcpy.GetMessages(2))
- raise SystemExit
- except:
- traceback.print_exc()
- raise SystemExit
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def update_eainfo_xml_elements(dataset_path=""):
- try:
- # Imports
- from lxml import etree
- from io import StringIO, BytesIO
- #import copy
- from arcpy import metadata as md
- # Project modules
- #from src.project_tools import pretty_format_xml_file
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- project_gdb = os.path.dirname(dataset_path)
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = rf"{project_folder}\Scratch"
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = rf"{scratch_folder}\scratch.gdb"
-
- import json
- json_path = rf"{project_folder}\root_dict.json"
- with open(json_path, "r") as json_file:
- root_dict = json.load(json_file)
- del json_file
- del json_path
- del json
-
- dataset_md = md.Metadata(dataset_path)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- dataset_md.reload()
- dataset_md_xml = dataset_md.xml
- del dataset_md
-
- # Parse the XML
- parser = etree.XMLParser(encoding='UTF-8', remove_blank_text=True)
- target_tree = etree.parse(StringIO(dataset_md_xml), parser=parser)
- target_root = target_tree.getroot()
- del parser, dataset_md_xml
-
- dataset_name = os.path.basename(dataset_path)
- print(f"Processing Entity Attributes for dataset: '{dataset_name}'")
-
- # Root
- mdTimeSt = target_root.find("./mdTimeSt")
- #print(mdTimeSt)
- if mdTimeSt is not None:
- mdTimeSt.getparent().remove(mdTimeSt)
- else:
- pass
- del mdTimeSt
-
- enttyp = target_root.find("enttyp")
- if enttyp is not None:
- enttypd = enttyp.find("enttypd")
- enttypds = enttyp.find("enttypds")
- if enttypd is None:
- _xml = "A collection of geographic features with the same geometry type."
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- enttyp.insert(0, _root)
- del _root, _xml
- else:
- pass
- if enttypds is None:
- _xml = "Esri"
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- enttyp.insert(0, _root)
- del _root, _xml
- else:
- pass
- del enttypds, enttypd
- else:
- pass
- del enttyp
-
- # Create a list of fields using the ListFields function
- fields = [f for f in arcpy.ListFields(dataset_path) if f.type not in ["Geometry", "OID"] and f.name not in ["Shape_Area", "Shape_Length"]]
- for field in fields:
- attributes = target_root.xpath(f".//attrlabl[text()='{field.name}']/..")
- if attributes is not None and len(attributes) > 0:
- for attribute in attributes:
- #print(attribute)
- #print(etree.tostring(attribute, encoding='UTF-8', method='xml', pretty_print=True).decode())
- attrdef = attribute.find("./attrdef/..")
- if attrdef is None:
- _xml = f"Definition for: {field.name}"
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- attribute.insert(7, _root)
- del _root, _xml
- else:
- pass
- attrdefs = attribute.find("./attrdefs/..")
- if attrdefs is None:
- _xml = "NMFS OST DisMAP 2025"
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- attribute.insert(8, _root)
- del _root, _xml
- else:
- pass
- attrdomv = attribute.find("./attrdomv/..")
- if attrdomv is None:
- _xml = "None"
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- attribute.insert(8, _root)
- del _root, _xml
- else:
- pass
- del attrdef, attrdefs, attrdomv
- del attribute
- else:
- pass
- del attributes
- del field
-
- attributes = target_root.xpath(f".//attr")
- for attribute in attributes:
- #print(etree.tostring(attribute, encoding='UTF-8', method='xml', pretty_print=True).decode())
- del attribute
- del attributes
- del fields
-
- # Metadata
- target_root[:] = sorted(target_root, key=lambda x: root_dict[x.tag])
-
- # No changes needed below
- #print(etree.tostring(target_tree, encoding='UTF-8', method='xml', pretty_print=True).decode())
- etree.indent(target_tree, space=' ')
- dataset_md_xml = etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
-
- SaveBackXml = True
- if SaveBackXml:
- dataset_md = md.Metadata(dataset_path)
- dataset_md.xml = dataset_md_xml
- dataset_md.save()
- dataset_md.synchronize("CREATED")
- dataset_md.save()
- #_target_tree = etree.parse(StringIO(dataset_md.xml), parser=etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- #_target_tree.write(rf"{export_folder}\{dataset_name}.xml", pretty_print=True)
- #print(etree.tostring(_target_tree.find("./eainfo"), encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- #del _target_tree
- del dataset_md
- else:
- pass
- del SaveBackXml
- del dataset_md_xml
-
- # Declared Varaiables
- del dataset_name
- del target_tree, target_root
- del project_gdb, project_folder, scratch_folder, root_dict
- # Imports
- del md, etree, StringIO, BytesIO
- # Function Parameters
- del dataset_path
- except KeyboardInterrupt:
- raise SystemExit
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def insert_missing_elements(dataset_path):
- try:
- from lxml import etree
- from arcpy import metadata as md
- from io import BytesIO, StringIO
- import copy
-
- project_gdb = os.path.dirname(dataset_path)
- project_folder = os.path.dirname(project_gdb)
- project = os.path.basename(os.path.dirname(project_gdb))
- export_folder = rf"{project_folder}\Export"
- scratch_folder = rf"{project_folder}\Scratch"
-
- import json
- json_path = rf"{project_folder}\root_dict.json"
- with open(json_path, "r") as json_file:
- root_dict = json.load(json_file)
- json_path = rf"{project_folder}\esri_dict.json"
- with open(json_path, "r") as json_file:
- esri_dict = json.load(json_file)
- json_path = rf"{project_folder}\dataIdInfo_dict.json"
- with open(json_path, "r") as json_file:
- dataIdInfo_dict = json.load(json_file)
- json_path = rf"{project_folder}\contact_dict.json"
- with open(json_path, "r") as json_file:
- contact_dict = json.load(json_file)
- json_path = rf"{project_folder}\dqInfo_dict.json"
- with open(json_path, "r") as json_file:
- dqInfo_dict = json.load(json_file)
- json_path = rf"{project_folder}\distInfo_dict.json"
- with open(json_path, "r") as json_file:
- distInfo_dict = json.load(json_file)
- #json_path = rf"{project_folder}\RoleCd_dict.json"
- #with open(json_path, "r") as json_file:
- # RoleCd_dict = json.load(json_file)
- #json_path = rf"{project_folder}\tpCat_dict.json"
- #with open(json_path, "r") as json_file:
- # tpCat_dict = json.load(json_file)
- del json_file
- del json_path
- del json
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = rf"{scratch_folder}\scratch.gdb"
- del scratch_folder
- del project_folder
- del project_gdb
-
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- # Get contact information
- contacts_xml = rf"{os.environ['USERPROFILE']}\Documents\ArcGIS\Descriptions\contacts.xml"
- contacts_xml_tree = etree.parse(contacts_xml, parser=etree.XMLParser(encoding='UTF-8', remove_blank_text=True)) # To parse from a string, use the fromstring() function instead.
- del contacts_xml
-
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- # Get Prefered contact information
- mdContact_rpIndName = contact_dict["mdContact"][0]["rpIndName"]
- mdContact_eMailAdd = contact_dict["mdContact"][0]["eMailAdd"]
- mdContact_role = contact_dict["mdContact"][0]["role"]
-
- citRespParty_rpIndName = contact_dict["citRespParty"][0]["rpIndName"]
- citRespParty_eMailAdd = contact_dict["citRespParty"][0]["eMailAdd"]
- citRespParty_role = contact_dict["citRespParty"][0]["role"]
-
- idPoC_rpIndName = contact_dict["idPoC"][0]["rpIndName"]
- idPoC_eMailAdd = contact_dict["idPoC"][0]["eMailAdd"]
- idPoC_role = contact_dict["idPoC"][0]["role"]
-
- distorCont_rpIndName = contact_dict["distorCont"][0]["rpIndName"]
- distorCont_eMailAdd = contact_dict["distorCont"][0]["eMailAdd"]
- distorCont_role = contact_dict["distorCont"][0]["role"]
-
- srcCitatn_rpIndName = contact_dict["srcCitatn"][0]["rpIndName"]
- srcCitatn_eMailAdd = contact_dict["srcCitatn"][0]["eMailAdd"]
- srcCitatn_role = contact_dict["srcCitatn"][0]["role"]
-
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- #print(etree.tostring(target_root, encoding='UTF-8', method='xml', pretty_print=True).decode())
-
- dataset_md = md.Metadata(dataset_path)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- dataset_md.reload()
- dataset_md_xml = dataset_md.xml
- del dataset_md
-
- # Parse the XML
- parser = etree.XMLParser(encoding='UTF-8', remove_blank_text=True)
- target_tree = etree.parse(StringIO(dataset_md_xml), parser=parser)
- target_root = target_tree.getroot()
- del parser, dataset_md_xml
-
- CreaDate = target_root.xpath(f"//Esri/CreaDate")[0].text
- CreaTime = target_root.xpath(f"//Esri/CreaTime")[0].text
- #print(CreaDate, CreaTime)
- CreaDateTime = f"{CreaDate[:4]}-{CreaDate[4:6]}-{CreaDate[6:]}T{CreaTime[:2]}:{CreaTime[2:4]}:{CreaTime[4:6]}"
- #print(f"\tCreaDateTime: {CreaDateTime}")
- #del CreaDateTime
- del CreaDate, CreaTime
- ModDate = target_root.xpath(f"//Esri/ModDate")[0].text
- ModTime = target_root.xpath(f"//Esri/ModTime")[0].text
- #print(ModDate, ModTime)
- ModDateTime = f"{ModDate[:4]}-{ModDate[4:6]}-{ModDate[6:]}T{ModTime[:2]}:{ModTime[2:4]}:{ModTime[4:6]}"
- #print(f"\tModDateTime: {ModDateTime}")
- #del ModDateTime
- del ModDate, ModTime
-
- dataset_name = os.path.basename(dataset_path)
- print(f"Processing/Updating elements for dataset: '{dataset_name}'")
-
- xml_file = b'''
-
-
- ISO 19139 Metadata Implementation Specification GML3.2
- ISO19139
-
-
-
-
-
-
- feature class name
- feature class name
- NMFS OST DisMAP
-
-
-
-
-
-
-
-
-
-
- external
- 810ad1c47a347c4bf5c88f2ea5077cd5d7a1bdcb
- Timothy J Haverland
- NMFS Office of Science and Technology
- GIS App Developer
-
-
- 1315 East West Highway
- Silver Spring
- MD
- 20910-3282
- tim.haverland@noaa.gov
-
-
- 301-427-8137
- 301-713-4137
-
- 0700 - 1800 EST/EDT
-
- https://www.fisheries.noaa.gov/about/office-science-and-technology
- REST Service
- NMFS Office of Science and Technology
- NOAA Fisheries Office of Science and Technology
-
-
-
-
-
- Timothy J Haverland
- True
-
-
-
-
-
-
-
-
- Global Change Master Directory (GCMD) Science Keywords
-
-
-
-
-
-
- https://www.fisheries.noaa.gov/inport/help/components/keywords
- REST Service
- GCMD
- Global Change Master Directory (GCMD) Science Keywords
-
-
-
-
-
-
-
-
-
-
-
-
-
- Global Change Master Directory (GCMD) Location Keywords
-
-
-
-
-
-
- https://www.fisheries.noaa.gov/inport/help/components/keywords
- REST Service
- GCMD
- Global Change Master Directory (GCMD) Location Keywords
-
-
-
-
-
-
-
-
-
-
-
-
-
- Global Change Master Directory (GCMD) Temporal Data Resolution Keywords
-
-
-
-
-
-
- https://www.fisheries.noaa.gov/inport/help/components/keywords
- REST Service
- GCMD
- Global Change Master Directory (GCMD) Temporal Data Resolution Keywords
-
-
-
-
-
-
-
-
-
-
-
-
-
- Integrated Taxonomic Information System (ITIS)
-
-
-
-
-
-
- https://www.itits.org
- REST Service
- ITIS
- Integrated Taxonomic Information System (ITIS)
-
-
-
-
-
-
-
-
-
-
- external
- c66ffbb333c48d18d81856ec0e0c37ea752bff1a
- Melissa Ann Karp
- NMFS Office of Science and Technology
- Fisheries Science Coordinator
-
-
- 1315 East West Hwy
- Silver Spring
- MD
- 20910-3282
- melissa.karp@noaa.gov
- US
-
-
- 301-427-8202
- 301-713-4137
-
- 0700 - 1800 EST/EDT
-
- https://www.fisheries.noaa.gov/about/office-science-and-technology
- REST Service
- NMFS Office of Science and Technology
- NOAA Fisheries Office of Science and Technology
-
-
-
-
-
- Melissa Ann Karp
- True
-
-
-
-
-
-
-
-
-
-
-
-
- Data License: CC0-1.0
- Data License URL: https://creativecommons.org/publicdomain/zero/1.0/
- Data License Statement: These data were produced by NOAA and are not subject to copyright protection in the United States. NOAA waives any potential copyright and related rights in these data worldwide through the Creative Commons Zero 1.0 Universal Public Domain Dedication (CC0-1.0).
-
-
-
-
-
- FISMA Low
-
-
- <DIV STYLE="text-align:Left;"><DIV><DIV><P><SPAN>***No Warranty*** The user assumes the entire risk related to its use of these data. NMFS is providing these data 'as is' and NMFS disclaims any and all warranties, whether express or implied, including (without limitation) any implied warranties of merchantability or fitness for a particular purpose. No warranty expressed or implied is made regarding the accuracy or utility of the data on any other system or for general or scientific purposes, nor shall the act of distribution constitute any such warranty. It is strongly recommended that careful attention be paid to the contents of the metadata file associated with these data to evaluate dataset limitations, restrictions or intended use. In no event will NMFS be liable to you or to any third party for any direct, indirect, incidental, consequential, special or exemplary damages or lost profit resulting from any use or misuse of these data.</SPAN></P></DIV></DIV></DIV>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- dataset
-
-
-
- Based on a review from DisMAP Team all necessary features are present.
-
-
-
- Conceptual Consistency Report
-
- NMFS OST DisMAP
-
-
-
-
-
-
- Based on a review from DisMAP Team all necessary features are present.
- 1
-
-
-
-
- Based on a review from DisMAP Team all necessary features are present.
-
-
-
- Completeness Report
-
- NMFS OST DisMAP
-
-
-
-
-
-
- Based on a review from DisMAP Team all necessary features are present.
- 1
-
-
-
-
-
-
- Data for 'region' 'version'
-
-
-
-
- Source Citation for:
-
- NMFS OST DisMAP
-
- https://www.fisheries.noaa.gov/about/office-science-and-technology
- REST Service
- NMFS Office of Science and Technology
- NOAA Fisheries Office of Science and Technology
-
-
-
-
-
-
-
-
-
-
- document
-
-
-
- external
- c66ffbb333c48d18d81856ec0e0c37ea752bff1a
- Melissa Ann Karp
- NMFS Office of Science and Technology
- Fisheries Science Coordinator
-
-
- 1315 East West Hwy
- Silver Spring
- MD
- 20910-3282
- melissa.karp@noaa.gov
- US
-
-
- 301-427-8202
- 301-713-4137
-
- 0700 - 1800 EST/EDT
-
- https://www.fisheries.noaa.gov/about/office-science-and-technology
- REST Service
- NMFS Office of Science and Technology
- NOAA Fisheries Office of Science and Technology
-
-
-
-
-
- Melissa Ann Karp
- True
-
-
-
-
-
-
-
- Geoprocessing Steps for 'region' 'version date'
-
-
- external
- c66ffbb333c48d18d81856ec0e0c37ea752bff1a
- Melissa Ann Karp
- NMFS Office of Science and Technology
- Fisheries Science Coordinator
-
-
- 1315 East West Hwy
- Silver Spring
- MD
- 20910-3282
- melissa.karp@noaa.gov
- US
-
-
- 301-427-8202
- 301-713-4137
-
- 0700 - 1800 EST/EDT
-
- https://www.fisheries.noaa.gov/about/office-science-and-technology
- REST Service
- NMFS Office of Science and Technology
- NOAA Fisheries Office of Science and Technology
-
-
-
-
-
- Melissa Ann Karp
- True
-
-
-
-
-
- external
- b212accd6134b5457de3ed1debca061419d927ce
- John F Kennedy
- NMFS Office of Science and Technology
- GIS Specialist
-
-
- 1315 East West Highway
- Silver Spring
- MD
- 20910-3282
- US
- john.f.kennedy@noaa.gov
-
-
- 301-427-8149
- 301-713-4137
-
- 0930 - 2030 EST/EDT
-
- https://www.fisheries.noaa.gov/about/office-science-and-technology
- REST Service
- NMFS Office of Science and Technology
- NOAA Fisheries Office of Science and Technology
-
-
-
-
-
- John F Kennedy
- True
-
-
-
-
-
- DisMAP
-
-
-
-
-
-
-
- ESRI REST Service
-
- Uncompressed
-
-
-
-
- external
- 579ce2e21b888ac8f6ac1dac30f04cddec7a0d7c
- NMFS Office of Science and Technology
- NMFS Office of Science and Technology
- GIS App Developer
-
-
- 1315 East West Highway
- Silver Spring
- MD
- 20910-3282
- US
- tim.haverland@noaa.gov
-
-
- 301-427-8137
- 301-713-4137
-
- 0700 - 1800 EST/EDT
-
- https://www.fisheries.noaa.gov/about/office-science-and-technology
- REST Service
- NMFS Office of Science and Technology
- NOAA Fisheries Office of Science and Technology
-
-
-
-
-
- NMFS Office of Science and Technology (Distributor)
- True
-
-
-
-
-
-
- MB
- 8
-
- https://services2.arcgis.com/C8EMgrsFcRFL6LrL/arcgis/rest/services/.../FeatureServer
- ESRI REST Service
- NMFS Office of Science and Technology
- Dataset Feature Service
-
-
-
-
-
-
-
- external
- b212accd6134b5457de3ed1debca061419d927ce
- John F Kennedy
- NMFS Office of Science and Technology
- GIS Specialist
-
-
- 1315 East West Highway
- Silver Spring
- MD
- 20910-3282
- US
- john.f.kennedy@noaa.gov
-
-
- 301-427-8149
- 301-713-4137
-
- 0930 - 2030 EST/EDT
-
- https://www.fisheries.noaa.gov/about/office-science-and-technology
- REST Service
- NMFS Office of Science and Technology
- NOAA Fisheries Office of Science and Technology
-
-
-
-
-
- John F Kennedy (Metadata Author)
- True
-
-
-
-
- <.>
- '''
-
- source_tree = etree.parse(BytesIO(xml_file), etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- source_root = source_tree.getroot()
-
- # Merge Target wtih Source
- target_source_merge = xml_tree_merge(target_root, source_root)
- #print(etree.tostring(target_source_merge, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- # Merge Source wtih Target
- source_target_merge = xml_tree_merge(target_source_merge, target_root)
- #print(etree.tostring(source_target_merge, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- del target_source_merge
- del source_tree, source_root, xml_file
-
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- #
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- dataset_md_xml = etree.tostring(source_target_merge, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=False)
-
- SaveBackXml = False
- if SaveBackXml:
- dataset_md = md.Metadata(dataset_path)
- dataset_md.xml = dataset_md_xml
- dataset_md.save()
- dataset_md.synchronize("CREATED")
- dataset_md.save()
- #dataset_md.reload()
- #dataset_md_xml = dataset_md.xml
- del dataset_md
- # Parse the XML
- #_target_tree = etree.parse(StringIO(dataset_md_xml), parser=etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- #del dataset_md_xml
- #print(etree.tostring(_target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- #del _target_tree
- else:
- pass
- del SaveBackXml
- del dataset_md_xml
-
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- #
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-
- dataset_md = md.Metadata(dataset_path)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- dataset_md.reload()
- dataset_md_xml = dataset_md.xml
- del dataset_md
-
- # Parse the XML
- parser = etree.XMLParser(encoding='UTF-8', remove_blank_text=True)
- target_tree = etree.parse(StringIO(dataset_md_xml), parser=parser)
- target_root = target_tree.getroot()
- del parser, dataset_md_xml
-
-## target_root.xpath("./distInfo/distFormat/formatName")[0].set('Sync', "FALSE")
-## target_root.xpath("./dataIdInfo/envirDesc")[0].set('Sync', "TRUE")
-
-## for key in root_dict:
-## #print(key)
-## elem = target_root.find(f"./{key}")
-## if elem is not None and len(elem) > 0:
-## #print(elem.tag)
-## pass
-## del elem
-## del key
-##
-## # Root
-## mdTimeSt = target_root.find("./mdTimeSt")
-## #print(mdTimeSt)
-## if mdTimeSt is not None:
-## mdTimeSt.getparent().remove(mdTimeSt)
-## else:
-## pass
-## del mdTimeSt
-
-## # Metadata
-## target_root[:] = sorted(target_root, key=lambda x: root_dict[x.tag])
-## # Esri
-## Esri = target_root.xpath("./Esri")[0]
-## Esri[:] = sorted(Esri, key=lambda x: esri_dict[x.tag])
-## #print(etree.tostring(Esri, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del Esri
-## # dataIdInfo
-## dataIdInfo = target_root.xpath("./dataIdInfo")[0]
-## dataIdInfo[:] = sorted(dataIdInfo, key=lambda x: dataIdInfo_dict[x.tag])
-## #print(etree.tostring(dataIdInfo, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del dataIdInfo
-## # dqInfo
-## dqInfo = target_root.xpath("./dqInfo")[0]
-## dqInfo[:] = sorted(dqInfo, key=lambda x: dqInfo_dict[x.tag])
-## #print(etree.tostring(dqInfo, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del dqInfo
-## # distInfo
-## distInfo = target_root.xpath("./distInfo")[0]
-## distInfo[:] = sorted(distInfo, key=lambda x: distInfo_dict[x.tag])
-## #print(etree.tostring(distInfo, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del distInfo
- # mdContact
- # mdLang
- # mdHrLv
- # refSysInfo
- # spatRepInfo
- # spdoinfo
- # eainfo
-
-## enttyp = target_root.find("enttyp")
-## if enttyp is not None:
-## enttypd = enttyp.find("enttypd")
-## enttypds = enttyp.find("enttypds")
-## if enttypd is None:
-## _xml = "A collection of geographic features with the same geometry type."
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## enttyp.insert(0, _root)
-## del _root, _xml
-## else:
-## pass
-## if enttypds is None:
-## _xml = "Esri"
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## enttyp.insert(0, _root)
-## del _root, _xml
-## else:
-## pass
-## del enttypds, enttypd
-## else:
-## pass
-## del enttyp
-
- # idCredit completed
- #for idCredit in target_root.xpath("./dataIdInfo/idCredit"):
- # #print(etree.tostring(idCredit, encoding='UTF-8', method='xml', pretty_print=True).decode())
- # #idCredit.text = "NOAA Fisheries. 2025.."
- # del idCredit
- #print(etree.tostring(target_root.xpath("./dataIdInfo/idCredit")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-
-## # resTitle completed
-## resTitle = target_root.xpath("./dataIdInfo/idCitation/resTitle")[0]
-## target_root.xpath("./dqInfo/dataLineage/dataSource/srcCitatn/resTitle")[0].text = resTitle.text
-## #print(f"\tresTitle: {resTitle.text}")
-## #resTitle.text = f""
-## del resTitle
-## resAltTitle = target_root.xpath("./dataIdInfo/idCitation/resAltTitle")[0]
-## target_root.xpath("./dqInfo/dataLineage/dataSource/srcCitatn/resAltTitle")[0].text = resAltTitle.text
-## #print(f"\tresAltTitle: {resAltTitle.text}")
-## #resAltTitle.text = f""
-## del resAltTitle
-## collTitle = target_root.xpath("./dataIdInfo/idCitation/collTitle")[0]
-## #print(f"\tcollTitle: {collTitle.text}")
-## collTitle.text = "NMFS OST DisMAP"
-## target_root.xpath("./dqInfo/dataLineage/dataSource/srcCitatn/collTitle")[0].text = collTitle.text
-## #print(f"\tcollTitle: {collTitle.text}")
-## del collTitle
-
-## resConst = target_root.xpath("./dataIdInfo/resConst")
-## if len(resConst) == 1:
-## xml_file = b'''
-##
-##
-##
-##
-##
-##
-##
-## Data License: CC0-1.0
-##Data License URL: https://creativecommons.org/publicdomain/zero/1.0/
-##Data License Statement: These data were produced by NOAA and are not subject to copyright protection in the United States. NOAA waives any potential copyright and related rights in these data worldwide through the Creative Commons Zero 1.0 Universal Public Domain Dedication (CC0-1.0).
-##
-##
-##
-##
-##
-##
-## FISMA Low
-##
-##
-## <DIV STYLE="text-align:Left;"><DIV><DIV><P><SPAN>***No Warranty*** The user assumes the entire risk related to its use of these data. NMFS is providing these data 'as is' and NMFS disclaims any and all warranties, whether express or implied, including (without limitation) any implied warranties of merchantability or fitness for a particular purpose. No warranty expressed or implied is made regarding the accuracy or utility of the data on any other system or for general or scientific purposes, nor shall the act of distribution constitute any such warranty. It is strongly recommended that careful attention be paid to the contents of the metadata file associated with these data to evaluate dataset limitations, restrictions or intended use. In no event will NMFS be liable to you or to any third party for any direct, indirect, incidental, consequential, special or exemplary damages or lost profit resulting from any use or misuse of these data.</SPAN></P></DIV></DIV></DIV>
-##
-## '''
-## _tree = etree.parse(BytesIO(xml_file), etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## _root = _tree.getroot()
-## resConst[0].getparent().replace(resConst[0], _root)
-## del _root, _tree, xml_file
-## else:
-## pass
-## del resConst
-
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- # discKeys, themeKeys, placeKeys, tempKeys
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- #searchKeys = target_root.xpath("./dataIdInfo/searchKeys")
- #for searchKey in searchKeys:
- # #print(etree.tostring(searchKey, encoding='UTF-8', method='xml', pretty_print=True).decode())
- # del searchKey
- #del searchKeys
-## searchKeys = target_root.xpath("./dataIdInfo/searchKeys")
-## for searchKey in searchKeys:
-## #print(etree.tostring(searchKey, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## for keyword in searchKey.xpath("./keyword"):
-## if isinstance(keyword.text, type(None)):
-## keyword.getparent().remove(keyword)
-## else:
-## pass #print(etree.tostring(keyword, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del searchKey
-## del searchKeys
-## target_root.xpath("./dataIdInfo/searchKeys/keyword")[0].text = f"{species_range_dict[dataset_name]['LISTENTITY']}; ESA; range; NMFS"
-##
-## keywords = target_root.xpath("./dataIdInfo/discKeys/keyword")
-## if keywords is not None and len(keywords) and len(keywords[0]) == 0:
-## keyword = target_root.xpath("./dataIdInfo/discKeys/keyword")[0]
-## keyword.text = f"{species_range_dict[dataset_name]['SCIENAME']}"
-## del keyword
-## #elif keywords is not None and len(keywords) and len(keywords[0]) >= 1:
-## # pass
-## del keywords
-## createDate = target_root.xpath("./dataIdInfo/discKeys/thesaName/date/createDate")
-## if createDate is not None and len(createDate) and len(createDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/discKeys/thesaName/date/createDate")[0].text = CreaDateTime
-## elif createDate is not None and len(createDate) and len(createDate[0]) == 1:
-## pass
-## else:
-## pass
-## del createDate
-## pubDate = target_root.xpath("./dataIdInfo/discKeys/thesaName/date/pubDate")
-## if pubDate is not None and len(pubDate) and len(pubDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/discKeys/thesaName/date/pubDate")[0].text = CreaDateTime
-## elif pubDate is not None and len(pubDate) and len(pubDate[0]) == 1:
-## pass
-## else:
-## pass
-## del pubDate
-## reviseDate = target_root.xpath("./dataIdInfo/discKeys/thesaName/date/reviseDate")
-## if reviseDate is not None and len(reviseDate) and len(reviseDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/discKeys/thesaName/date/reviseDate")[0].text = ModDateTime
-## elif reviseDate is not None and len(reviseDate) and len(reviseDate[0]) == 1:
-## pass
-## else:
-## pass
-## del reviseDate
-## resTitle = target_root.xpath("./dataIdInfo/discKeys/thesaName/resTitle")
-## if resTitle is not None and len(resTitle) and len(resTitle[0]) == 0:
-## target_root.xpath("./dataIdInfo/discKeys/thesaName/resTitle")[0].text = "Integrated Taxonomic Information System (ITIS)"
-## elif resTitle is not None and len(resTitle) and len(resTitle[0]) == 1:
-## pass
-## else:
-## pass
-## del resTitle
-## discKeys = target_root.xpath("./dataIdInfo/discKeys")
-## for i in range(0, len(discKeys)):
-## #print(etree.tostring(discKeys[i], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del i
-## del discKeys
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # themeKeys
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## keywords = target_root.xpath("./dataIdInfo/themeKeys/keyword")
-## if keywords is not None and len(keywords) and len(keywords[0]) == 0:
-## new_item_name = target_root.find("./Esri/DataProperties/itemProps/itemName").text
-## keyword = target_root.xpath("./dataIdInfo/themeKeys/keyword")[0]
-## keyword.text = f"{species_range_dict[dataset_name]['COMNAME'].title()}; {species_range_dict[dataset_name]['SCIENAME']}; Endangered Species; NMFS"
-## del keyword, new_item_name
-## elif keywords is not None and len(keywords) and len(keywords[0]) >= 1:
-## pass
-## del keywords
-## createDate = target_root.xpath("./dataIdInfo/themeKeys/thesaName/date/createDate")
-## if createDate is not None and len(createDate) and len(createDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/themeKeys/thesaName/date/createDate")[0].text = CreaDateTime
-## elif createDate is not None and len(createDate) and len(createDate[0]) == 1:
-## pass
-## else:
-## pass
-## del createDate
-## pubDate = target_root.xpath("./dataIdInfo/themeKeys/thesaName/date/pubDate")
-## if pubDate is not None and len(pubDate) and len(pubDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/themeKeys/thesaName/date/pubDate")[0].text = CreaDateTime
-## elif pubDate is not None and len(pubDate) and len(pubDate[0]) == 1:
-## pass
-## else:
-## pass
-## del pubDate
-## reviseDate = target_root.xpath("./dataIdInfo/themeKeys/thesaName/date/reviseDate")
-## if reviseDate is not None and len(reviseDate) and len(reviseDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/themeKeys/thesaName/date/reviseDate")[0].text = ModDateTime
-## elif reviseDate is not None and len(reviseDate) and len(reviseDate[0]) == 1:
-## pass
-## else:
-## pass
-## del reviseDate
-## resTitle = target_root.xpath("./dataIdInfo/themeKeys/thesaName/resTitle")
-## if resTitle is not None and len(resTitle) and len(resTitle[0]) == 0:
-## target_root.xpath("./dataIdInfo/themeKeys/thesaName/resTitle")[0].text = "Global Change Master Directory (GCMD) Science Keyword"
-## elif resTitle is not None and len(resTitle) and len(resTitle[0]) == 1:
-## pass
-## else:
-## pass
-## del resTitle
-## themeKeys = target_root.xpath("./dataIdInfo/themeKeys")
-## for i in range(0, len(themeKeys)):
-## #print(etree.tostring(themeKeys[i], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del i
-## del themeKeys
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # placeKeys
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## keywords = target_root.xpath("./dataIdInfo/placeKeys/keyword")
-## if keywords is not None and len(keywords) and len(keywords[0]) == 0:
-## new_item_name = target_root.find("./Esri/DataProperties/itemProps/itemName").text
-## keyword = target_root.xpath("./dataIdInfo/placeKeys/keyword")[0]
-## keyword.text = f"Enter place/geography keywords for {new_item_name}, separated by a semicolon"
-## del keyword, new_item_name
-## elif keywords is not None and len(keywords) and len(keywords[0]) >= 1:
-## pass
-## del keywords
-## createDate = target_root.xpath("./dataIdInfo/placeKeys/thesaName/date/createDate")
-## if createDate is not None and len(createDate) and len(createDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/placeKeys/thesaName/date/createDate")[0].text = CreaDateTime
-## elif createDate is not None and len(createDate) and len(createDate[0]) == 1:
-## pass
-## else:
-## pass
-## del createDate
-## pubDate = target_root.xpath("./dataIdInfo/placeKeys/thesaName/date/pubDate")
-## if pubDate is not None and len(pubDate) and len(pubDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/placeKeys/thesaName/date/pubDate")[0].text = CreaDateTime
-## elif pubDate is not None and len(pubDate) and len(pubDate[0]) == 1:
-## pass
-## else:
-## pass
-## del pubDate
-## reviseDate = target_root.xpath("./dataIdInfo/placeKeys/thesaName/date/reviseDate")
-## if reviseDate is not None and len(reviseDate) and len(reviseDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/placeKeys/thesaName/date/reviseDate")[0].text = ModDateTime
-## elif reviseDate is not None and len(reviseDate) and len(reviseDate[0]) == 1:
-## pass
-## else:
-## pass
-## del reviseDate
-## resTitle = target_root.xpath("./dataIdInfo/placeKeys/thesaName/resTitle")
-## if resTitle is not None and len(resTitle) and len(resTitle[0]) == 0:
-## target_root.xpath("./dataIdInfo/placeKeys/thesaName/resTitle")[0].text = "Global Change Master Directory (GCMD) Location Keywords"
-## elif resTitle is not None and len(resTitle) and len(resTitle[0]) == 1:
-## pass
-## else:
-## pass
-## del resTitle
-## placeKeys = target_root.xpath("./dataIdInfo/placeKeys")
-## for i in range(0, len(placeKeys)):
-## #print(etree.tostring(placeKeys[i], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del i
-## del placeKeys
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # tempKeys
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## keywords = target_root.xpath("./dataIdInfo/tempKeys/keyword")
-## if keywords is not None and len(keywords) and len(keywords[0]) == 0:
-## new_item_name = target_root.find("./Esri/DataProperties/itemProps/itemName").text
-## keyword = target_root.xpath("./dataIdInfo/tempKeys/keyword")[0]
-## keyword.text = f"Enter temporal keywords (e.g. year, year range, season, etc.) for {new_item_name}, separated by a semicolon"
-## del keyword, new_item_name
-## elif keywords is not None and len(keywords) and len(keywords[0]) >= 1:
-## pass
-## del keywords
-## createDate = target_root.xpath("./dataIdInfo/tempKeys/thesaName/date/createDate")
-## if createDate is not None and len(createDate) and len(createDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/tempKeys/thesaName/date/createDate")[0].text = CreaDateTime
-## elif createDate is not None and len(createDate) and len(createDate[0]) == 1:
-## pass
-## else:
-## pass
-## del createDate
-## pubDate = target_root.xpath("./dataIdInfo/tempKeys/thesaName/date/pubDate")
-## if pubDate is not None and len(pubDate) and len(pubDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/tempKeys/thesaName/date/pubDate")[0].text = CreaDateTime
-## elif pubDate is not None and len(pubDate) and len(pubDate[0]) == 1:
-## pass
-## else:
-## pass
-## del pubDate
-## reviseDate = target_root.xpath("./dataIdInfo/tempKeys/thesaName/date/reviseDate")
-## if reviseDate is not None and len(reviseDate) and len(reviseDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/tempKeys/thesaName/date/reviseDate")[0].text = ModDateTime
-## elif reviseDate is not None and len(reviseDate) and len(reviseDate[0]) == 1:
-## pass
-## else:
-## pass
-## del reviseDate
-## resTitle = target_root.xpath("./dataIdInfo/tempKeys/thesaName/resTitle")
-## if resTitle is not None and len(resTitle) and len(resTitle[0]) == 0:
-## target_root.xpath("./dataIdInfo/tempKeys/thesaName/resTitle")[0].text = "Global Change Master Directory (GCMD) Temporal Data Resolution Keywords"
-## elif resTitle is not None and len(resTitle) and len(resTitle[0]) == 1:
-## pass
-## else:
-## pass
-## del resTitle
-## tempKeys = target_root.xpath("./dataIdInfo/tempKeys")
-## for i in range(0, len(tempKeys)):
-## #print(etree.tostring(tempKeys[i], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del i
-## del tempKeys
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # Data Extent
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## dataExt = target_root.xpath("./dataIdInfo/dataExt")[0]
-## exDesc = dataExt.xpath("//exDesc")
-## if len(exDesc) == 0:
-## _xml = "[Location extent description]. The data represents an approximate distribution of the listed entity based on the best available information from [date of first source] to [date of final species expert review]."
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## dataExt.insert(0, _root)
-## del _root, _xml
-## elif len(exDesc) == 1:
-## exDesc[0].text = "[Location extent description]. The data represents an approximate distribution of the listed entity based on the best available information from [date of first source] to [date of final species expert review]."
-## else:
-## pass
-## del exDesc
-## tempEle = dataExt.xpath("//tempEle")
-## if len(tempEle) == 0:
-## _xml = f' \
-## {CreaDateTime}{ModDateTime} \
-## {ModDateTime}'
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## dataExt.insert(2, _root)
-## del _root, _xml
-## elif len(tempEle) == 1:
-## _xml = f' \
-## {CreaDateTime}{ModDateTime} \
-## {ModDateTime}'
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## tempEle[0].getparent().replace(tempEle[0], _root)
-## del _root, _xml
-## del tempEle
-## del dataExt
- #dataExt = target_root.xpath("./dataIdInfo/dataExt")
- #for i in range(0, len(dataExt)):
- # #print(etree.tostring(dataExt[i], encoding='UTF-8', method='xml', pretty_print=True).decode())
- # del i
- #del dataExt
- #dataExt = target_root.xpath("./dataIdInfo/dataExt")
- #for i in range(1, len(dataExt)):
- # dataExt[i].getparent().remove(dataExt[i])
- # del i
- #del dataExt
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## #target_root.xpath("./dqInfo/dqScope/scpLvl/ScopeCd")[0].set('value', "005")
-## PresFormCd = target_root.xpath("./dataIdInfo/idCitation/presForm/PresFormCd")[0]
-## fgdcGeoform = target_root.xpath("./dataIdInfo/idCitation/presForm/fgdcGeoform")[0]
-## SpatRepTypCd = target_root.xpath("./dataIdInfo/spatRpType/SpatRepTypCd")[0]
-## PresFormCd.set('Sync', "TRUE")
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # SpatRepTypCd "Empty" "001" (vector) "002" (raster/grid) "003" (tabular)
-## # PresFormCd "005" "003" "011"
-## # fgdcGeoform "vector data" "raster data" "tabular data"
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## datasetSet = target_root.xpath("./dqInfo/dqScope/scpLvlDesc/datasetSet")[0]
-## if SpatRepTypCd.get("value") == "001":
-## PresFormCd.set("value", "005")
-## fgdcGeoform.text = "vector digital data"
-## datasetSet.text = "Vector Digital Data"
-## elif SpatRepTypCd.get("value") == "002":
-## PresFormCd.set("value", "003")
-## fgdcGeoform.text = "raster digital data"
-## datasetSet.text = "Raster Digital Data"
-## elif SpatRepTypCd.get("value") == "003":
-## PresFormCd.set("value", "011")
-## fgdcGeoform.text = "tabular digital data"
-## datasetSet.text = "Tabular Digital Data"
-## else:
-## pass
-## #print("------" * 10)
-## #print(etree.tostring(SpatRepTypCd, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## #print(etree.tostring(target_root.xpath("./dataIdInfo/idCitation/presForm")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## #print(etree.tostring(target_root.xpath("./dqInfo/dqScope")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## #print("------" * 10)
-## del datasetSet, SpatRepTypCd, fgdcGeoform, PresFormCd
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## formatName = target_root.xpath("./distInfo/distFormat/formatName")[0]
-## envirDesc = target_root.xpath("./dataIdInfo/envirDesc")[0]
-## envirDesc.set('Sync', "TRUE")
-## target_root.xpath("./distInfo/distFormat/fileDecmTech")[0].text = "Uncompressed"
-## # # 001 = Vector
-## #''' # 002 = Grid
-## # # 003 = Text Table
-## #'''
-## #format_name_text = ""
-## #try:
-## # GeoObjTypCd = target_root.xpath("./spatRepInfo/VectSpatRep/geometObjs/geoObjTyp/GeoObjTypCd")[0].get("value")
-## # if GeoObjTypCd == "002":
-## # format_name_text = "ESRI File Geodatabase"
-## # del GeoObjTypCd
-## #except:
-## # format_name_text = "ESRI Geodatabase Table"
-## formatName.text = "ESRI REST Service"
-## formatVer_text = str.rstrip(str.lstrip(envirDesc.text))
-## formatVer = target_root.xpath("./distInfo/distFormat/formatVer")[0]
-## formatVer.text = str.rstrip(str.lstrip(formatVer_text))
-## del formatVer_text
-## del envirDesc
-## del formatVer
-## del formatName
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## mdFileID = target_root.xpath(f"//mdFileID")
-## if mdFileID is not None and len(mdFileID) == 0:
-## _xml = 'gov.noaa.nmfs.inport:'
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## target_root.insert(root_dict['mdFileID'], _root)
-## del _root, _xml
-## elif mdFileID is not None and len(mdFileID) and len(mdFileID[0]) == 0:
-## mdFileID[0].text = "gov.noaa.nmfs.inport:"
-## elif mdFileID is not None and len(mdFileID) and len(mdFileID[0]) == 1:
-## pass
-## #print(etree.tostring(mdFileID[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del mdFileID
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## mdMaint = target_root.xpath(f"//mdMaint")
-## if mdMaint is not None and len(mdMaint) == 0:
-## _xml = ''
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## target_root.insert(root_dict['mdMaint'], _root)
-## del _root, _xml
-## elif mdMaint is not None and len(mdMaint) and len(mdMaint[0]) == 0:
-## target_root.xpath("./mdMaint/maintFreq/MaintFreqCd")[0].attrib["value"] = "009"
-## elif mdMaint is not None and len(mdMaint) and len(mdMaint[0]) == 1:
-## pass #print(etree.tostring(mdMaint[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## else:
-## pass
-## #print(etree.tostring(mdMaint[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del mdMaint
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## distorTran = target_root.xpath("//distorTran")
-## for _distorTran in distorTran:
-## _distorTran.tag = "distTranOps"
-## del _distorTran
-## del distorTran
-
-## distTranOps = target_root.xpath("//distTranOps")
-## for i in range(0, len(distTranOps)):
-## if i == 0:
-## xml_file = b'''
-## MB
-## 0
-##
-## https://services2.arcgis.com/C8EMgrsFcRFL6LrL/arcgis/rest/services/.../FeatureServer
-## ESRI REST Service
-## NMFS Office of Science and Technology
-## Dataset Feature Service
-##
-##
-##
-##
-## '''
-## _tree = etree.parse(BytesIO(xml_file), etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## _root = _tree.getroot()
-## distTranOps[i].getparent().replace(distTranOps[i], _root)
-## del _root, _tree, xml_file
-## elif i > 0:
-## distTranOps[i].getparent().remove(distTranOps[i])
-## else:
-## pass
-## del i
-## del distTranOps
- #print(etree.tostring(target_root.xpath("./distInfo")[0], encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- #print(etree.tostring(target_root.xpath("./Esri/DataProperties/itemProps")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## new_item_name = target_root.find("./Esri/DataProperties/itemProps/itemName").text
-## new_item_name = new_item_name.replace("IDW_Sample_Locations", "Sample_Locations") if "Sample_Locations" in new_item_name else new_item_name
-## onLineSrcs = target_root.findall("./distInfo/distTranOps/onLineSrc")
-## for onLineSrc in onLineSrcs:
-## if onLineSrc.find('./protocol').text == "ESRI REST Service":
-## old_linkage_element = onLineSrc.find('./linkage')
-## old_linkage = old_linkage_element.text
-## #print(old_linkage, flush=True)
-## old_item_name = old_linkage[old_linkage.find("/services/")+len("/services/"):old_linkage.find("/FeatureServer")]
-## new_linkage = old_linkage.replace(old_item_name, f"{new_item_name}_{date_code(project)}")
-## #print(new_linkage, flush=True)
-## old_linkage_element.text = new_linkage
-## #print(old_linkage_element.text, flush=True)
-## del old_linkage_element
-## del old_item_name, old_linkage, new_linkage
-## else:
-## pass
-## del onLineSrc
-## del onLineSrcs, new_item_name
-## #print(etree.tostring(target_root.xpath("./distInfo")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-
-## xml_file = b'''
-##
-## external
-## 579ce2e21b888ac8f6ac1dac30f04cddec7a0d7c
-## NMFS Office of Science and Technology
-## NMFS Office of Science and Technology
-## GIS App Developer
-##
-##
-## 1315 East West Highway
-## Silver Spring
-## MD
-## 20910-3282
-## US
-## tim.haverland@noaa.gov
-##
-##
-## 301-427-8137
-## 301-713-4137
-##
-## 0700 - 1800 EST/EDT
-##
-## https://www.fisheries.noaa.gov/about/office-science-and-technology
-## REST Service
-## NMFS Office of Science and Technology
-## NOAA Fisheries Office of Science and Technology
-##
-##
-##
-##
-##
-## NMFS Office of Science and Technology (Distributor)
-## True
-##
-##
-##
-##
-##
-## '''
-## _tree = etree.parse(BytesIO(xml_file), etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## _root = _tree.getroot()
-## distributor = target_root.xpath(f"./distInfo/distributor")[0]
-## distributor.getparent().replace(distributor, _root)
-## del _root, _tree, xml_file
-## #print(f"\n\t{etree.tostring(target_root.xpath(f'./distInfo/distributor')[0], encoding='UTF-8', method='xml', pretty_print=True).decode()}\n")
-## del distributor
-
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- # statement
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## statement = target_root.xpath("./dqInfo/dataLineage/statement")
-## if statement is not None and len(statement) == 0:
-## pass # Need to insert statement
-## elif statement is not None and len(statement) and len(statement[0]) == 0:
-## target_root.xpath("./dqInfo/dataLineage/statement")[0].text = "Need to update datalienage statement"
-## elif statement is not None and len(statement) and len(statement[0]) == 1:
-## pass
-## elif statement is not None and len(statement) and len(statement[0]) >= 1:
-## pass
-## else:
-## pass
-## #print(f"\n\t{etree.tostring(statement[0], encoding='UTF-8', method='xml', pretty_print=True).decode()}\n")
-## del statement
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # srcDesc
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## srcDesc = target_root.xpath("./dqInfo/dataLineage/dataSource/srcDesc")
-## if srcDesc is not None and len(srcDesc) == 0:
-## pass # Need to insert srcDesc
-## elif srcDesc is not None and len(srcDesc) and len(srcDesc[0]) == 0:
-## target_root.xpath("./dqInfo/dataLineage/dataSource/srcDesc")[0].text = "Need to update srcDesc"
-## elif srcDesc is not None and len(srcDesc) and len(srcDesc[0]) == 1:
-## pass
-## elif srcDesc is not None and len(srcDesc) and len(srcDesc[0]) >= 1:
-## pass
-## else:
-## pass
-## #print(f"\n\t{etree.tostring(srcDesc[0], encoding='UTF-8', method='xml', pretty_print=True).decode()}\n")
-## del srcDesc
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- # prcStep
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## stepProcs = target_root.xpath("./dqInfo/dataLineage/prcStep/stepProc")
-## for stepProc in stepProcs:
-## rpIndName = stepProc.find("rpIndName")
-## if rpIndName is None:
-## stepProc.getparent().remove(stepProc)
-## else:
-## pass
-## del rpIndName
-## #print(f"{etree.tostring(stepProc, encoding='UTF-8', method='xml', pretty_print=True).decode()}")
-## del stepProc
-## del stepProcs
-
-## _report = target_root.xpath(f"./dqInfo/report[@type='DQConcConsis']")
-## if len(_report) == 1:
-## _xml = '''
-## Based on a review from DisMAP Team all necessary features are present.
-##
-##
-##
-## Conceptual Consistency Report
-##
-## NMFS OST DisMAP
-##
-##
-##
-##
-##
-##
-## Based on a review from DisMAP Team all necessary features are present.
-## 1
-##
-##
-## '''
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## #print(f"{etree.tostring(_root, encoding='UTF-8', method='xml', pretty_print=True).decode()}")
-## #raise SystemExit
-## _report[0].getparent().replace(_report[0], _root)
-## del _root, _xml
-## else:
-## pass
-## del _report
-##
-## _report = target_root.xpath(f"./dqInfo/report[@type='DQCompOm']")
-## if len(_report) == 1:
-## _xml = '''
-## Based on a review from DisMAP Team all necessary features are present.
-##
-##
-##
-## Completeness Report
-##
-## NMFS OST DisMAP
-##
-##
-##
-##
-##
-##
-## Based on a review from DisMAP Team all necessary features are present.
-## 1
-##
-##
-## '''
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## _report[0].getparent().replace(_report[0], _root)
-## del _root, _xml
-## else:
-## pass
-## del _report
-
-
-## prcStep = target_root.xpath("./dqInfo/dataLineage/prcStep")
-## #print(len(prcStep))
-## if prcStep is not None and len(prcStep) == 0:
-## pass
-## #print("prcStep missing")
-## elif prcStep is not None and len(prcStep) and len(prcStep[0]) == 0:
-## #print("found empty element prcStep. Now adding content.")
-## target_root.xpath("./dqInfo/dataLineage/prcStep")[0].text = "Update Metadata 2025"
-## elif prcStep is not None and len(prcStep) and len(prcStep[0]) >= 1:
-## for i in range(0, len(prcStep)):
-## stepDesc = prcStep[i].xpath("./stepDesc")[0]
-## if stepDesc.text == "pre-Update Metadata 2025":
-## prcStep[i].xpath("./stepDateTm")[0].text = CreaDateTime
-## elif stepDesc.text == "Update Metadata 2025":
-## prcStep[i].xpath("./stepDateTm")[0].text = ModDateTime
-## elif stepDesc.text not in ["pre-Update Metadata 2025", "Update Metadata 2025"]:
-## prcStep[i].xpath("./stepDateTm")[0].text = CreaDateTime
-## del stepDesc
-## del i
-## else:
-## pass
-## del prcStep
-
- #srcDesc = target_root.xpath("./dqInfo/dataLineage/dataSource/srcDesc")
- #for _srcDesc in srcDesc:
- # #print(f"\t{etree.tostring(_srcDesc, encoding='UTF-8', method='xml', pretty_print=True).decode()}")
- # del _srcDesc
- #del srcDesc
- # print(etree.tostring(reports[0].getparent(), encoding='UTF-8', method='xml', pretty_print=True).decode())
- #del dataSources
- #dataLineage = target_root.xpath("./dqInfo/dataLineage")
- #for i in range(0, len(dataLineage)):
- # #print(etree.tostring(dataLineage[i], encoding='UTF-8', method='xml', pretty_print=True).decode())
- # del i
- #del dataLineage
- #distInfo = target_root.xpath("./distInfo")[0]
- #print(etree.tostring(distInfo, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- #del distInfo
-
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # Reorder Elements
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # Metadata
-## target_root[:] = sorted(target_root, key=lambda x: root_dict[x.tag])
-## # Esri
-## Esri = target_root.xpath("./Esri")[0]
-## Esri[:] = sorted(Esri, key=lambda x: esri_dict[x.tag])
-## #print(etree.tostring(Esri, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del Esri
-## # dataIdInfo
-## dataIdInfo = target_root.xpath("./dataIdInfo")[0]
-## dataIdInfo[:] = sorted(dataIdInfo, key=lambda x: dataIdInfo_dict[x.tag])
-## #print(etree.tostring(dataIdInfo, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del dataIdInfo
-## # dqInfo
-## dqInfo = target_root.xpath("./dqInfo")[0]
-## dqInfo[:] = sorted(dqInfo, key=lambda x: dqInfo_dict[x.tag])
-## #print(etree.tostring(dqInfo, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del dqInfo
-## # distInfo
-## distInfo = target_root.xpath("./distInfo")[0]
-## distInfo[:] = sorted(distInfo, key=lambda x: distInfo_dict[x.tag])
-## #print(etree.tostring(distInfo, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del distInfo
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- #print(etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- etree.indent(target_tree, space=' ')
- dataset_md_xml = etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
-
- SaveBackXml = False
- if SaveBackXml:
- dataset_md = md.Metadata(dataset_path)
- dataset_md.xml = dataset_md_xml
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- #_target_tree = etree.parse(StringIO(dataset_md.xml), parser=etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- #_target_tree.write(rf"{export_folder}\{dataset_name}.xml", pretty_print=True)
- #print(etree.tostring(_target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- #del _target_tree
- del dataset_md
- else:
- pass
- del SaveBackXml
- del dataset_md_xml
-
- # Declared Variables
- del project
- del contacts_xml_tree
- del source_target_merge
- del export_folder
- del mdContact_rpIndName, mdContact_eMailAdd, mdContact_role
- del citRespParty_rpIndName, citRespParty_eMailAdd, citRespParty_role
- del idPoC_rpIndName, idPoC_eMailAdd, idPoC_role
- del distorCont_rpIndName, distorCont_eMailAdd, distorCont_role
- del srcCitatn_rpIndName, srcCitatn_eMailAdd, srcCitatn_role
- del dataset_name
- del CreaDateTime, ModDateTime
- del contact_dict
- #del RoleCd_dict, tpCat_dict,
- del dataIdInfo_dict, dqInfo_dict, distInfo_dict, esri_dict, root_dict
- # Imports
- del etree, md, BytesIO, StringIO, copy
- # Declared variables
- del target_root, target_tree
- # Function Parameters
- del dataset_path
-
- except KeyboardInterrupt:
- raise SystemExit
- except SystemExit:
- raise SystemExit
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def add_update_dates(dataset_path=""):
- try:
- # Imports
- from lxml import etree
- from io import StringIO, BytesIO
- import copy
- from arcpy import metadata as md
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
- print(f"Processing Add/Update Dates for dataset: '{dataset_name}'")
- #print(f"\tDataset Location: {os.path.basename(os.path.dirname(dataset_path))}")
-
- dataset_md = md.Metadata(dataset_path)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- dataset_md.reload()
- dataset_md_xml = dataset_md.xml
- del dataset_md
-
- # Parse the XML
- parser = etree.XMLParser(encoding='UTF-8', remove_blank_text=True)
- target_tree = etree.parse(StringIO(dataset_md_xml), parser=parser)
- target_root = target_tree.getroot()
- del parser, dataset_md_xml
-
- CreaDate = target_root.xpath(f"//Esri/CreaDate")[0].text
- CreaTime = target_root.xpath(f"//Esri/CreaTime")[0].text
- #print(CreaDate, CreaTime)
- CreaDateTime = f"{CreaDate[:4]}-{CreaDate[4:6]}-{CreaDate[6:]}T{CreaTime[:2]}:{CreaTime[2:4]}:{CreaTime[4:6]}"
- #print(f"\tCreaDateTime: {CreaDateTime}")
- #del CreaDateTime
- del CreaDate, CreaTime
- ModDate = target_root.xpath(f"//Esri/ModDate")[0].text
- ModTime = target_root.xpath(f"//Esri/ModTime")[0].text
- #print(ModDate, ModTime)
- ModDateTime = f"{ModDate[:4]}-{ModDate[4:6]}-{ModDate[6:]}T{ModTime[:2]}:{ModTime[2:4]}:{ModTime[4:6]}"
- #print(f"\tModDateTime: {ModDateTime}")
- #del ModDateTime
- del ModDate, ModTime
-
- dates = target_tree.xpath(f"//date")
- count=0
- count_dates = len(dates)
- for date in dates:
- #_date = copy.deepcopy(date)
- count+=1
-
- createDate = date.xpath(f"./createDate")
- #print(f"Element list: '{createDate}'")
- #print(f"Element count: '{len(createDate)}'")
- #print(len(createDate[0].text))
- #print(type(createDate[0].text))
- if not len(createDate):
- _xml = f"{CreaDateTime}"
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- date.insert(0, _root)
- del _root, _xml
- elif len(createDate) and createDate[0].text is not None:
- pass
- #print(f"createDate exists and has content '{createDate[0].text}'")
- #print(etree.tostring(createDate[0], encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- elif len(createDate) and createDate[0].text is None:
- #print(f"createDate exists and but does not have content.")
- createDate[0].text = CreaDateTime
- date.insert(0, createDate[0])
- del createDate
-
- pubDate = date.xpath(f"./pubDate")
- if not len(pubDate):
- _xml = f"{CreaDateTime}"
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- date.insert(0, _root)
- del _root, _xml
- if len(pubDate) and pubDate[0].text is not None:
- pass
- #print(f"pubDate exists and has content '{pubDate[0].text}'")
- #print(etree.tostring(pubDate[0], encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- elif len(pubDate) and pubDate[0].text is None:
- #print(f"pubDate exists and but does not have content.")
- pubDate[0].text = CreaDateTime
- date.insert(1, pubDate[0])
- del pubDate
-
- reviseDate = date.xpath(f"./reviseDate")
- if not len(reviseDate):
- _xml = f"{ModDateTime}"
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- date.insert(0, _root)
- del _root, _xml
- if len(reviseDate) and reviseDate[0].text is not None:
- pass
- #print(f"reviseDate exists and has content '{reviseDate[0].text}'")
- #print(etree.tostring(reviseDate[0], encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- elif len(reviseDate) and reviseDate[0].text is None:
- #print(f"reviseDate exists and but does not have content.")
- reviseDate[0].text = ModDateTime
- date.insert(2, reviseDate[0])
- del reviseDate
-
-## if len(createDate) == 0:
-## _xml = f"{CreaDateTime}"
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## date.insert(0, _root)
-## del _root, _xml
-## elif len(createDate) == 1:
-## if createDate[0].text:
-## createDate[0].text = createDate[0].text
-## elif not createDate[0].text:
-## createDate[0].text = CreaDateTime
-## else:
-## pass
-## else:
-## pass
- #print(etree.tostring(createDate[0], encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
-## pubDate = date.xpath(f"./date/pubDate")
-## if len(pubDate) == 0:
-## _xml = f"{CreaDateTime}"
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## date.insert(0, _root)
-## del _root, _xml
-## elif len(pubDate) == 1:
-## if pubDate[0].text:
-## pubDate[0].text = pubDate[0].text
-## elif not pubDate[0].text:
-## pubDate[0].text = CreaDateTime
-## else:
-## pass
-## else:
-## pass
-## del pubDate
-##
-## try:
-## revisedDate = date.xpath(f"./date/revisedDate")[0]
-## revisedDate.tag = "reviseDate"
-## del revisedDate
-## except:
-## pass
-##
-## reviseDate = date.xpath(f"./date/reviseDate")
-## if len(reviseDate) == 0:
-## _xml = f"{CreaDateTime}"
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## date.insert(0, _root)
-## del _root, _xml
-## elif len(reviseDate) == 1:
-## if reviseDate[0].text:
-## reviseDate[0].text = reviseDate[0].text
-## elif not reviseDate[0].text:
-## reviseDate[0].text = ModDateTime
-## else:
-## pass
-## else:
-## pass
-## del reviseDate
-
-## date.getparent().replace(date, _date)
-
- #print(etree.tostring(date, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
-
- del date
- del count, count_dates
- del dates
-
- dates = target_root.xpath(f"//date")
- count=0
- count_dates = len(dates)
- for date in dates:
- count+=1
- #print(f"\tDate: {count} of {count_dates}")
- #print(f"\t\tCreaDateTime: {CreaDateTime}")
- #print(f"\t\tModDateTime: {ModDateTime}")
- #print(date.getroottree().getpath(date))
- #print(etree.tostring(date, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- del date
- del count, count_dates
- del dates
-
- # No changes needed below
- #print(etree.tostring(target_tree, encoding='UTF-8', method='xml', pretty_print=True).decode())
- etree.indent(target_root, space=' ')
- dataset_md_xml = etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
-
- SaveBackXml = True
- if SaveBackXml:
- dataset_md = md.Metadata(dataset_path)
- dataset_md.xml = dataset_md_xml
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- #dataset_md.reload()
- del dataset_md
- else:
- pass
- del SaveBackXml
- del dataset_md_xml
-
- del dataset_name, target_tree, target_root
-
- # Declared Variables
- del CreaDateTime, ModDateTime
- # Imports
- del etree, StringIO, BytesIO, copy, md
- # Function Parameters
- del dataset_path
-
- except KeyboardInterrupt:
- raise SystemExit
- except Exception:
- traceback.print_exc()
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def basic_metadata_report(dataset_path=""):
- try:
- # Imports
- from lxml import etree
- from io import StringIO, BytesIO
- import copy
- from arcpy import metadata as md
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- project_gdb = os.path.dirname(dataset_path)
- project_folder = os.path.dirname(project_gdb)
- project = os.path.basename(os.path.dirname(project_gdb))
- export_folder = rf"{project_folder}\Export"
- scratch_folder = rf"{project_folder}\Scratch"
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = rf"{scratch_folder}\scratch.gdb"
- del scratch_folder
- del project_folder
- del project_gdb
-
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
- print(f"Reporting on Basic XML Metadata for dataset: '{dataset_name}'")
- #print(f"\tDataset Location: {os.path.basename(os.path.dirname(dataset_path))}")
-
- dataset_md = md.Metadata(dataset_path)
- #dataset_md.synchronize("ALWAYS")
- #dataset_md.save()
- #dataset_md.reload()
- dataset_md_xml = dataset_md.xml
- del dataset_md
-
- # Parse the XML
- parser = etree.XMLParser(encoding='UTF-8', remove_blank_text=True)
- target_tree = etree.parse(StringIO(dataset_md_xml), parser=parser)
- target_root = target_tree.getroot()
- del parser, dataset_md_xml
-
- dataset_md = md.Metadata(dataset_path)
- print(f"\tTitle: {dataset_md.title}")
- print(f"\tSearch Keys: {dataset_md.tags}")
- print(f"\tSummary: {dataset_md.summary}")
- print(f"\tDescription: {dataset_md.description}")
- print(f"\tCredits: {dataset_md.credits}")
- print(f"\tUse Limits: {dataset_md.accessConstraints}")
- del dataset_md
-
- # No changes needed below
- #print(etree.tostring(target_tree, encoding='UTF-8', method='xml', pretty_print=True).decode())
- etree.indent(target_root, space=' ')
- dataset_md_xml = etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
-
- SaveBackXml = True
- if SaveBackXml:
- dataset_md = md.Metadata(dataset_path)
- dataset_md.xml = dataset_md_xml
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- #dataset_md.reload()
- del dataset_md
- else:
- pass
- del SaveBackXml
- del dataset_md_xml
-
- # Declared Varaiables
- del project, export_folder
- del dataset_name
- del target_tree, target_root
- # Imports
- del etree, StringIO, BytesIO, copy, md
- # Function Parameters
- del dataset_path
- except KeyboardInterrupt:
- raise SystemExit
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def metadata_esri_report(dataset_path=""):
- try:
- # Imports
- from lxml import etree
- from io import StringIO, BytesIO
- import copy
- from arcpy import metadata as md
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
- print(f"Reporting on Esri XML for dataset: '{dataset_name}'")
- #print(f"\tDataset Location: {os.path.basename(os.path.dirname(dataset_path))}")
-
- dataset_md = md.Metadata(dataset_path)
- #dataset_md.synchronize("ALWAYS")
- #dataset_md.save()
- #dataset_md.reload()
- dataset_md_xml = dataset_md.xml
- del dataset_md
-
- # Parse the XML
- parser = etree.XMLParser(encoding='UTF-8', remove_blank_text=True)
- target_tree = etree.parse(StringIO(dataset_md_xml), parser=parser)
- target_root = target_tree.getroot()
- del parser, dataset_md_xml
-
- if target_root.find("Esri") is not None:
- Esri = target_root.xpath("./Esri")[0]
- _xml = '''
- ISO 19139 Metadata Implementation Specification GML3.2
- ISO19139
-
-
-
- '''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- # Merge Target wtih Source
- target_source_merge = xml_tree_merge(Esri, _root)
- #print(etree.tostring(target_source_merge, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- # Merge Source wtih Target
- source_target_merge = xml_tree_merge(target_source_merge, Esri)
- #print(etree.tostring(source_target_merge, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- Esri.getparent().replace(Esri, source_target_merge)
- del target_source_merge, source_target_merge
- del _root, _xml
- #print(etree.tostring(target_root.find("Esri"), encoding='UTF-8', method='xml', pretty_print=True).decode())
- del Esri
- else:
- pass
-
- # No changes needed below
- #print(etree.tostring(target_tree, encoding='UTF-8', method='xml', pretty_print=True).decode())
- etree.indent(target_root, space=' ')
- dataset_md_xml = etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
-
- SaveBackXml = True
- if SaveBackXml:
- dataset_md = md.Metadata(dataset_path)
- dataset_md.xml = dataset_md_xml
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- #dataset_md.reload()
- del dataset_md
- else:
- pass
- del SaveBackXml
- del dataset_md_xml
-
- # Declared Varaiables
- del dataset_name
- del target_tree, target_root
- # Imports
- del etree, StringIO, BytesIO, copy, md
- # Function Parameters
- del dataset_path
- except KeyboardInterrupt:
- raise SystemExit
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def metadata_dataidinfo_report(dataset_path=""):
- try:
- # Imports
- from lxml import etree
- from io import StringIO, BytesIO
- import copy
- from arcpy import metadata as md
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- import json
- json_path = rf"{project_folder}\dataIdInfo_dict.json"
- with open(json_path, "r") as json_file:
- dataIdInfo_dict = json.load(json_file)
- del json_file
- del json_path
- json_path = rf"{project_folder}\root_dict.json"
- with open(json_path, "r") as json_file:
- root_dict = json.load(json_file)
- del json_file
- del json_path
- del json
-
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
- print(f"Reporting on dataIdInfo XML for dataset: '{dataset_name}'")
- #print(f"\tDataset Location: {os.path.basename(os.path.dirname(dataset_path))}")
-
- dataset_md = md.Metadata(dataset_path)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- dataset_md.reload()
- dataset_md_xml = dataset_md.xml
- del dataset_md
-
- # Parse the XML
- parser = etree.XMLParser(encoding='UTF-8', remove_blank_text=True)
- target_tree = etree.parse(StringIO(dataset_md_xml), parser=parser)
- target_root = target_tree.getroot()
- del parser, dataset_md_xml
-
- #target_root[:] = sorted(target_root, key=lambda x: root_dict[x.tag])
- #for child in target_root:
- # #print(child.tag)
- # #print(etree.tostring(child, encoding='UTF-8', method='xml', pretty_print=True).decode())
- # del child
- # Esri
- # dataIdInfo
- # dqInfo
- # distInfo
- # mdContact
- # mdLang
- # mdChar
- # mdDateSt
- # mdHrLv
- # mdHrLvName
- # mdFileID
- # mdMaint
- # refSysInfo
- # spatRepInfo
- # spdoinfo
- # eainfo
-
- refSysInfo = target_root.xpath("./refSysInfo")
- if len(refSysInfo) == 0:
- pass #print("missing")
- elif len(refSysInfo) == 1:
- pass #print(etree.tostring(target_root.xpath("./refSysInfo")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
- elif len(refSysInfo) > 1:
- pass #print("too many")
- else:
- pass
- del refSysInfo
-
- dqInfo = target_root.xpath("./dqInfo")
- if len(dqInfo) == 0:
- _xml = '''
-
-
-
-
-
- dataset
-
-
-
- '''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root.insert(root_dict["dqInfo"], _root)
- del _root, _xml
- else:
- pass
- del dqInfo
-
- mdHrLv = target_root.xpath("./mdHrLv")
- if len(mdHrLv) == 0:
- _xml = '''
-
-
- '''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root.insert(root_dict["mdHrLv"], _root)
- del _root, _xml
- else:
- pass
- del mdHrLv
-
- mdHrLvName = target_root.xpath("./mdHrLvName")
- if len(mdHrLvName) == 0:
- _xml = '''dataset'''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root.insert(root_dict["mdHrLvName"], _root)
- del _root, _xml
- else:
- pass
- del mdHrLvName
-
- fgdcGeoform = target_root.xpath("./dataIdInfo/idCitation/presForm/fgdcGeoform")
- if len(fgdcGeoform) == 0:
- _xml = '''document'''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root.xpath("./dataIdInfo/idCitation/presForm")[0].insert(dataIdInfo_dict["fgdcGeoform"], _root)
- del _root, _xml
- else:
- pass
- del fgdcGeoform
-
- #print(etree.tostring(target_root.xpath("./distInfo")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-
- distInfo = target_root.xpath("./distInfo")
- if len(distInfo) == 0:
- _xml = '''
-
- ESRI REST Service
-
- Uncompressed
-
-
-
- '''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root.xpath("./dataIdInfo/idCitation/presForm")[0].insert(dataIdInfo_dict["fgdcGeoform"], _root)
- del _root, _xml
- elif len(distInfo) == 1:
- formatVer = distInfo[0].xpath("./distFormat/formatVer")
- if len(formatVer) == 0:
- _xml = ''''''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root.xpath("./distInfo/distFormat")[0].insert(1, _root)
- del _root, _xml
- elif len(formatVer) == 1:
- pass
- elif len(formatVer) > 1:
- for i in range(1, len(formatVer)):
- formatVer[i].getparent().remove(formatVer[i])
- del i
- else:
- pass
- del formatVer
-
- fileDecmTech = distInfo[0].xpath("./distFormat/fileDecmTech")
- if len(fileDecmTech) == 0:
- _xml = ''''''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root.xpath("./distInfo/distFormat")[0].insert(2, _root)
- del _root, _xml
- elif len(fileDecmTech) == 1:
- pass
- elif len(fileDecmTech) > 1:
- for i in range(1, len(fileDecmTech)):
- fileDecmTech[i].getparent().remove(fileDecmTech[i])
- del i
- else:
- pass
- del fileDecmTech
-
- formatInfo = distInfo[0].xpath("./distFormat/formatInfo")
- if len(formatInfo) == 0:
- _xml = ''''''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root.xpath("./distInfo/distFormat")[0].insert(2, _root)
- del _root, _xml
- elif len(formatInfo) == 1:
- pass
- elif len(formatInfo) > 1:
- for i in range(1, len(formatInfo)):
- formatInfo[i].getparent().remove(formatInfo[i])
- del i
- else:
- pass
- del formatInfo
- else:
- pass
- del distInfo
-
- #print(etree.tostring(target_root.xpath("./mdHrLv")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
- #print(etree.tostring(target_root.xpath("./mdHrLvName")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
- #print(etree.tostring(target_root.xpath("./dqInfo/dqScope")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
- #print(etree.tostring(target_root.xpath("./dataIdInfo/idCitation/presForm")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
- #print(etree.tostring(target_root.xpath("./distInfo")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-
- #raise Exception
- mdHrLvName = target_root.xpath("./mdHrLvName")
- if len(mdHrLvName) == 0:
- _xml = '''dataset'''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root.insert(root_dict["mdHrLvName"], _root)
- del _root, _xml
- else:
- pass
- del mdHrLvName
-
- target_root.xpath("./dataIdInfo/envirDesc")[0].set('Sync', "TRUE")
- #target_root.xpath("./dqInfo/dqScope/scpLvl/ScopeCd")[0].set('value', "005")
- #target_root.xpath("./dqInfo/dqScope/scpLvl/ScopeCd")[0].set('Sync', "TRUE")
- mdHrLvName = target_root.xpath("./mdHrLvName")[0]
- ScopeCd = target_root.xpath("./dqInfo/dqScope/scpLvl/ScopeCd")[0]
- PresFormCd = target_root.xpath("./dataIdInfo/idCitation/presForm/PresFormCd")[0]
- fgdcGeoform = target_root.xpath("./dataIdInfo/idCitation/presForm/fgdcGeoform")[0]
- SpatRepTypCd = target_root.xpath("./dataIdInfo/spatRpType/SpatRepTypCd")[0]
- PresFormCd.set('Sync', "TRUE")
- #print("------" * 10)
- #print(etree.tostring(SpatRepTypCd, encoding='UTF-8', method='xml', pretty_print=True).decode())
- #print(etree.tostring(target_root.xpath("./dataIdInfo/idCitation/presForm")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
- #print(etree.tostring(target_root.xpath("./dqInfo/dqScope")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
- #print("------" * 10)
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- # SpatRepTypCd "Empty" "001" (vector) "002" (raster/grid) "003" (tabular)
- # ScopeCd "005" "005" "007"
- # PresFormCd "005" "003" "011"
- # fgdcGeoform "vector data" "raster data" "tabular data"
- # mdHrLvName "vector data" "raster data" "tabular data"
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- datasetSet = target_root.xpath("./dqInfo/dqScope/scpLvlDesc/datasetSet")
- if len(datasetSet) == 0:
- _xml = ''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root.xpath("./dqInfo/dqScope")[0].insert(1, _root)
- del _root, _xml
- else:
- pass
- datasetSet = target_root.xpath("./dqInfo/dqScope/scpLvlDesc/datasetSet")[0]
- if SpatRepTypCd.get("value") == "001":
- ScopeCd.set('value', "005")
- PresFormCd.set("value", "005")
- fgdcGeoform.text = "vector digital data"
- datasetSet.text = "Vector Digital Data"
- mdHrLvName.text = "Vector Digital Data"
- elif SpatRepTypCd.get("value") == "002":
- ScopeCd.set('value', "005")
- PresFormCd.set("value", "003")
- fgdcGeoform.text = "raster digital data"
- datasetSet.text = "Raster Digital Data"
- mdHrLvName.text = "Raster Digital Data"
- elif SpatRepTypCd.get("value") == "003":
- ScopeCd.set('value', "007")
- PresFormCd.set("value", "011")
- fgdcGeoform.text = "tabular digital data"
- datasetSet.text = "Tabular Digital Data"
- mdHrLvName.text = "Tabular Digital Data"
- else:
- pass
- #print("------" * 10)
- #print(etree.tostring(SpatRepTypCd, encoding='UTF-8', method='xml', pretty_print=True).decode())
- #print(etree.tostring(target_root.xpath("./dataIdInfo/idCitation/presForm")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
- #print(etree.tostring(target_root.xpath("./dqInfo/dqScope")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
- #print("------" * 10)
- del datasetSet, SpatRepTypCd, fgdcGeoform, PresFormCd, ScopeCd, mdHrLvName
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- formatName = target_root.xpath("./distInfo/distFormat/formatName")[0]
- envirDesc = target_root.xpath("./dataIdInfo/envirDesc")[0]
- envirDesc.set('Sync', "TRUE")
- target_root.xpath("./distInfo/distFormat/fileDecmTech")[0].text = "Uncompressed"
- formatName.text = "ESRI REST Service"
- formatVer_text = str.rstrip(str.lstrip(envirDesc.text))
- formatVer = target_root.xpath("./distInfo/distFormat/formatVer")[0]
- formatVer.text = str.rstrip(str.lstrip(formatVer_text))
- del formatVer_text
- del envirDesc
- del formatVer
- del formatName
-
- xml_file = b'''
- external
- c66ffbb333c48d18d81856ec0e0c37ea752bff1a
- Melissa Ann Karp
- NMFS Office of Science and Technology
- Fisheries Science Coordinator
-
-
- 1315 East West Hwy
- Silver Spring
- MD
- 20910-3282
- melissa.karp@noaa.gov
- US
-
-
- 301-427-8202
- 301-713-4137
-
- 0700 - 1800 EST/EDT
-
- https://www.fisheries.noaa.gov/about/office-science-and-technology
- REST Service
- NMFS Office of Science and Technology
- NOAA Fisheries Office of Science and Technology
-
-
-
-
-
- Melissa Ann Karp
- True
-
-
-
-
- '''
- _tree = etree.parse(BytesIO(xml_file), etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- _root = _tree.getroot()
- idPoC = target_root.xpath(f"./dataIdInfo/idPoC")
- if len(idPoC) == 0:
- target_root.xpath(f"./dataIdInfo")[0].insert(dataIdInfo_dict["idPoC"], _root)
- elif len(idPoC) == 1:
- idPoC[0].getparent().replace(idPoC[0], _root)
- else:
- pass
- del _root, _tree, xml_file
- #print(f"\n\t{etree.tostring(target_root.xpath(f'./dataIdInfo/idPoC')[0], encoding='UTF-8', method='xml', pretty_print=True).decode()}\n")
- del idPoC
-
- xml_file = b'''
- external
- 579ce2e21b888ac8f6ac1dac30f04cddec7a0d7c
- NMFS Office of Science and Technology
- NMFS Office of Science and Technology
- GIS App Developer
-
-
- 1315 East West Highway
- Silver Spring
- MD
- 20910-3282
- US
- tim.haverland@noaa.gov
-
-
- 301-427-8137
- 301-713-4137
-
- 0700 - 1800 EST/EDT
-
- https://www.fisheries.noaa.gov/about/office-science-and-technology
- REST Service
- NMFS Office of Science and Technology
- NOAA Fisheries Office of Science and Technology
-
-
-
-
-
- NMFS Office of Science and Technology (Distributor)
- True
-
-
-
-
- '''
- _tree = etree.parse(BytesIO(xml_file), etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- _root = _tree.getroot()
- citRespParty = target_root.xpath(f"./dataIdInfo/idCitation/citRespParty")
- if len(citRespParty) == 0:
- target_root.xpath(f"./dataIdInfo/idCitation")[0].insert(dataIdInfo_dict["citRespParty"], _root)
- elif len(citRespParty) == 1:
- citRespParty[0].getparent().replace(citRespParty[0], _root)
- else:
- pass
- del _root, _tree, xml_file
- #print(f"\n\t{etree.tostring(target_root.xpath(f'./dataIdInfo/idCitation/citRespParty')[0], encoding='UTF-8', method='xml', pretty_print=True).decode()}\n")
- del citRespParty
-
- resConst = target_root.xpath("./dataIdInfo/resConst")
- if len(resConst) == 1:
- xml_file = b'''
-
-
-
-
-
-
-
- Data License: CC0-1.0
-Data License URL: https://creativecommons.org/publicdomain/zero/1.0/
-Data License Statement: These data were produced by NOAA and are not subject to copyright protection in the United States. NOAA waives any potential copyright and related rights in these data worldwide through the Creative Commons Zero 1.0 Universal Public Domain Dedication (CC0-1.0).
-
-
-
-
-
-
- FISMA Low
-
-
- <DIV STYLE="text-align:Left;"><DIV><DIV><P><SPAN>***No Warranty*** The user assumes the entire risk related to its use of these data. NMFS is providing these data 'as is' and NMFS disclaims any and all warranties, whether express or implied, including (without limitation) any implied warranties of merchantability or fitness for a particular purpose. No warranty expressed or implied is made regarding the accuracy or utility of the data on any other system or for general or scientific purposes, nor shall the act of distribution constitute any such warranty. It is strongly recommended that careful attention be paid to the contents of the metadata file associated with these data to evaluate dataset limitations, restrictions or intended use. In no event will NMFS be liable to you or to any third party for any direct, indirect, incidental, consequential, special or exemplary damages or lost profit resulting from any use or misuse of these data.</SPAN></P></DIV></DIV></DIV>
-
- '''
- _tree = etree.parse(BytesIO(xml_file), etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- _root = _tree.getroot()
- resConst[0].getparent().replace(resConst[0], _root)
- del _root, _tree, xml_file
- else:
- pass
- del resConst
-
- dataIdInfo = target_root.xpath("./dataIdInfo")
- for data_Id_Info in dataIdInfo:
- data_Id_Info[:] = sorted(data_Id_Info, key=lambda x: dataIdInfo_dict[x.tag])
- #print(etree.tostring(data_Id_Info, encoding='UTF-8', method='xml', pretty_print=True).decode())
- del data_Id_Info
- del dataIdInfo
-
- # No changes needed below
- #print(etree.tostring(target_tree, encoding='UTF-8', method='xml', pretty_print=True).decode())
- etree.indent(target_root, space=' ')
- dataset_md_xml = etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
-
- SaveBackXml = True
- if SaveBackXml:
- dataset_md = md.Metadata(dataset_path)
- dataset_md.xml = dataset_md_xml
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- #dataset_md.reload()
- del dataset_md
- else:
- pass
- del SaveBackXml
- del dataset_md_xml
-
- # Declared Varaiables
- del dataset_name
- del dataIdInfo_dict, root_dict
- del target_tree, target_root
- # Imports
- del etree, StringIO, BytesIO, copy, md
- # Function Parameters
- del dataset_path
- except KeyboardInterrupt:
- raise SystemExit
- except:
- traceback.print_exc()
- raise SystemExit
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- pass
-
-def metadata_dq_info_report(dataset_path=""):
- try:
- # Imports
- from lxml import etree
- from io import StringIO, BytesIO
- import copy
- from arcpy import metadata as md
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- import json
- json_path = rf"{project_folder}\dqInfo_dict.json"
- with open(json_path, "r") as json_file:
- dqInfo_dict = json.load(json_file)
- del json_file
- del json_path
- del json
-
- export_folder = rf"{os.path.dirname(os.path.dirname(dataset_path))}\Export"
-
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
- print(f"Reporting on dqInfo XML for dataset: '{dataset_name}'")
- #print(f"\tDataset Location: {os.path.basename(os.path.dirname(dataset_path))}")
-
- dataset_md = md.Metadata(dataset_path)
- #dataset_md.synchronize("ALWAYS")
- #dataset_md.save()
- #dataset_md.reload()
- dataset_md_xml = dataset_md.xml
- del dataset_md
-
- # Parse the XML
- parser = etree.XMLParser(encoding='UTF-8', remove_blank_text=True)
- target_tree = etree.parse(StringIO(dataset_md_xml), parser=parser)
- target_root = target_tree.getroot()
- del parser, dataset_md_xml
-
- # dqInfo
- dqInfo = target_root.xpath("./dqInfo")[0]
- dqInfo[:] = sorted(dqInfo, key=lambda x: dqInfo_dict[x.tag])
- #print(etree.tostring(dqInfo, encoding='UTF-8', method='xml', pretty_print=True).decode())
-
- #target_root[:] = sorted(target_root, key=lambda x: dqInfo_dict[x.tag])
- #for child in target_root:
- # #print(child.tag)
- # #print(etree.tostring(child, encoding='UTF-8', method='xml', pretty_print=True).decode())
- # del child
- # Esri
- # dataIdInfo
- # dqInfo
- # distInfo
- # mdContact
- # mdLang
- # mdChar
- # mdDateSt
- # mdHrLv
- # mdHrLvName
- # mdFileID
- # mdMaint
- # refSysInfo
- # spatRepInfo
- # spdoinfo
- # eainfo
-
- _report = target_root.xpath(f"./dqInfo/report[@type='DQConcConsis']")
- if len(_report) == 1:
- _xml = '''
- Based on a review from DisMAP Team all necessary features are present.
-
-
-
- Conceptual Consistency Report
-
- NMFS OST DisMAP
-
-
-
-
-
-
- Based on a review from DisMAP Team all necessary features are present.
- 1
-
-
- '''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- #print(f"{etree.tostring(_root, encoding='UTF-8', method='xml', pretty_print=True).decode()}")
- #raise SystemExit
- _report[0].getparent().replace(_report[0], _root)
- del _root, _xml
- else:
- pass
- del _report
-
- _report = target_root.xpath(f"./dqInfo/report[@type='DQCompOm']")
- if len(_report) == 1:
- _xml = '''
- Based on a review from DisMAP Team all necessary features are present.
-
-
-
- Completeness Report
-
- NMFS OST DisMAP
-
-
-
-
-
-
- Based on a review from DisMAP Team all necessary features are present.
- 1
-
-
- '''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- _report[0].getparent().replace(_report[0], _root)
- del _root, _xml
- else:
- pass
- del _report
-
- dqInfo = target_root.xpath("./dqInfo")
- #print(len(dqInfo))
- for dq_Info in dqInfo:
- dq_Info[:] = sorted(dq_Info, key=lambda x: dqInfo_dict[x.tag])
- #print(etree.tostring(dq_Info, encoding='UTF-8', method='xml', pretty_print=True).decode())
- del dq_Info
- del dqInfo
-
- #print(len(target_root.xpath("./dqInfo")))
- for i in range(1, len(target_root.xpath("./dqInfo"))):
- dq_Info = target_root.xpath("./dqInfo")[i] #.write(rf"{export_folder}\{os.path.basename(dataset_path)} dqInfo.xml", encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
- # Writing to a new file
- file = open(rf"{export_folder}\{os.path.basename(dataset_path)} dqInfo.xml", "w")
- file.write(etree.tostring(dq_Info, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- file.close()
- del file
- dq_Info.getparent().remove(dq_Info)
- del dq_Info
- del i
-
- # No changes needed below
- #print(etree.tostring(target_tree, encoding='UTF-8', method='xml', pretty_print=True).decode())
- etree.indent(target_root, space=' ')
- dataset_md_xml = etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
-
- SaveBackXml = True
- if SaveBackXml:
- dataset_md = md.Metadata(dataset_path)
- dataset_md.xml = dataset_md_xml
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- #dataset_md.reload()
- del dataset_md
- else:
- pass
- del SaveBackXml
- del dataset_md_xml
-
- # Declared Varaiables
- del export_folder
- del dataset_name
- del dqInfo_dict
- del target_tree, target_root
- # Imports
- del etree, StringIO, BytesIO, copy, md
- # Function Parameters
- del dataset_path
- except KeyboardInterrupt:
- raise SystemExit
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def metadata_dist_info_report(dataset_path=""):
- try:
- # Imports
- from lxml import etree
- from io import StringIO, BytesIO
- import copy
- from arcpy import metadata as md
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- import json
- json_path = rf"{project_folder}\distInfo_dict.json"
- with open(json_path, "r") as json_file:
- distInfo_dict = json.load(json_file)
- del json_file
- del json_path
- del json
-
- project = os.path.basename(os.path.dirname(os.path.dirname(dataset_path)))
- export_folder = rf"{os.path.dirname(os.path.dirname(dataset_path))}\Export"
-
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
- print(f"Reporting on distInfo XML for dataset: '{dataset_name}'")
- #print(f"\tDataset Location: {os.path.basename(os.path.dirname(dataset_path))}")
-
- dataset_md = md.Metadata(dataset_path)
- #dataset_md.synchronize("ALWAYS")
- #dataset_md.save()
- #dataset_md.reload()
- dataset_md_xml = dataset_md.xml
- del dataset_md
-
- # Parse the XML
- parser = etree.XMLParser(encoding='UTF-8', remove_blank_text=True)
- target_tree = etree.parse(StringIO(dataset_md_xml), parser=parser)
- target_root = target_tree.getroot()
- del parser, dataset_md_xml
-
- #target_root[:] = sorted(target_root, key=lambda x: distInfo_dict[x.tag])
- #for child in target_root:
- # #print(child.tag)
- # #print(etree.tostring(child, encoding='UTF-8', method='xml', pretty_print=True).decode())
- # del child
- # Esri
- # dataIdInfo
- # dqInfo
- # distInfo
- # mdContact
- # mdLang
- # mdChar
- # mdDateSt
- # mdHrLv
- # mdHrLvName
- # mdFileID
- # mdMaint
- # refSysInfo
- # spatRepInfo
- # spdoinfo
- # eainfo
-
- distorTran = target_root.xpath("//distorTran")
- for _distorTran in distorTran:
- _distorTran.tag = "distTranOps"
- del _distorTran
- del distorTran
-
-## target_root.xpath("./distInfo/distFormat/formatName")[0].set('Sync', "FALSE")
-## target_root.xpath("./dataIdInfo/envirDesc")[0].set('Sync', "TRUE")
-## #target_root.xpath("./dqInfo/dqScope/scpLvl/ScopeCd")[0].set('value', "005")
-## PresFormCd = target_root.xpath("./dataIdInfo/idCitation/presForm/PresFormCd")[0]
-## fgdcGeoform = target_root.xpath("./dataIdInfo/idCitation/presForm/fgdcGeoform")[0]
-## SpatRepTypCd = target_root.xpath("./dataIdInfo/spatRpType/SpatRepTypCd")[0]
-## PresFormCd.set('Sync', "TRUE")
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # SpatRepTypCd "Empty" "001" (vector) "002" (raster/grid) "003" (tabular)
-## # PresFormCd "005" "003" "011"
-## # fgdcGeoform "vector data" "raster data" "tabular data"
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## datasetSet = target_root.xpath("./dqInfo/dqScope/scpLvlDesc/datasetSet")[0]
-## if SpatRepTypCd.get("value") == "001":
-## PresFormCd.set("value", "005")
-## fgdcGeoform.text = "vector digital data"
-## datasetSet.text = "Vector Digital Data"
-## elif SpatRepTypCd.get("value") == "002":
-## PresFormCd.set("value", "003")
-## fgdcGeoform.text = "raster digital data"
-## datasetSet.text = "Raster Digital Data"
-## elif SpatRepTypCd.get("value") == "003":
-## PresFormCd.set("value", "011")
-## fgdcGeoform.text = "tabular digital data"
-## datasetSet.text = "Tabular Digital Data"
-## else:
-## pass
-## #print("------" * 10)
-## #print(etree.tostring(SpatRepTypCd, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## #print(etree.tostring(target_root.xpath("./dataIdInfo/idCitation/presForm")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## #print(etree.tostring(target_root.xpath("./dqInfo/dqScope")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## #print("------" * 10)
-## del datasetSet, SpatRepTypCd, fgdcGeoform, PresFormCd
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## formatName = target_root.xpath("./distInfo/distFormat/formatName")[0]
-## envirDesc = target_root.xpath("./dataIdInfo/envirDesc")[0]
-## envirDesc.set('Sync', "TRUE")
-## target_root.xpath("./distInfo/distFormat/fileDecmTech")[0].text = "Uncompressed"
-## formatName.text = "ESRI REST Service"
-## formatVer_text = str.rstrip(str.lstrip(envirDesc.text))
-## formatVer = target_root.xpath("./distInfo/distFormat/formatVer")[0]
-## formatVer.text = str.rstrip(str.lstrip(formatVer_text))
-## del formatVer_text
-## del envirDesc
-## del formatVer
-## del formatName
-
- xml_file = b'''
-
- external
- 579ce2e21b888ac8f6ac1dac30f04cddec7a0d7c
- NMFS Office of Science and Technology
- NMFS Office of Science and Technology
- GIS App Developer
-
-
- 1315 East West Highway
- Silver Spring
- MD
- 20910-3282
- US
- tim.haverland@noaa.gov
-
-
- 301-427-8137
- 301-713-4137
-
- 0700 - 1800 EST/EDT
-
- https://www.fisheries.noaa.gov/about/office-science-and-technology
- REST Service
- NMFS Office of Science and Technology
- NOAA Fisheries Office of Science and Technology
-
-
-
-
-
- NMFS Office of Science and Technology (Distributor)
- True
-
-
-
-
-
- '''
- _tree = etree.parse(BytesIO(xml_file), etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- _root = _tree.getroot()
- distributor = target_root.xpath(f"./distInfo/distributor")
- if len(distributor) == 0:
- target_root.xpath(f"./distInfo")[0].insert(distInfo_dict["distributor"], _root)
- elif len(distributor) == 1:
- distributor[0].getparent().replace(distributor[0], _root)
- else:
- pass
- del _root, _tree, xml_file
- #print(f"\n\t{etree.tostring(target_root.xpath(f'./distInfo/distributor')[0], encoding='UTF-8', method='xml', pretty_print=True).decode()}\n")
- del distributor
-
-## new_item_name = target_root.find("./Esri/DataProperties/itemProps/itemName").text
-## new_item_name = new_item_name.replace("IDW_Sample_Locations", "Sample_Locations") if "Sample_Locations" in new_item_name else new_item_name
-## onLineSrcs = target_root.findall("./distInfo/distTranOps/onLineSrc")
-## for onLineSrc in onLineSrcs:
-## if onLineSrc.find('./protocol').text == "ESRI REST Service":
-## old_linkage_element = onLineSrc.find('./linkage')
-## old_linkage = old_linkage_element.text
-## #print(old_linkage, flush=True)
-## old_item_name = old_linkage[old_linkage.find("/services/")+len("/services/"):old_linkage.find("/FeatureServer")]
-## new_linkage = old_linkage.replace(old_item_name, f"{new_item_name}_{date_code(project)}")
-## #print(new_linkage, flush=True)
-## old_linkage_element.text = new_linkage
-## #print(old_linkage_element.text, flush=True)
-## del old_linkage_element
-## del old_item_name, old_linkage, new_linkage
-## else:
-## pass
-## del onLineSrc
-## del onLineSrcs, new_item_name
-## #print(etree.tostring(target_root.xpath("./distInfo")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-
- new_item_name = target_root.find("./Esri/DataProperties/itemProps/itemName").text
- if "Sample_Locations" in new_item_name:
- _new_item_name = new_item_name.replace("IDW_Sample_Locations", "Sample_Locations") if "Sample_Locations" in new_item_name else new_item_name
- onLineSrcs = target_root.findall("./distInfo/distTranOps/onLineSrc")
- for onLineSrc in onLineSrcs:
- onLineSrc.find('./protocol').text = "ESRI REST Service"
- old_linkage_element = onLineSrc.find('./linkage')
- old_linkage = old_linkage_element.text
- #print(old_linkage, flush=True)
- old_item_name = old_linkage[old_linkage.find("/services/")+len("/services/"):old_linkage.find("/FeatureServer")]
- if old_item_name != f"{_new_item_name}_{date_code(project)}":
- #print('remove')
- onLineSrc.getparent().remove(onLineSrc)
- else:
- pass
- #print(old_item_name, f"{_new_item_name}_{date_code(project)}")
- #new_linkage = old_linkage.replace(old_item_name, f"{_new_item_name}_{date_code(project)}")
- #print(new_linkage, flush=True)
- #old_linkage_element.text = new_linkage
- #print(old_linkage_element.text, flush=True)
- del old_linkage_element
- del old_item_name, old_linkage #, new_linkage
- #print(etree.tostring(onLineSrc, encoding='UTF-8', method='xml', pretty_print=True).decode())
- #if onLineSrc.find('./protocol').text == "ESRI REST Service":
- # old_linkage_element = onLineSrc.find('./linkage')
- # old_linkage = old_linkage_element.text
- # #print(old_linkage, flush=True)
- # old_item_name = old_linkage[old_linkage.find("/services/")+len("/services/"):old_linkage.find("/FeatureServer")]
- # new_linkage = old_linkage.replace(old_item_name, f"{new_item_name}_{date_code(project)}")
- # #print(new_linkage, flush=True)
- # old_linkage_element.text = new_linkage
- # #print(old_linkage_element.text, flush=True)
- # del old_linkage_element
- # del old_item_name, old_linkage, new_linkage
- #else:
- # pass
- del onLineSrc
- #print(_new_item_name)
- del onLineSrcs, _new_item_name
- else:
- pass
- #print(etree.tostring(target_root.xpath("./distInfo")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
- #print(new_item_name)
- del new_item_name
-
- distInfo = target_root.xpath("./distInfo")
- #print(len(distInfo))
- for dist_Info in distInfo:
- dist_Info[:] = sorted(dist_Info, key=lambda x: distInfo_dict[x.tag])
- #print(etree.tostring(dist_Info, encoding='UTF-8', method='xml', pretty_print=True).decode())
- del dist_Info
- del distInfo
-
- # No changes needed below
- #print(etree.tostring(target_tree, encoding='UTF-8', method='xml', pretty_print=True).decode())
- etree.indent(target_root, space=' ')
- dataset_md_xml = etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
-
- SaveBackXml = True
- if SaveBackXml:
- dataset_md = md.Metadata(dataset_path)
- dataset_md.xml = dataset_md_xml
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- #dataset_md.reload()
- del dataset_md
- else:
- pass
- del SaveBackXml
- del dataset_md_xml
-
- # Declared Varaiables
- del export_folder, project
- del dataset_name
- del distInfo_dict
- del target_tree, target_root
- # Imports
- del etree, StringIO, BytesIO, copy, md
- # Function Parameters
- del dataset_path
- except KeyboardInterrupt:
- raise SystemExit
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def main(project_gdb=""):
- try:
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- print(f"{'-' * 80}")
- print(f"Python Script: {os.path.basename(__file__)}")
- print(f"Location: ..\Documents\ArcGIS\Projects\..\{os.path.basename(os.path.dirname(__file__))}\{os.path.basename(__file__)}")
- print(f"Python Version: {sys.version}")
- print(f"Environment: {os.path.basename(sys.exec_prefix)}")
- print(f"{'-' * 80}\n")
-
- #Imports
- from lxml import etree
- from io import StringIO, BytesIO
- #import copy
- #import arcpy
- from arcpy import metadata as md
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- # Test if passed workspace exists, if not raise SystemExit
- if not arcpy.Exists(project_gdb):
- print(f"{os.path.basename(project_gdb)} is missing!!")
- print(f"{project_gdb}")
-
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = rf"{project_folder}\Scratch"
- #print(project_folder)
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = rf"{scratch_folder}\scratch.gdb"
-
- #metadata_dictionary = dataset_title_dict(project_gdb)
- #for key in metadata_dictionary:
- # print(key, metadata_dictionary[key])
- # del key
-
- datasets = list()
- walk = arcpy.da.Walk(arcpy.env.workspace)
- for dirpath, dirnames, filenames in walk:
- for filename in filenames:
- datasets.append(os.path.join(dirpath, filename))
- del filename
- del dirpath, dirnames, filenames
- del walk
-
- del scratch_folder, project_folder
-
- print(f"Processing: {os.path.basename(arcpy.env.workspace)} in the '{inspect.stack()[0][3]}' function")
-
- # Points
- #for dataset_path in sorted([ds for ds in datasets if ds.endswith("AI_Sample_Locations") or ds.endswith("AI_IDW_Sample_Locations")]):
- #for dataset_path in sorted([ds for ds in datasets if ds.endswith("_Sample_Locations")]):
- #for dataset_path in sorted([ds for ds in datasets if ds.endswith("EBS_Sample_Locations") or ds.endswith("EBS_IDW_Sample_Locations")]):
- # Polylines
- #for dataset_path in sorted([ds for ds in datasets if ds.endswith("AI_Boundary") or ds.endswith("AI_IDW_Boundary")]):
- # Polygons
- #for dataset_path in sorted([ds for ds in datasets if ds.endswith("AI_Region") or ds.endswith("AI_IDW_Region")]):
- # Table
- #for dataset_path in sorted([ds for ds in datasets if ds.endswith("AI_Indicators") or ds.endswith("AI_IDW_Indicators")]):
- #for dataset_path in sorted([ds for ds in datasets if ds.endswith("Indicators")]):
- # Raster
- #for dataset_path in sorted([ds for ds in datasets if ds.endswith("AI_Bathymetry") or ds.endswith("AI_IDW_Bathymetry")]):
- #for dataset_path in sorted([ds for ds in datasets if ds.endswith("AI_Raster_Mask") or ds.endswith("AI_IDW_Raster_Mask")]):
- #for dataset_path in sorted([ds for ds in datasets if ds.endswith("AI_Raster_Mosaic") or ds.endswith("AI_IDW_Mosaic")]):
- #for dataset_path in sorted([ds for ds in datasets if any (ds.endswith(d) for d in ["Datasets", "AI_IDW_Extent_Points", "AI_IDW_Latitude", "AI_IDW_Raster_Mask"])]):
- #for dataset_path in sorted([ds for ds in datasets if "AI_IDW" in os.path.basename(ds)]):
- #for dataset_path in sorted([ds for ds in datasets if "EBS_IDW" in os.path.basename(ds)]):
- #for dataset_path in sorted([ds for ds in datasets if any (ds.endswith(d) for d in ["Species_Filer", "EBS_IDW_Extent_Points", "EBS_IDW_Latitude", "EBS_IDW_Raster_Mask"])]):
- #for dataset_path in sorted([ds for ds in datasets if any (ds.endswith(d) for d in ['SpeciesPersistenceIndicatorNetWTCPUE', 'SpeciesPersistenceIndicatorPercentileWTCPUE', 'Species_Filter', 'DisMAP_Survey_Info'])]):
- for dataset_path in sorted([ds for ds in datasets if any (ds.endswith(d) for d in ['Species_Filter'])]):
-
- # ALL
- #for dataset_path in sorted(datasets):
- #dataset_name = os.path.basename(dataset_path)
- #print(f"Dataset: '{dataset_name}'\n\tType: '{arcpy.Describe(dataset_path).datasetType}'")
- #del dataset_name
-
- ImportBasicTemplateXml = True
- if ImportBasicTemplateXml:
- import_basic_template_xml(dataset_path)
- else:
- pass
- del ImportBasicTemplateXml
-
- BasicMetadataReport = False # Just a report
- if BasicMetadataReport:
- basic_metadata_report(dataset_path)
- else:
- pass
- del BasicMetadataReport
-
- MetadataEsriReport = False
- if MetadataEsriReport:
- metadata_esri_report(dataset_path)
- else:
- pass
- del MetadataEsriReport
-
- MetadataDataIdInfoReport = False
- if MetadataDataIdInfoReport:
- metadata_dataidinfo_report(dataset_path)
- else:
- pass
- del MetadataDataIdInfoReport
-
- MetadataDqInfoReport = False
- if MetadataDqInfoReport:
- metadata_dq_info_report(dataset_path)
- else:
- pass
- del MetadataDqInfoReport
-
- MetadataDistInfoReport = False
- if MetadataDistInfoReport:
- metadata_dist_info_report(dataset_path)
- else:
- pass
- del MetadataDistInfoReport
-
- UpdateEaInfoXmlElements = False
- if UpdateEaInfoXmlElements:
- update_eainfo_xml_elements(dataset_path)
- else:
- pass
- del UpdateEaInfoXmlElements
-
- AddUpdateDates = False
- if AddUpdateDates:
- add_update_dates(dataset_path)
- else:
- pass
- del AddUpdateDates
-
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- # A keeper. Adds entity attribute details, if missing
- InsertMissingElements = False
- if InsertMissingElements:
- insert_missing_elements(dataset_path)
- else:
- pass
- del InsertMissingElements
-
- AddUpdateContacts = False
- if AddUpdateContacts:
- add_update_contacts(dataset_path=dataset_path)
- else:
- pass
- del AddUpdateContacts
-
- CreateFeatureClassLayers = False
- if CreateFeatureClassLayers:
- create_feature_class_layers(dataset_path=dataset_path)
- else:
- pass
- del CreateFeatureClassLayers
-
- PrintTargetTree = False
- if PrintTargetTree:
- dataset_md = md.Metadata(dataset_path)
- #dataset_md.synchronize("ALWAYS")
- #dataset_md.save()
- #dataset_md.reload()
- # Parse the XML
- export_folder = rf"{os.path.dirname(os.path.dirname(dataset_path))}\Export"
- #print(export_folder)
- #_target_tree = etree.parse(StringIO(dataset_md.xml), parser=etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- #etree.indent(_target_tree, " ")
- #_target_tree.write(rf"{export_folder}\{os.path.basename(dataset_path)}.xml", encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
- #print(etree.tostring(_target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- #del _target_tree
- dataset_md.saveAsXML(rf"{export_folder}\{os.path.basename(dataset_path)}.xml", "TEMPLATE")
- del export_folder
- del dataset_md
- else:
- pass
- del PrintTargetTree
- del dataset_path
-
- CompactGDB = False
- if CompactGDB:
- print(f"Compact GDB")
- arcpy.management.Compact(project_gdb)
- print("\t"+arcpy.GetMessages().replace("\n", "\n\t")+"\n")
- else:
- pass
- del CompactGDB
-
- # Declared Varaiables
- del datasets
- # Imports
- del etree, StringIO, BytesIO, md
- # Function Parameters
- del project_gdb
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- print(f"\n{'-' * 80}")
- print(f"Python script: {os.path.basename(__file__)}\nCompleted: {strftime('%a %b %d %I:%M %p', localtime())}")
- print(u"Elapsed Time {0} (H:M:S)".format(strftime("%H:%M:%S", gmtime(elapse_time))))
- print(f"{'-' * 80}")
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
- except KeyboardInterrupt:
- raise SystemExit
- except Exception:
- raise SystemExit
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-if __name__ == '__main__':
- try:
- # Append the location of this scrip to the System Path
- sys.path.append(os.path.dirname(os.path.dirname(__file__)))
- # Imports
- base_project_folder = rf"{os.path.dirname(os.path.dirname(__file__))}"
- #project_name = "April 1 2023"
- #project_name = "July 1 2024"
- project_name = "December 1 2024"
- #project_name = "June 1 2025"
- project_folder = rf"{base_project_folder}\{project_name}"
- project_gdb = rf"{project_folder}\{project_name}.gdb"
-
- main(project_gdb=project_gdb)
-
- # Declared Variables
- #del collective_title
- del project_gdb, project_name, project_folder, base_project_folder
- # Imports
- except:
- traceback.print_exc()
- else:
- pass
- finally:
- pass
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dev_dismap_metadata_processing.zip b/ArcGIS-Analysis-Python/Scripts/dismap_tools/dev_dismap_metadata_processing.zip
deleted file mode 100644
index add74d7..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dev_dismap_metadata_processing.zip and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dev_dismap_tiff_image_archive.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/dev_dismap_tiff_image_archive.py
deleted file mode 100644
index f63bc8d..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dev_dismap_tiff_image_archive.py
+++ /dev/null
@@ -1,159 +0,0 @@
-#---------------------------------------------------------------------------------------
-# Name: module1
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 22/12/2025
-# Copyright: (c) john.f.kennedy 2025
-# Licence:
-#---------------------------------------------------------------------------------------
-import zipfile
-import os
-import sys
-import traceback
-import inspect
-
-import arcpy
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- filename = sys.path[0] + os.sep + "test.py"
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def zip_folder(folder_path="", archive_folder=""):
- """
- Creates a zip archive of a given folder and its contents.
-
- Args:
- folder_path (str): The path to the folder to be archived.
- """
- try:
- output_zip_path = rf"{archive_folder}\{os.path.basename(folder_path)}.zip"
- #arcpy.AddMessage(output_zip_path)
- arcpy.AddMessage(f"\t\t\t\t../{'/'.join(output_zip_path.split(os.sep)[-3:])}")
-
- with zipfile.ZipFile(output_zip_path, 'w', zipfile.ZIP_DEFLATED) as zipf:
- for root, dirs, files in os.walk(folder_path):
- for file in files:
- file_path = os.path.join(root, file)
- # Calculate the relative path within the zip archive
- arcname = os.path.relpath(file_path, folder_path)
- #arcpy.AddMessage(arcname)
- zipf.write(file_path, arcname)
- for dir_name in dirs:
- # Add empty directories to the archive
- dir_path = os.path.join(root, dir_name)
- arcname = os.path.relpath(dir_path, folder_path)
- #arcpy.AddMessage(arcname)
- # Ensure directory entries end with a slash in the archive
- if not arcname.endswith('/'):
- arcname += '/'
- zipf.writestr(zipfile.ZipInfo(arcname), '')
-
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except:# noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- sys.exit()
- return False
- else:
- return True
-
-def main(base_folder="", versions="", archive_folder=""):
- try:
- import dismap_tools
- arcpy.AddMessage(f"Home Folder: {os.path.basename(base_folder)} in '{inspect.stack()[0][3]}'")
- arcpy.AddMessage(f"Versions: {', '.join(versions)} in '{inspect.stack()[0][3]}'")
-
- for version in versions:
- image_folder = rf"{base_folder}\{version}\Images"
- _archive_folder = os.path.join(archive_folder, f"DisMAP_{dismap_tools.date_code(version)}", "results\\raster")
- #arcpy.AddMessage(f"\tImage Folder: {os.path.basename(image_folder)} in '{inspect.stack()[0][3]}'")
- arcpy.AddMessage(f"\tImage Folder: {os.path.basename(image_folder)}")
- arcpy.AddMessage(f"\t\tArchive Folder: {os.path.basename(_archive_folder)}")
-
- for entry in os.scandir(image_folder):
- if entry.is_dir():
- arcpy.AddMessage(f"\t\t\tInput Folder: {os.path.basename(entry.path)}")
- zip_folder(entry.path, _archive_folder)
- else:
- pass
- del entry
- del image_folder, version, _archive_folder
-
- # Delete Declared Varibales
- # Delete Functions Parameters
- del base_folder, versions, archive_folder
- # Imports
- del dismap_tools
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except:# noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-if __name__ == '__main__':
- try:
- base_folder = arcpy.GetParameterAsText(0)
- versions = arcpy.GetParameterAsText(1)
- archive_folder = arcpy.GetParameterAsText(2)
-
- if not base_folder:
- base_folder = rf"{os.path.expanduser('~')}\Documents\ArcGIS\Projects\DisMap\ArcGIS-Analysis-Python"
- else:
- arcpy.AddMessage(f"Home Folder: {os.path.basename(base_folder)}")
-
- if not versions:
- #versions = ["April 1 2023", "July 1 2024", "August 1 2025",]
- #versions = ["April 1 2023"]
- versions = ["February 1 2026"]
- else:
- arcpy.AddMessage(f"Versions: {', '.join(versions)}")
-
- if not archive_folder:
- archive_folder = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMap\\ArcGIS-Analysis-Python\\NCEI Archive")
- else:
- arcpy.AddMessage(f"Home Folder: {os.path.basename(base_folder)}")
-
- result = main(base_folder=base_folder, versions=versions, archive_folder=archive_folder)
-
- if result:
- arcpy.SetParameterAsText(3, result)
- del result
-
- # Clean-up declared variables
- del base_folder, versions, archive_folder
-
- except: # noqa: E722
- traceback.print_exc()
- else:
- pass
- finally:
- sys.exit()
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dev_dismap_vector_archive.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/dev_dismap_vector_archive.py
deleted file mode 100644
index 8bf7d3b..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dev_dismap_vector_archive.py
+++ /dev/null
@@ -1,236 +0,0 @@
-#---------------------------------------------------------------------------------------
-# Name: module1
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 22/12/2025
-# Copyright: (c) john.f.kennedy 2025
-# Licence:
-#---------------------------------------------------------------------------------------
-import zipfile
-import os
-import inspect
-
-import arcpy
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- filename = sys.path[0] + os.sep + "test.py"
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def dis_map_archive_folders(home_folder="", versions="", archive_folder=""):
- try:
- import dismap_tools
-
- arcpy.env.overwriteOutput = True
-
- #arcpy.AddMessage(f"Home Folder: {os.path.basename(home_folder)} in '{inspect.stack()[0][3]}'")
- #arcpy.AddMessage(f"Versions: {', '.join(versions)} in '{inspect.stack()[0][3]}'")
-
- for version in versions:
- project_gdb = rf"{home_folder}\{version}\{version}.gdb"
- _archive_folder = os.path.join(archive_folder, f"DisMAP_{dismap_tools.date_code(version)}")
- #archive_gdb = rf"{_archive_folder}\DisMAP_{dismap_tools.date_code(version)}.gpkg"
-
- archive_folders = ["initial", "results/vector-tabular/metadata", "results/raster"]
-
- #arcpy.AddMessage(f"\tProject GDB: {os.path.basename(project_gdb)} in '{inspect.stack()[0][3]}'")
- #arcpy.AddMessage(f"\tProject GDB: {project_gdb}")
- #arcpy.AddMessage(f"\t\tArchive Folder: {_archive_folder}")
- for archiveFolder in archive_folders:
- archiveFolder_path = os.path.abspath(os.path.join(archive_folder, f"DisMAP_{dismap_tools.date_code(version)}", archiveFolder))
- #arcpy.AddMessage(f"\t\t\tFolder: {archiveFolder_path}")
- if not os.path.isdir(archiveFolder_path):
- os.makedirs(archiveFolder_path)
- else:
- pass
- pass
-
- del archiveFolder_path, archiveFolder
- del archive_folders
-
- del project_gdb, _archive_folder
- del version
-
- # Delete Declared Varibales
- # Delete Functions Parameters
- del home_folder, versions, archive_folder
- # Imports
- del dismap_tools
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except:# noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def zip_folder(folder_path="", archive_folder=""):
- """
- Creates a zip archive of a given folder and its contents.
-
- Args:
- folder_path (str): The path to the folder to be archived.
- """
- output_zip_path = rf"{archive_folder}\{os.path.basename(folder_path)}.zip"
-
- with zipfile.ZipFile(output_zip_path, 'w', zipfile.ZIP_DEFLATED) as zipf:
- for root, dirs, files in os.walk(folder_path):
- for file in files:
- file_path = os.path.join(root, file)
- # Calculate the relative path within the zip archive
- arcname = os.path.relpath(file_path, folder_path)
- #arcpy.AddMessage(arcname)
- zipf.write(file_path, arcname)
- for dir_name in dirs:
- # Add empty directories to the archive
- dir_path = os.path.join(root, dir_name)
- arcname = os.path.relpath(dir_path, folder_path)
- #arcpy.AddMessage(arcname)
- # Ensure directory entries end with a slash in the archive
- if not arcname.endswith('/'):
- arcname += '/'
- zipf.writestr(zipfile.ZipInfo(arcname), '')
-
-
-def main(home_folder="", versions="", archive_folder=""):
- try:
- import dismap_tools
- from arcpy import metadata as md
-
- arcpy.env.overwriteOutput = True
-
- dis_map_archive_folders(home_folder=home_folder, versions=versions, archive_folder=archive_folder)
-
- #archive_folders = ["initial", "results/vector-tabular/metadata", "results/raster"]
- #archiveFolder_path = os.path.abspath(os.path.join(archive_folder, f"DisMAP_{dismap_tools.date_code(version)}", archiveFolder))
-
- arcpy.AddMessage(f"Home Folder: {os.path.basename(home_folder)} in '{inspect.stack()[0][3]}'")
- arcpy.AddMessage(f"Versions: {', '.join(versions)} in '{inspect.stack()[0][3]}'")
-
- for version in versions:
- project_gdb = rf"{home_folder}\{version}\{version}.gdb"
- _archive_folder = os.path.abspath(os.path.join(archive_folder, f"DisMAP_{dismap_tools.date_code(version)}", "results/vector-tabular"))
- archive_gdb = os.path.abspath(rf"{_archive_folder}\DisMAP_{dismap_tools.date_code(version)}.gpkg")
-
- #arcpy.AddMessage(f"\tProject GDB: {os.path.basename(project_gdb)} in '{inspect.stack()[0][3]}'")
- arcpy.AddMessage(f"\tProject GDB: {os.path.basename(project_gdb)}")
- arcpy.AddMessage(f"\t\tArchive Folder: {os.path.basename(_archive_folder)}")
-
- arcpy.env.workspace = project_gdb
-
- arcpy.management.CreateSQLiteDatabase(out_database_name=archive_gdb, spatial_type="GEOPACKAGE")
-
- archive_tbs = [
- "DisMAP_Survey_Info",
- "Indicators",
- "SpeciesPersistenceIndicatorPercentileBin",
- "SpeciesPersistenceIndicatorTrend",
- "Species_Filter",
- ]
- # fc_md.exportMetadata("C:\\Users\\john.f.kennedy\\Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\NCEI Archive\fc_md.xml", "ISO19139_GML32", 'REMOVE_ALL_SENSITIVE_INFO')
- for tb in sorted([tb for tb in arcpy.ListTables("*") if tb in archive_tbs or tb.endswith("_IDW")]):
- arcpy.AddMessage(f"\t\t\tTable: {tb}")
- arcpy.management.Copy(rf"{project_gdb}\{tb}", rf"{archive_gdb}\{tb}")
- tb_md = md.Metadata(rf"{project_gdb}\{tb}")
- tb_md.exportMetadata(os.path.abspath(os.path.join(archive_folder, f"DisMAP_{dismap_tools.date_code(version)}", f"results/vector-tabular/metadata/{tb}.xml")), "ISO19139", "REMOVE_ALL_SENSITIVE_INFO")
- del tb_md
-
- del tb
- del archive_tbs
-
- archive_fcs = [
- "Regions",
- "Sample_Locations",
- ]
-
- for fc in sorted([fc for fc in arcpy.ListFeatureClasses("*") if any(fc.endswith(f"{f}") for f in archive_fcs)]):
- arcpy.AddMessage(f"\t\t\tFeature Class: {fc}")
- arcpy.management.Copy(rf"{project_gdb}\{fc}", rf"{archive_gdb}\{fc}")
- fc_md = md.Metadata(rf"{project_gdb}\{fc}")
- fc_md.exportMetadata(os.path.abspath(os.path.join(archive_folder, f"DisMAP_{dismap_tools.date_code(version)}", f"results/vector-tabular/metadata/{fc}.xml")), "ISO19139", "REMOVE_ALL_SENSITIVE_INFO")
- del fc_md
-
- del fc
-
- del project_gdb, _archive_folder, archive_gdb
- del version
-
- # Delete Declared Varibales
- # Delete Functions Parameters
- del home_folder, versions, archive_folder
- # Imports
- del dismap_tools, md
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except:# noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-if __name__ == '__main__':
- try:
- home_folder = arcpy.GetParameterAsText(0)
- versions = arcpy.GetParameterAsText(1)
- archive_folder = arcpy.GetParameterAsText(2)
-
- if not home_folder:
- home_folder = rf"{os.path.expanduser('~')}\Documents\ArcGIS\Projects\DisMap\ArcGIS-Analysis-Python"
- else:
- arcpy.AddMessage(f"Home Folder: {os.path.basename(home_folder)}")
-
- if not versions:
- versions = ["April 1 2023", "July 1 2024", "August 1 2025",]
- #versions = ["July 1 2024", "August 1 2025",]
- else:
- arcpy.AddMessage(f"Versions: {', '.join(versions)}")
-
- if not archive_folder:
- archive_folder = rf"{os.path.expanduser('~')}\Documents\ArcGIS\Projects\DisMap\ArcGIS-Analysis-Python\NCEI Archive"
- else:
- arcpy.AddMessage(f"Home Folder: {os.path.basename(home_folder)}")
-
- result = main(home_folder=home_folder, versions=versions, archive_folder=archive_folder)
-
- if result:
- arcpy.SetParameterAsText(3, result)
- else:
- pass
- del result
-
- # Clean-up declared variables
- del home_folder, versions, archive_folder
-
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- else:
- pass
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dev_export_arcgis_metadata.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/dev_export_arcgis_metadata.py
deleted file mode 100644
index 86a4184..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dev_export_arcgis_metadata.py
+++ /dev/null
@@ -1,180 +0,0 @@
-"""
-This module contains . . .
-
-Requires : Python 3.11
- ArcGIS Pro 3.x
-
-Copyright 2025 NMFS
-Licensed under the Apache License, Version 2.0 (the 'License');
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an 'AS IS' BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-"""
-# Python Built-in's modules are loaded first
-import os, sys
-import traceback, inspect
-
-def export_metadata(project_gdb="", metadata_workspace=""):
- try:
- # Imports
- # Third-party modules are loaded second
- import arcpy
- from arcpy import metadata as md
- import dev_create_folders
-
- # Project modules
- from src.project_tools import pretty_format_xml_file
-
- # Use all of the cores on the machine
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.env.overwriteOutput = True
-
- # Define variables
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = rf"{project_folder}\Scratch"
- scratch_gdb = rf"{scratch_folder}\scratch.gdb"
-
- # Set the workspace environment to local file geodatabase
- arcpy.env.workspace = project_gdb
- # Set the scratchWorkspace environment to local file geodatabase
- arcpy.env.scratchWorkspace = scratch_gdb
-
- # Clean-up variables
- del scratch_folder, scratch_gdb
-
- print(f"\n{'--Start' * 10}--\n")
-
- if not os.path.isdir(rf"{project_folder}\{metadata_workspace}"):
- dev_create_folders.create_folders(project_folder, [metadata_workspace])
-
- fcs = arcpy.ListFeatureClasses()
-
- print(f"Synchronize and export feature classes metadata from Project GDB\n")
- for fc in sorted(fcs):
- print(f"Exporting the metadata record for: '{fc}'")
-
- fc_path = rf"{project_gdb}\{fc}"
-
- export_xml_metadata_path = rf"{project_folder}\{metadata_workspace}\{fc}.xml"
-
- dataset_md = md.Metadata(fc_path)
- dataset_md.synchronize("ALWAYS")
- dataset_md.title = fc
- dataset_md.save()
- dataset_md.reload()
- dataset_md.saveAsXML(export_xml_metadata_path, "REMOVE_ALL_SENSITIVE_INFO")
- #if dataset_md.thumbnailUri:
- # arcpy.management.Copy(dataset_md.thumbnailUri, rf"{metadata_workspace}\{fc} Thumbnail.jpg")
- # arcpy.management.Copy(dataset_md.thumbnailUri, rf"{metadata_workspace}\{fc} Browse Graphic.jpg")
-
- del dataset_md
-
- if os.path.isfile(export_xml_metadata_path):
- pretty_format_xml_file(export_xml_metadata_path)
- else:
- print(F"Problem with '{os.path.basename(export_xml_metadata_path)}'")
-
- del export_xml_metadata_path
- del fc, fc_path
-
- del fcs
- del project_folder
-
- print(f"\n{'--End' * 10}--")
-
- # Imports
- del md, pretty_format_xml_file, dev_create_folders
- # Function parameters
- del project_gdb, metadata_workspace
-
- except:
- traceback.print_exc()
- else:
- # Cleanup
- arcpy.management.ClearWorkspaceCache()
- # Imports
- del arcpy
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def main(project_gdb="", metadata_workspace=""):
- try:
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- print(f"{'-' * 80}")
- print(f"Python Script: {os.path.basename(__file__)}")
- print(f"Location: {os.path.dirname(__file__)}")
- print(f"Python Version: {sys.version} Environment: {os.path.basename(sys.exec_prefix)}")
- print(f"{'-' * 80}\n")
-
- export_metadata(project_gdb=project_gdb, metadata_workspace=metadata_workspace)
-
- # Declared Variables
-
- # Function parameters
- del project_gdb, metadata_workspace
-
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- print(f"\n{'-' * 80}")
- print(f"Python script: {os.path.basename(__file__)} successfully completed {strftime('%a %b %d %I:%M %p', localtime())}")
- print(u"Elapsed Time {0} (H:M:S)".format(strftime("%H:%M:%S", gmtime(elapse_time))))
- print(f"{'-' * 80}")
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-if __name__ == '__main__':
- try:
- # Imports
- from datetime import date
-
- # Append the location of this scrip to the System Path
- #sys.path.append(os.path.dirname(__file__))
- sys.path.append(os.path.dirname(os.path.dirname(__file__)))
-
- today = date.today()
- date_string = today.strftime("%Y-%m-%d")
-
- project_folder = rf"{os.path.dirname(os.path.dirname(__file__))}"
- project_name = "National Mapper"
- #project_name = "NMFS_ESA_Range"
- project_gdb = rf"{project_folder}\{project_name}.gdb"
- metadata_workspace = f"Export"
- #metadata_workspace = f"Export {date_string}"
- #metadata_workspace = f"Export 2025-01-27"
-
- main(project_gdb=project_gdb, metadata_workspace=metadata_workspace)
-
- # Declared Variables
- del project_folder, project_name, project_gdb, metadata_workspace
- del today, date_string
- # Imports
- del date
-
- except:
- traceback.print_exc()
- else:
- pass
- finally:
- pass
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dismap_base_project_setup.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/dismap_base_project_setup.py
deleted file mode 100644
index e957039..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dismap_base_project_setup.py
+++ /dev/null
@@ -1,115 +0,0 @@
-# -*- coding: utf-8 -*-
-# -------------------------------------------------------------------------------
-# Name: dismap.py
-# Purpose: Common DisMAP functions
-#
-# Author: john.f.kennedy
-#
-# Created: 12/01/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-# -------------------------------------------------------------------------------
-import os
-import sys # built-ins first
-
-import arcpy # third-parties second # noqa: F401
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- filename = sys.path[0] + os.sep + "test.py"
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def script_tool(base_project_folder="", base_project_folders=""):
- try:
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- #arcpy.AddMessage(f"Location: ../{'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
- arcpy.AddMessage(base_project_folder)
-
- arcpy.env.workspace = base_project_folder
-
- #for folder in arcpy.ListWorkspaces("*", "Folder"):
- # arcpy.AddMessage(os.path.basename(folder))
- # del folder
-
- for project_folder in base_project_folders.split(";"):
- project_folder_path = os.path.abspath(os.path.join(base_project_folder, f"{project_folder}"))
- if not os.path.isdir(project_folder_path):
- os.makedirs(project_folder_path)
- else:
- pass
- del project_folder_path
- del project_folder
-
- # Set varaibales
-
- # Declared Varaiables
- # Imports
- # Function Parameters
- del base_project_folder, base_project_folders
-
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}\nCompleted: {strftime('%a %b %d %I:%M %p', localtime())}")
- arcpy.AddMessage(u"Elapsed Time {0} (H:M:S)".format(strftime("%H:%M:%S", gmtime(elapse_time))))
- arcpy.AddMessage(f"{'-' * 80}")
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except:# noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-if __name__ == '__main__':
- try:
- base_project_folder = arcpy.GetParameterAsText(0)
- base_project_folders = arcpy.GetParameterAsText(1)
-
- if not base_project_folder:
- base_project_folder = rf"{os.path.expanduser('~')}\Documents\ArcGIS\Projects\DisMap\ArcGIS-Analysis-Python"
- else:
- pass
-
- if not base_project_folders:
- base_project_folders = "Bathymetry;Dataset Shapefiles;Initial Data"
- else:
- pass
-
- script_tool(base_project_folder, base_project_folders)
- arcpy.SetParameterAsText(3, "Result")
-
- del base_project_folder, base_project_folders
-
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- else:
- pass
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dismap_metadata_processing.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/dismap_metadata_processing.py
deleted file mode 100644
index 7ef469c..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dismap_metadata_processing.py
+++ /dev/null
@@ -1,2560 +0,0 @@
-# -*- coding: utf-8 -*-
-# -------------------------------------------------------------------------------
-# Name: module1
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 03/03/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-# -------------------------------------------------------------------------------
-import os, sys # built-ins first
-import traceback
-import importlib
-import inspect
-
-import arcpy # third-parties second
-
-sys.path.append(os.path.dirname(__file__))
-
-def line_info(msg):
- f = inspect.currentframe()
- i = inspect.getframeinfo(f.f_back)
- return f"Script: {os.path.basename(i.filename)}\n\tNear Line: {i.lineno}\n\tFunction: {i.function}\n\tMessage: {msg}"
-
-def create_basic_template_xml_files(base_project_file="", project=""):
- try:
- # Import
- from arcpy import metadata as md
-
- import dismap
- importlib.reload(dismap)
- from dismap import dataset_title_dict, pretty_format_xml_file
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2)
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- base_project_folder = rf"{os.path.dirname(base_project_file)}"
- base_project_file = rf"{base_project_folder}\DisMAP.aprx"
- project_folder = rf"{base_project_folder}\{project}"
- project_gdb = rf"{project_folder}\{project}.gdb"
- metadata_folder = rf"{project_folder}\Template Metadata"
- crfs_folder = rf"{project_folder}\CRFs"
- scratch_folder = rf"{project_folder}\Scratch"
-
- metadata_dictionary = dataset_title_dict(project_gdb)
-
- workspaces = [project_gdb, crfs_folder]
-
- for workspace in workspaces:
-
- arcpy.env.workspace = workspace
- arcpy.env.scratchWorkspace = rf"{scratch_folder}\scratch.gdb"
-
- datasets = list()
-
- walk = arcpy.da.Walk(workspace)
-
- for dirpath, dirnames, filenames in walk:
- for filename in filenames:
- datasets.append(os.path.join(dirpath, filename))
- del filename
- del dirpath, dirnames, filenames
- del walk
-
- for dataset_path in sorted(datasets):
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
-
- print(f"Dataset Name: {dataset_name}")
-
- if "Datasets" == dataset_name:
-
- print(f"\tDataset Table")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- datasets_table_template = rf"{metadata_folder}\datasets_table_template.xml"
- dataset_md.saveAsXML(datasets_table_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(datasets_table_template)
- del datasets_table_template
-
- del dataset_md
-
- elif "Species_Filter" == dataset_name:
-
- print(f"\tSpecies Filter Table")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- species_filter_table_template = rf"{metadata_folder}\species_filter_table_template.xml"
- dataset_md.saveAsXML(species_filter_table_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(species_filter_table_template)
- del species_filter_table_template
-
- del dataset_md
-
- elif "Indicators" in dataset_name:
-
- print(f"\tIndicators")
-
- if dataset_name == "Indicators":
- dataset_name = f"{dataset_name}_Table"
- else:
- pass
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- indicators_template = rf"{metadata_folder}\indicators_template.xml"
- dataset_md.saveAsXML(indicators_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(indicators_template)
- del indicators_template
-
- del dataset_md
-
- elif "LayerSpeciesYearImageName" in dataset_name:
-
- print(f"\tLayer Species Year Image Name")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- layer_species_year_image_name_template = rf"{metadata_folder}\layer_species_year_image_name_template.xml"
- dataset_md.saveAsXML(layer_species_year_image_name_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(layer_species_year_image_name_template)
- del layer_species_year_image_name_template
-
- del dataset_md
-
- elif dataset_name.endswith("Boundary"):
-
- print(f"\tBoundary")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- boundary_template = rf"{metadata_folder}\boundary_template.xml"
- dataset_md.saveAsXML(boundary_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(boundary_template)
- del boundary_template
-
- del dataset_md
-
- elif dataset_name.endswith("Extent_Points"):
-
- print(f"\tExtent_Points")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- extent_points_template = rf"{metadata_folder}\extent_points_template.xml"
- dataset_md.saveAsXML(extent_points_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(extent_points_template)
- del extent_points_template
-
- del dataset_md
-
- elif dataset_name.endswith("Fishnet"):
-
- print(f"\tFishnet")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- fishnet_template = rf"{metadata_folder}\fishnet_template.xml"
- dataset_md.saveAsXML(fishnet_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(fishnet_template)
- del fishnet_template
-
- del dataset_md
-
- elif dataset_name.endswith("Lat_Long"):
-
- print(f"\tLat_Long")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- lat_long_template = rf"{metadata_folder}\lat_long_template.xml"
- dataset_md.saveAsXML(lat_long_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(lat_long_template)
- del lat_long_template
-
- del dataset_md
-
- elif dataset_name.endswith("Region"):
-
- print(f"\tRegion")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- region_template = rf"{metadata_folder}\region_template.xml"
- dataset_md.saveAsXML(region_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(region_template)
- del region_template
-
- del dataset_md
-
- elif dataset_name.endswith("Sample_Locations"):
-
- print(f"\tSample_Locations")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- sample_locations_template = rf"{metadata_folder}\sample_locations_template.xml"
- dataset_md.saveAsXML(sample_locations_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(sample_locations_template)
- del sample_locations_template
-
- del dataset_md
-
- elif dataset_name.endswith("GRID_Points"):
-
- print(f"\tGRID_Points")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- grid_points_template = rf"{metadata_folder}\grid_points_template.xml"
- dataset_md.saveAsXML(grid_points_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(grid_points_template)
- del grid_points_template
-
- del dataset_md
-
- elif "DisMAP_Regions" == dataset_name:
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- dismap_regions_template = rf"{metadata_folder}\dismap_regions_template.xml"
- dataset_md.saveAsXML(dismap_regions_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(dismap_regions_template)
- del dismap_regions_template
-
- del dataset_md
-
- elif dataset_name.endswith("Bathymetry"):
-
- print(f"\tBathymetry")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- bathymetry_template = rf"{metadata_folder}\bathymetry_template.xml"
- dataset_md.saveAsXML(bathymetry_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(bathymetry_template)
- del bathymetry_template
-
- del dataset_md
-
- elif dataset_name.endswith("Latitude"):
-
- print(f"\tLatitude")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- latitude_template = rf"{metadata_folder}\latitude_template.xml"
- dataset_md.saveAsXML(latitude_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(latitude_template)
- del latitude_template
-
- del dataset_md
-
- elif dataset_name.endswith("Longitude"):
-
- print(f"\tLongitude")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- longitude_template = rf"{metadata_folder}\longitude_template.xml"
- dataset_md.saveAsXML(longitude_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(longitude_template)
- del longitude_template
-
- del dataset_md
-
- elif dataset_name.endswith("Raster_Mask"):
-
- print(f"\tRaster_Mask")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- raster_mask_template = rf"{metadata_folder}\raster_mask_template.xml"
- dataset_md.saveAsXML(raster_mask_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(raster_mask_template)
- del raster_mask_template
-
- del dataset_md
-
- elif dataset_name.endswith("Mosaic"):
-
- print(f"\tMosaic")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- mosaic_template = rf"{metadata_folder}\mosaic_template.xml"
- dataset_md.saveAsXML(mosaic_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(mosaic_template)
- del mosaic_template
-
- del dataset_md
-
- elif dataset_name.endswith(".crf"):
-
- print(f"\tCRF")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- crf_template = rf"{metadata_folder}\crf_template.xml"
- dataset_md.saveAsXML(crf_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(crf_template)
- del crf_template
-
- del dataset_md
-
- else:
- print(f"\tRegion Table")
-
- if dataset_name.endswith("IDW"):
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[f"{dataset_name}"]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[f"{dataset_name}"]["Tags"]
- dataset_md.summary = metadata_dictionary[f"{dataset_name}"]["Summary"]
- dataset_md.description = metadata_dictionary[f"{dataset_name}"]["Description"]
- dataset_md.credits = metadata_dictionary[f"{dataset_name}"]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[f"{dataset_name}"]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- idw_region_table_template = rf"{metadata_folder}\idw_region_table_template.xml"
- dataset_md.saveAsXML(idw_region_table_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(idw_region_table_template)
- del idw_region_table_template
-
- del dataset_md
-
- elif dataset_name.endswith("GLMME"):
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[f"{dataset_name}"]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[f"{dataset_name}"]["Tags"]
- dataset_md.summary = metadata_dictionary[f"{dataset_name}"]["Summary"]
- dataset_md.description = metadata_dictionary[f"{dataset_name}"]["Description"]
- dataset_md.credits = metadata_dictionary[f"{dataset_name}"]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[f"{dataset_name}"]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- glmme_region_table_template = rf"{metadata_folder}\glmme_region_table_template.xml"
- dataset_md.saveAsXML(glmme_region_table_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(glmme_region_table_template)
- del glmme_region_table_template
-
- del dataset_md
-
- else:
- pass
-
- del dataset_name, dataset_path
-
- del workspace
-
-
- del datasets
-
- # Declared Variables set in function
- del project_gdb, base_project_folder, metadata_folder
- del project_folder, scratch_folder, crfs_folder
- del metadata_dictionary, workspaces
-
- # Imports
- del dismap, dataset_title_dict, pretty_format_xml_file
- del md
-
- # Function Parameters
- del base_project_file, project
-
- except KeyboardInterrupt:
- raise SystemExit
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(str(traceback.print_exc()) + arcpy.GetMessages())
- except arcpy.ExecuteError:
- arcpy.AddError(str(traceback.print_exc()) + arcpy.GetMessages())
- except Exception:
- traceback.print_exc()
- except:
- traceback.print_exc()
- else:
- try:
- leave_out_keys = ["leave_out_keys", "results"]
- remaining_keys = [key for key in locals().keys() if not key.startswith('__') and key not in leave_out_keys]
- if remaining_keys:
- arcpy.AddWarning(f"Remaining Keys in '{inspect.stack()[0][3]}': ##--> '{', '.join(remaining_keys)}' <--## Line Number: {traceback.extract_stack()[-1].lineno}")
- del leave_out_keys, remaining_keys
- return results if "results" in locals().keys() else ["NOTE!! The 'results' variable not yet set!!"]
- except:
- raise Exception(traceback.print_exc())
- finally:
- if "results" in locals().keys(): del results
-
-def import_basic_template_xml_files(base_project_file="", project=""):
- try:
- # Import
- from arcpy import metadata as md
-
- import dismap
- importlib.reload(dismap)
- from dismap import dataset_title_dict, pretty_format_xml_file, unique_years
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2)
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- base_project_folder = rf"{os.path.dirname(base_project_file)}"
- project_folder = rf"{base_project_folder}\{project}"
- project_gdb = rf"{project_folder}\{project}.gdb"
- current_md_folder = rf"{project_folder}\Current Metadata"
- inport_md_folder = rf"{project_folder}\InPort Metadata"
- crfs_folder = rf"{project_folder}\CRFs"
- scratch_folder = rf"{project_folder}\Scratch"
-
- #print("Creating the Metadata Dictionary. Please wait!!")
- metadata_dictionary = dataset_title_dict(project_gdb)
- #print("Creating the Metadata Dictionary. Completed")
-
- workspaces = [project_gdb, crfs_folder]
- #workspaces = [crfs_folder]
-
- for workspace in workspaces:
-
- arcpy.env.workspace = workspace
- arcpy.env.scratchWorkspace = rf"{scratch_folder}\scratch.gdb"
-
- datasets = list()
-
- walk = arcpy.da.Walk(workspace)
-
- for dirpath, dirnames, filenames in walk:
- for filename in filenames:
- datasets.append(os.path.join(dirpath, filename))
- del filename
- del dirpath, dirnames, filenames
- del walk
-
- for dataset_path in sorted(datasets):
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
-
- print(f"Dataset Name: {dataset_name}")
-
- if "Datasets" == dataset_name:
-
- print(f"\tDataset Table")
-
- datasets_table_template = rf"{current_md_folder}\Table\datasets_table_template.xml"
- template_md = md.Metadata(datasets_table_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- #dataset_md.importMetadata(datasets_table_template)
- dataset_md.save()
- #dataset_md.synchronize("SELECTIVE")
-
- del empty_md, template_md, datasets_table_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Table\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif "Species_Filter" == dataset_name:
-
- print(f"\tSpecies Filter Table")
-
- species_filter_table_template = rf"{current_md_folder}\Table\species_filter_table_template.xml"
- template_md = md.Metadata(species_filter_table_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, species_filter_table_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Table\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif "Indicators" in dataset_name:
-
- print(f"\tIndicators")
-
- if dataset_name == "Indicators":
- indicators_template = rf"{current_md_folder}\Table\indicators_template.xml"
- else:
- indicators_template = rf"{current_md_folder}\Table\region_indicators_template.xml"
-
- template_md = md.Metadata(indicators_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, indicators_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path)
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- #print(metadata_dictionary[dataset_name]["Tags"])
- #print(_tags)
-
- if dataset_name == "Indicators":
- dataset_name = f"{dataset_name}_Table"
- else:
- pass
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Table\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- elif "LayerSpeciesYearImageName" in dataset_name:
-
- print(f"\tLayer Species Year Image Name")
-
- layer_species_year_image_name_template = rf"{current_md_folder}\Table\layer_species_year_image_name_template.xml"
- template_md = md.Metadata(layer_species_year_image_name_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, layer_species_year_image_name_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path)
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Table\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- elif dataset_name.endswith("Boundary"):
-
- print(f"\tBoundary")
-
- boundary_template = rf"{current_md_folder}\Boundary\boundary_template.xml"
- template_md = md.Metadata(boundary_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, boundary_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Boundary\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Boundary\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Extent_Points"):
-
- print(f"\tExtent_Points")
-
- extent_points_template = rf"{current_md_folder}\Extent_Points\extent_points_template.xml"
- template_md = md.Metadata(extent_points_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, extent_points_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Extent_Points\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Extent_Points\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Fishnet"):
-
- print(f"\tFishnet")
-
- fishnet_template = rf"{current_md_folder}\Fishnet\fishnet_template.xml"
- template_md = md.Metadata(fishnet_template)
-
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, fishnet_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Fishnet\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Fishnet\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Lat_Long"):
-
- print(f"\tLat_Long")
-
- lat_long_template = rf"{current_md_folder}\Lat_Long\lat_long_template.xml"
- template_md = md.Metadata(lat_long_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, lat_long_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Lat_Long\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Lat_Long\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Region"):
-
- print(f"\tRegion")
-
- region_template = rf"{current_md_folder}\Region\region_template.xml"
- template_md = md.Metadata(region_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, region_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Region\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Region\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Sample_Locations"):
-
- print(f"\tSample_Locations")
-
- sample_locations_template = rf"{current_md_folder}\Sample_Locations\sample_locations_template.xml"
- template_md = md.Metadata(sample_locations_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, sample_locations_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path)
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Sample_Locations\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Sample_Locations\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- elif dataset_name.endswith("GRID_Points"):
-
- print(f"\tGRID_Points")
-
- grid_points_template = rf"{current_md_folder}\GRID_Points\grid_points_template.xml"
- template_md = md.Metadata(grid_points_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, grid_points_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path)
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\GRID_Points\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\GRID_Points\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- elif "DisMAP_Regions" == dataset_name:
-
- print(f"\tDisMAP_Regions")
-
- dismap_regions_template = rf"{current_md_folder}\Region\dismap_regions_template.xml"
- template_md = md.Metadata(dismap_regions_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, dismap_regions_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Region\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Region\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Bathymetry"):
-
- print(f"\tBathymetry")
-
- bathymetry_template = rf"{current_md_folder}\Bathymetry\bathymetry_template.xml"
- template_md = md.Metadata(bathymetry_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, bathymetry_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Bathymetry\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Bathymetry\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Latitude"):
-
- print(f"\tLatitude")
-
- latitude_template = rf"{current_md_folder}\Latitude\latitude_template.xml"
- template_md = md.Metadata(latitude_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, latitude_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Latitude\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Latitude\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Longitude"):
-
- print(f"\tLongitude")
-
- longitude_template = rf"{current_md_folder}\Longitude\longitude_template.xml"
- template_md = md.Metadata(longitude_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, longitude_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Longitude\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Longitude\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Raster_Mask"):
-
- print(f"\tRaster_Mask")
-
- raster_mask_template = rf"{current_md_folder}\Raster_Mask\raster_mask_template.xml"
- template_md = md.Metadata(raster_mask_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, raster_mask_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Raster_Mask\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Raster_Mask\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Mosaic"):
-
- print(f"\tMosaic")
-
- mosaic_template = rf"{current_md_folder}\Mosaic\mosaic_template.xml"
- template_md = md.Metadata(mosaic_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, mosaic_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path)
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Mosaic\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Mosaic\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- elif dataset_name.endswith(".crf"):
-
- print(f"\tCRF")
- #print(dataset_name)
- #print(dataset_path)
- #dataset_path = dataset_path.replace(crfs_folder, project_gdb).replace(".crf", "_Mosaic")
- #print(dataset_path)
-
- crf_template = rf"{current_md_folder}\CRF\crf_template.xml"
- template_md = md.Metadata(crf_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, crf_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path.replace(crfs_folder, project_gdb).replace(".crf", "_Mosaic"))
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- dataset_md.title = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\CRF\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\CRF\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- else:
- print(f"\tRegion Table")
-
- if dataset_name.endswith("IDW"):
-
- idw_region_table_template = rf"{current_md_folder}\Table\idw_region_table_template.xml"
- template_md = md.Metadata(idw_region_table_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, idw_region_table_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path)
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- dataset_md.title = metadata_dictionary[f"{dataset_name}"]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[f"{dataset_name}"]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[f"{dataset_name}"]["Summary"]
- dataset_md.description = metadata_dictionary[f"{dataset_name}"]["Description"]
- dataset_md.credits = metadata_dictionary[f"{dataset_name}"]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[f"{dataset_name}"]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Table\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- elif dataset_name.endswith("GLMME"):
-
- glmme_region_table_template = rf"{current_md_folder}\Table\glmme_region_table_template.xml"
- template_md = md.Metadata(glmme_region_table_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, glmme_region_table_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path)
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- dataset_md.title = metadata_dictionary[f"{dataset_name}"]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[f"{dataset_name}"]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[f"{dataset_name}"]["Summary"]
- dataset_md.description = metadata_dictionary[f"{dataset_name}"]["Description"]
- dataset_md.credits = metadata_dictionary[f"{dataset_name}"]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[f"{dataset_name}"]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Table\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- else:
- pass
-
- del dataset_name, dataset_path
-
- del workspace
-
- del datasets
-
- # Declared Variables set in function
- del project_gdb, base_project_folder, current_md_folder, inport_md_folder
- del project_folder, scratch_folder, crfs_folder
- del metadata_dictionary, workspaces
-
- # Imports
- del dismap, dataset_title_dict, pretty_format_xml_file, unique_years
- del md
-
- # Function Parameters
- del base_project_file, project
-
- except KeyboardInterrupt:
- raise SystemExit
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- except Exception as e:
- print(e)
- except:
- traceback.print_exc()
- else:
- try:
- leave_out_keys = ["leave_out_keys", "results"]
- remaining_keys = [key for key in locals().keys() if not key.startswith('__') and key not in leave_out_keys]
- if remaining_keys:
- arcpy.AddWarning(f"Remaining Keys in '{inspect.stack()[0][3]}': ##--> '{', '.join(remaining_keys)}' <--## Line Number: {traceback.extract_stack()[-1].lineno}")
- del leave_out_keys, remaining_keys
- return results if "results" in locals().keys() else ["NOTE!! The 'results' variable not yet set!!"]
- except:
- raise Exception(traceback.print_exc())
- finally:
- if "results" in locals().keys(): del results
-
-def create_thumbnails(base_project_file="", project=""):
- try:
- # Import
- from arcpy import metadata as md
-
- import dismap
- importlib.reload(dismap)
- from dismap import pretty_format_xml_file
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2)
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- base_project_folder = rf"{os.path.dirname(base_project_file)}"
- base_project_file = rf"{base_project_folder}\DisMAP.aprx"
- project_folder = rf"{base_project_folder}\{project}"
- project_gdb = rf"{project_folder}\{project}.gdb"
- metadata_folder = rf"{project_folder}\Export Metadata"
- crfs_folder = rf"{project_folder}\CRFs"
- scratch_folder = rf"{project_folder}\Scratch"
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = rf"{scratch_folder}\scratch.gdb"
-
- aprx = arcpy.mp.ArcGISProject(base_project_file)
- home_folder = aprx.homeFolder
-
- workspaces = [project_gdb, crfs_folder]
-
- for workspace in workspaces:
-
- arcpy.env.workspace = workspace
- arcpy.env.scratchWorkspace = rf"{scratch_folder}\scratch.gdb"
-
- datasets = list()
-
- walk = arcpy.da.Walk(workspace)
-
- for dirpath, dirnames, filenames in walk:
- for filename in filenames:
- datasets.append(os.path.join(dirpath, filename))
- del filename
- del dirpath, dirnames, filenames
- del walk
-
- for dataset_path in sorted(datasets):
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
-
- print(f"Dataset Name: {dataset_name}")
-
- if "Datasets" == dataset_name:
-
- print(f"\tDataset Table")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif "Species_Filter" == dataset_name:
-
- print(f"\tSpecies Filter Table")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif "Indicators" in dataset_name:
-
- print(f"\tIndicators")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif "LayerSpeciesYearImageName" in dataset_name:
-
- print(f"\tLayer Species Year Image Name")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Boundary"):
-
- print(f"\tBoundary")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Boundary\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Extent_Points"):
-
- print(f"\tExtent_Points")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Extent_Points\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Fishnet"):
-
- print(f"\tFishnet")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Fishnet\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Lat_Long"):
-
- print(f"\tLat_Long")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Lat_Long\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Region"):
-
- print(f"\tRegion")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Region\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Sample_Locations"):
-
- print(f"\tSample_Locations")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Sample_Locations\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("GRID_Points"):
-
- print(f"\tGRID_Points")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\GRID_Points\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif "DisMAP_Regions" == dataset_name:
-
- print(f"\tDisMAP_Regions")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Region\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Bathymetry"):
-
- print(f"\tBathymetry")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Bathymetry\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Latitude"):
-
- print(f"\tLatitude")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Latitude\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Longitude"):
-
- print(f"\tLongitude")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Longitude\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Raster_Mask"):
-
- print(f"\tRaster_Mask")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Raster_Mask\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Mosaic"):
-
- print(f"\tMosaic")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Mosaic\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith(".crf"):
-
- print(f"\tCRF")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\CRF\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- else:
- pass
- print(f"\tRegion Table")
-
- if dataset_name.endswith("IDW"):
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("GLMME"):
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- else:
- pass
-
- del dataset_name, dataset_path
-
- del workspace, datasets
-
- del workspaces
-
- # Declared Variables set in function for aprx
- del home_folder
- # Save aprx one more time and then delete
- aprx.save()
- del aprx
-
- # Declared Variables set in function
- del project_gdb, base_project_folder, metadata_folder, crfs_folder
- del project_folder, scratch_folder
-
- # Imports
- del dismap, pretty_format_xml_file
- del md
-
- # Function Parameters
- del base_project_file, project
-
- except KeyboardInterrupt:
- raise SystemExit
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(str(traceback.print_exc()) + arcpy.GetMessages())
- except arcpy.ExecuteError:
- arcpy.AddError(str(traceback.print_exc()) + arcpy.GetMessages())
- except Exception:
- traceback.print_exc()
- except:
- traceback.print_exc()
- else:
- try:
- leave_out_keys = ["leave_out_keys", "results"]
- remaining_keys = [key for key in locals().keys() if not key.startswith('__') and key not in leave_out_keys]
- if remaining_keys:
- arcpy.AddWarning(f"Remaining Keys in '{inspect.stack()[0][3]}': ##--> '{', '.join(remaining_keys)}' <--## Line Number: {traceback.extract_stack()[-1].lineno}")
- del leave_out_keys, remaining_keys
- return results if "results" in locals().keys() else ["NOTE!! The 'results' variable not yet set!!"]
- except:
- raise Exception(traceback.print_exc())
- finally:
- if "results" in locals().keys(): del results
-
-def export_to_inport_xml_files(base_project_file="", project=""):
- try:
- if not base_project_file or not project: raise SystemExit("parameters are missing")
-
- # Import
- from arcpy import metadata as md
-
- import dismap
- importlib.reload(dismap)
- from dismap import pretty_format_xml_file
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2)
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- base_project_folder = rf"{os.path.dirname(base_project_file)}"
- project_folder = rf"{base_project_folder}\{project}"
- project_gdb = rf"{project_folder}\{project}.gdb"
- metadata_folder = rf"{project_folder}\InPort Metadata"
- crfs_folder = rf"{project_folder}\CRFs"
- scratch_folder = rf"{project_folder}\Scratch"
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = rf"{scratch_folder}\scratch.gdb"
-
- datasets = [rf"{project_gdb}\Species_Filter", rf"{project_gdb}\Indicators", rf"{project_gdb}\DisMAP_Regions", rf"{project_gdb}\GMEX_IDW_Sample_Locations", rf"{project_gdb}\GMEX_IDW_Mosaic", rf"{crfs_folder}\GMEX_IDW.crf"]
-
- for dataset_path in sorted(datasets):
- print(dataset_path)
-
- dataset_name = os.path.basename(dataset_path)
-
- print(f"Dataset Name: {dataset_name}")
-
- target_file_path = rf"{metadata_folder}\{dataset_name}.xml"
- custom_xslt_path = rf"{metadata_folder}\ArcGIS2InPort.xsl"
-
- dataset_md = md.Metadata(dataset_path)
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- del dataset_md
-
- try:
- pretty_format_xml_file(target_file_path)
- except Exception:
- raise Exception
-
- del target_file_path, custom_xslt_path
-
- del dataset_name, dataset_path
-
- del datasets
-
- # Declared Variables set in function
- del project_gdb, base_project_folder, metadata_folder
- del project_folder, scratch_folder, crfs_folder
-
- # Imports
- del dismap, pretty_format_xml_file
- del md
-
- # Function Parameters
- del base_project_file, project
-
- except KeyboardInterrupt:
- raise SystemExit
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(str(traceback.print_exc()) + arcpy.GetMessages())
- raise SystemExit
- except arcpy.ExecuteError:
- arcpy.AddError(str(traceback.print_exc()) + arcpy.GetMessages())
- raise SystemExit
- except SystemExit as se:
- arcpy.AddError(se)
- raise SystemExit
- except:
- traceback.print_exc()
- else:
- try:
- leave_out_keys = ["leave_out_keys", "results"]
- remaining_keys = [key for key in locals().keys() if not key.startswith('__') and key not in leave_out_keys]
- if remaining_keys:
- arcpy.AddWarning(f"Remaining Keys in '{inspect.stack()[0][3]}': ##--> '{', '.join(remaining_keys)}' <--## Line Number: {traceback.extract_stack()[-1].lineno}")
- del leave_out_keys, remaining_keys
- return results if "results" in locals().keys() else ["NOTE!! The 'results' variable not yet set!!"]
- except:
- raise Exception(traceback.print_exc())
- finally:
- if "results" in locals().keys(): del results
-
-def create_maps(base_project_file="", project="", dataset=""):
- try:
- # Import
- from arcpy import metadata as md
-
- import dismap
- importlib.reload(dismap)
- from dismap import pretty_format_xml_file
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2)
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- base_project_folder = rf"{os.path.dirname(base_project_file)}"
- base_project_file = rf"{base_project_folder}\DisMAP.aprx"
- project_folder = rf"{base_project_folder}\{project}"
- project_gdb = rf"{project_folder}\{project}.gdb"
- metadata_folder = rf"{project_folder}\Export Metadata"
- crfs_folder = rf"{project_folder}\CRFs"
- scratch_folder = rf"{project_folder}\Scratch"
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = rf"{scratch_folder}\scratch.gdb"
-
- aprx = arcpy.mp.ArcGISProject(base_project_file)
-
- dataset_name = os.path.basename(dataset)
-
- print(f"Dataset Name: {dataset_name}")
-
- if dataset_name not in [cm.name for cm in aprx.listMaps()]:
- print(f"Creating Map: {dataset_name}")
- aprx.createMap(f"{dataset_name}", "Map")
- aprx.save()
- else:
- pass
-
- current_map = aprx.listMaps(f"{dataset_name}")[0]
- print(f"Current Map: {current_map.name}")
-
- if dataset_name not in [lyr.name for lyr in current_map.listLayers(f"{dataset_name}")]:
- print(f"Adding {dataset_name} to Map")
-
- map_layer = arcpy.management.MakeFeatureLayer(dataset, f"{dataset_name}")
-
- #arcpy.management.Delete(rf"{project_folder}\Layers\{dataset_name}.lyrx")
- #os.remove(rf"{project_folder}\Layers\{dataset_name}.lyrx")
-
- map_layer_file = arcpy.management.SaveToLayerFile(map_layer, rf"{project_folder}\Layers\{dataset_name}.lyrx")
- del map_layer_file
-
- map_layer_file = arcpy.mp.LayerFile(rf"{project_folder}\Layers\{dataset_name}.lyrx")
-
- arcpy.management.Delete(map_layer)
- del map_layer
-
- current_map.addLayer(map_layer_file)
- del map_layer_file
-
- aprx.save()
- else:
- pass
-
- #aprx_basemaps = aprx.listBasemaps()
- #basemap = 'GEBCO Basemap/Contours (NOAA NCEI Visualization)'
- basemap = "Terrain with Labels"
-
- current_map.addBasemap(basemap)
- del basemap
-
- # Set Reference Scale
- current_map.referenceScale = 50000000
-
- # Clear Selection
- current_map.clearSelection()
-
- current_map_cim = current_map.getDefinition('V3')
- current_map_cim.enableWraparound = True
- current_map.setDefinition(current_map_cim)
-
- # Return the layer's CIM definition
- cim_lyr = lyr.getDefinition('V3')
-
- # Modify the color, width and dash template for the SolidStroke layer
- symLvl1 = cim_lyr.renderer.symbol.symbol.symbolLayers[0]
- symLvl1.color.values = [0, 0, 0, 100]
- symLvl1.width = 1
-
- # Push the changes back to the layer object
- lyr.setDefinition(cim_lyr)
- del symLvl1, cim_lyr
-
- aprx.save()
-
- height = arcpy.Describe(dataset).extent.YMax - arcpy.Describe(dataset).extent.YMin
- width = arcpy.Describe(dataset).extent.XMax - arcpy.Describe(dataset).extent.XMin
-
- # map_width, map_height
- map_width, map_height = 8.5, 11
-
- if height > width:
- page_height = map_height; page_width = map_width
- elif height < width:
- page_height = map_width; page_width = map_height
- else:
- page_width = map_width; page_height = map_height
-
- del map_width, map_height
- del height, width
-
- if dataset_name not in [cl.name for cl in aprx.listLayouts()]:
- print(f"Creating Layout: {dataset_name}")
- aprx.createLayout(page_width, page_height, "INCH", f"{dataset_name}")
- aprx.save()
- else:
- print(f"Layout: {dataset_name} exists")
-
- #Set the default map camera to the extent of the park boundary before opening the new view
- #default camera only affects newly opened views
- lyr = current_map.listLayers(f"{dataset_name}")[-1]
-
- #
- arcpy.management.SelectLayerByAttribute(lyr, 'NEW_SELECTION', "DatasetCode in ('ENBS', 'HI', 'NEUS_SPR')")
-
- mv = current_map.openView()
- mv.panToExtent(mv.getLayerExtent(lyr, True, True))
- mv.zoomToAllLayers()
- del mv
-
- arcpy.management.SelectLayerByAttribute(lyr, 'CLEAR_SELECTION')
-
- av = aprx.activeView
- av.exportToPNG(rf"{project_folder}\Layers\{dataset_name}.png", width=288, height=192, resolution = 96, color_mode="24-BIT_TRUE_COLOR", embed_color_profile=True)
- av.exportToJPEG(rf"{project_folder}\Layers\{dataset_name}.jpg", width=288, height=192, resolution = 96, jpeg_color_mode="24-BIT_TRUE_COLOR", embed_color_profile=True)
- del av
-
- #print(current_map.referenceScale)
-
- #export the newly opened active view to PDF, then delete the new map
- #mv = aprx.activeView
- #mv.exportToPDF(r"C:\Temp\RangerStations.pdf", width=700, height=500, resolution=96)
- #aprx.deleteItem(current_map)
-
- #mv = aprx.activeView
- #mv = current_map.defaultView
- #mv.zoomToAllLayers()
- #print(mv.camera.getExtent())
- #arcpy.management.Delete(rf"{project_folder}\Layers\{dataset_name}.png")
- #arcpy.management.Delete(rf"{project_folder}\Layers\{dataset_name}.jpg")
-
- #os.remove(rf"{project_folder}\Layers\{dataset_name}.png")
- #os.remove(rf"{project_folder}\Layers\{dataset_name}.jpg")
-
-
- #mv.exportToPNG(rf"{project_folder}\Layers\{dataset_name}.png", width=288, height=192, resolution = 96, color_mode="24-BIT_TRUE_COLOR", embed_color_profile=True)
- #mv.exportToJPEG(rf"{project_folder}\Layers\{dataset_name}.jpg", width=288, height=192, resolution = 96, jpeg_color_mode="24-BIT_TRUE_COLOR", embed_color_profile=True)
- #del mv
-
- #Export the resulting imported layout and changes to JPEG
- #print(f"Exporting '{current_layout.name}'")
- #current_map.exportToJPEG(rf"{project_folder}\Layouts\{current_layout.name}.jpg", page_width, page_height)
- #current_map.exportToPNG(rf"{project_folder}\Layouts\{current_layout.name}.png", page_width, page_height)
-
- #fc_md = md.Metadata(dataset)
- #fc_md.thumbnailUri = rf"{project_folder}\Layouts\{dataset_name}.png"
- #fc_md.thumbnailUri = rf"{project_folder}\Layouts\{dataset_name}.jpg"
- #fc_md.save()
- #del fc_md
-
- aprx.save()
-
-
- # # from arcpy import metadata as md
- # #
- # # fc_md = md.Metadata(dataset)
- # # fc_md.thumbnailUri = rf"{project_folder}\Layers\{dataset_name}.png"
- # # fc_md.save()
- # # del fc_md
- # # del md
-
-## aprx.save()
-##
-## current_layout = [cl for cl in aprx.listLayouts() if cl.name == dataset_name][0]
-## print(f"Current Layout: {current_layout.name}")
-##
-## current_layout.openView()
-##
-## # Remove all map frames
-## for mf in current_layout.listElements("MapFrame_Element"): current_layout.deleteElement(mf); del mf
-##
-## # print(f'Layout Name: {current_layout.name}')
-## # print(f' Width x height: {current_layout.pageWidth} x {current_layout.pageHeight} units are {current_layout.pageUnits}')
-## # print(f' MapFrame count: {str(len(current_layout.listElements("MapFrame_Element")))}')
-## # for mf in current_layout.listElements("MapFrame_Element"):
-## # if len(current_layout.listElements("MapFrame_Element")) > 0:
-## # print(f' MapFrame name: {mf.name}')
-## # print(f' Total element count: {str(len(current_layout.listElements()))} \n')
-##
-##
-## print(f"Create a new map frame using a point geometry")
-## #Create a new map frame using a point geometry
-## #mf1 = current_layout.createMapFrame(arcpy.Point(0.01,0.01), current_map, 'New MF - Point')
-## mf1 = current_layout.createMapFrame(arcpy.Point(0.0,0.0), current_map, 'New MF - Point')
-## #mf1.elementWidth = 10
-## #mf1.elementHeight = 7.5
-## #mf1.elementWidth = page_width - 0.01
-## #mf1.elementHeight = page_height - 0.01
-## mf1.elementWidth = page_width
-## mf1.elementHeight = page_height
-
-## lyr = current_map.listLayers(f"{dataset_name}")[0]
-##
-## #Zoom to ALL selected features and export to PDF
-## #arcpy.SelectLayerByAttribute_management(lyr, 'NEW_SELECTION')
-## #mf1.zoomToAllLayers(True)
-## #arcpy.SelectLayerByAttribute_management(lyr, 'CLEAR_SELECTION')
-##
-## #Set the map frame extent to the extent of a layer
-## #mf1.camera.setExtent(mf1.getLayerExtent(lyr, False, True))
-## #mf1.camera.scale = mf1.camera.scale * 1.1 #add a slight buffer
-##
-## del lyr
-
-## print(f"Create a new bookmark set to the map frame's default extent")
-## #Create a new bookmark set to the map frame's default extent
-## bkmk = mf1.createBookmark('Default Extent', "The map's default extent")
-## bkmk.updateThumbnail()
-## del mf1
-## del bkmk
-
- # Create point text element using a system style item
- # txtStyleItem = aprx.listStyleItems('ArcGIS 2D', 'TEXT', 'Title (Serif)')[0]
- # ptTxt = aprx.createTextElement(current_layout, arcpy.Point(5.5, 4.25), 'POINT', f'{dataset_name}', 10, style_item=txtStyleItem)
- # del txtStyleItem
-
- # Change the anchor position and reposition the text to center
- # ptTxt.setAnchor('Center_Point')
- # ptTxt.elementPositionX = page_width / 2.0
- # ptTxt.elementPositionY = page_height - 0.25
- # del ptTxt
-
- # print(f"Using CIM to update border")
- # current_layout_cim = current_layout.getDefinition('V3')
- # for elm in current_layout_cim.elements:
- # if type(elm).__name__ == 'CIMMapFrame':
- # if elm.graphicFrame.borderSymbol.symbol.symbolLayers:
- # sym = elm.graphicFrame.borderSymbol.symbol.symbolLayers[0]
- # sym.width = 5
- # sym.color.values = [255, 0, 0, 100]
- # else:
- # arcpy.AddWarning(elm.name + ' has NO symbol layers')
- # current_layout.setDefinition(current_layout_cim)
- # del current_layout_cim, elm, sym
-
-## ExportLayout = True
-## if ExportLayout:
-## #Export the resulting imported layout and changes to JPEG
-## print(f"Exporting '{current_layout.name}'")
-## current_layout.exportToJPEG(rf"{project_folder}\Layouts\{current_layout.name}.jpg")
-## current_layout.exportToPNG(rf"{project_folder}\Layouts\{current_layout.name}.png")
-## del ExportLayout
-
-## #Export the resulting imported layout and changes to JPEG
-## print(f"Exporting '{current_layout.name}'")
-## current_map.exportToJPEG(rf"{project_folder}\Layouts\{current_layout.name}.jpg", page_width, page_height)
-## current_map.exportToPNG(rf"{project_folder}\Layouts\{current_layout.name}.png", page_width, page_height)
-##
-## fc_md = md.Metadata(dataset)
-## fc_md.thumbnailUri = rf"{project_folder}\Layouts\{current_layout.name}.png"
-## #fc_md.thumbnailUri = rf"{project_folder}\Layouts\{current_layout.name}.jpg"
-## fc_md.save()
-## del fc_md
-##
-## aprx.save()
-
- # aprx.deleteItem(current_map)
- #aprx.deleteItem(current_layout)
-
- del current_map
- #, current_layout
- #del page_width, page_height
- del dataset_name, dataset
-
- aprx.save()
-
- print(f"\nCurrent Maps & Layouts")
-
- current_maps = aprx.listMaps()
- #current_layouts = aprx.listLayouts()
-
- if current_maps:
- print(f"\nCurrent Maps\n")
- for current_map in current_maps:
- print(f"\tProject Map: {current_map.name}")
- del current_map
- else:
- arcpy.AddWarning("No maps in Project")
-
-## if current_layouts:
-## print(f"\nCurrent Layouts\n")
-## for current_layout in current_layouts:
-## print(f"\tProject Layout: {current_layout.name}")
-## del current_layout
-## else:
-## arcpy.AddWarning("No layouts in Project")
-
- #del current_layouts
- del current_maps
-
- # Declared Variables set in function for aprx
-
- # Save aprx one more time and then delete
- aprx.save()
- del aprx
-
- # Declared Variables set in function
- del project_gdb, base_project_folder, metadata_folder, crfs_folder
- del project_folder, scratch_folder
-
- # Imports
- del dismap, pretty_format_xml_file
- del md
-
- # Function Parameters
- del base_project_file, project
-
- except KeyboardInterrupt:
- raise SystemExit
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(str(traceback.print_exc()) + arcpy.GetMessages())
- raise Exception
- except arcpy.ExecuteError:
- arcpy.AddError(str(traceback.print_exc()) + arcpy.GetMessages())
- raise Exception
- except Exception:
- traceback.print_exc()
- except:
- traceback.print_exc()
- else:
- try:
- leave_out_keys = ["leave_out_keys", "results"]
- remaining_keys = [key for key in locals().keys() if not key.startswith('__') and key not in leave_out_keys]
- if remaining_keys:
- arcpy.AddWarning(f"Remaining Keys in '{inspect.stack()[0][3]}': ##--> '{', '.join(remaining_keys)}' <--## Line Number: {traceback.extract_stack()[-1].lineno}")
- del leave_out_keys, remaining_keys
- return results if "results" in locals().keys() else ["NOTE!! The 'results' variable not yet set!!"]
- except:
- raise Exception(traceback.print_exc())
- finally:
- if "results" in locals().keys(): del results
-
-def main(project=""):
- try:
- # Imports
- import dismap
- importlib.reload(dismap)
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- base_project_folder = os.path.dirname(os.path.dirname(__file__))
- base_project_file = rf"{base_project_folder}\DisMAP.aprx"
- project_gdb = rf"{base_project_folder}\{project}\{project}.gdb"
-
- # Test if passed workspace exists, if not raise SystemExit
- if not arcpy.Exists(base_project_file):
- raise SystemExit(line_info(f"{os.path.basename(base_project_file)} is missing!!"))
-
- # Test if passed workspace exists, if not raise SystemExit
- if not arcpy.Exists(project_gdb):
- raise SystemExit(line_info(f"{os.path.basename(project_gdb)} is missing!!"))
-
- del base_project_folder
-
- Backup = False
- if Backup:
- dismap.backup_gdb(project_gdb)
- del Backup
-
- # Imports
- del dismap
- # Function parameters
-
- results = []
-
- try:
-
- CreateBasicTemplateXMLFiles = True
- if CreateBasicTemplateXMLFiles:
- result = create_basic_template_xml_files(base_project_file, project)
- results.extend(result); del result
- del CreateBasicTemplateXMLFiles
-
- ImportBasicTemplateXmlFiles = True
- if ImportBasicTemplateXmlFiles:
- result = import_basic_template_xml_files(base_project_file, project)
- results.extend(result); del result
- del ImportBasicTemplateXmlFiles
-
- CreateThumbnails = False
- if CreateThumbnails:
- result = create_thumbnails(base_project_file, project)
- results.extend(result); del result
- del CreateThumbnails
-
- CreateMaps = False
- if CreateMaps:
- result = create_maps(base_project_file, project, dataset=rf"{project_gdb}\DisMAP_Regions")
- results.extend(result); del result
- del CreateMaps
-
- ExportToInportXmlFiles = False
- if ExportToInportXmlFiles:
- result = export_to_inport_xml_files(base_project_file, project)
- results.extend(result); del result
- del ExportToInportXmlFiles
-
- except Exception as e:
- arcpy.AddError(str(e))
-
- # Variable created in function
- del project_gdb
- # Function parameters
- del base_project_file, project
-
- except KeyboardInterrupt:
- raise SystemExit
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- except Exception:
- pass
- except:
- traceback.print_exc()
- else:
- try:
- leave_out_keys = ["leave_out_keys", "results"]
- remaining_keys = [key for key in locals().keys() if not key.startswith('__') and key not in leave_out_keys]
- if remaining_keys:
- arcpy.AddWarning(f"Remaining Keys in '{inspect.stack()[0][3]}': ##--> '{', '.join(remaining_keys)}' <--## Line Number: {traceback.extract_stack()[-1].lineno}")
- del leave_out_keys, remaining_keys
- return results if "results" in locals().keys() else ["NOTE!! The 'results' variable not yet set!!"]
- except:
- raise Exception(traceback.print_exc())
- finally:
- if "results" in locals().keys(): del results
-
-if __name__ == "__main__":
- try:
- # Import this Python module
- import dismap_metadata_processing
- importlib.reload(dismap_metadata_processing)
-
- print(f"{'-' * 90}")
- print(f"Python Script: {os.path.basename(__file__)}")
- print(f"Location: {os.path.dirname(__file__)}")
- print(f"Python Version: {sys.version} Environment: {os.path.basename(sys.exec_prefix)}")
- print(f"{'-' * 90}\n")
-
- #project = "May 1 2024"
- #project = "July 1 2024"
- #project = "December 1 2024"
- project = "April 1 2023"
-
- # Tested on 8/1/2024 -- PASSED
- main(project=project)
-
- del project
-
- from time import localtime, strftime
-
- print(f"\n{'-' * 90}")
- print(f"Python script: {os.path.basename(__file__)} successfully completed {strftime('%a %b %d %I:%M %p', localtime())}")
- print(f"{'-' * 90}")
- del localtime, strftime
-
- except:
- traceback.print_exc()
- else:
- leave_out_keys = ["leave_out_keys" ]
- leave_out_keys.extend([name for name, obj in inspect.getmembers(sys.modules[__name__]) if inspect.isfunction(obj) or inspect.ismodule(obj)])
- remaining_keys = [key for key in locals().keys() if not key.startswith("__") and key not in leave_out_keys]
- if remaining_keys: arcpy.AddWarning(f"Remaining Keys: ##--> '{', '.join(remaining_keys)}' <--##")
- del leave_out_keys, remaining_keys
- finally:
- pass
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dismap_metadata_processing.~py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/dismap_metadata_processing.~py
deleted file mode 100644
index 13d84f2..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dismap_metadata_processing.~py
+++ /dev/null
@@ -1,2544 +0,0 @@
-"""
-Script documentation
-- Tool parameters are accessed using arcpy.GetParameter() or
- arcpy.GetParameterAsText()
-- Update derived parameter values using arcpy.SetParameter() or
- arcpy.SetParameterAsText()
-"""
-# built-ins first
-import os
-import sys
-import inspect
-# third-parties second
-import arcpy
-
-sys.path.append(os.path.dirname(__file__))
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- filename = sys.path[0] + os.sep + "test.py"
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def line_info(msg):
- f = inspect.currentframe()
- i = inspect.getframeinfo(f.f_back)
- return f"Script: {os.path.basename(i.filename)}\n\tNear Line: {i.lineno}\n\tFunction: {i.function}\n\tMessage: {msg}"
-
-def create_basic_template_xml_files(base_project_file="", project=""):
- try:
- # Import
- from arcpy import metadata as md
-
- from dismap_tools import dataset_title_dict, pretty_format_xml_file
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2)
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- base_project_folder = rf"{os.path.dirname(base_project_file)}"
- base_project_file = rf"{base_project_folder}\DisMAP.aprx"
- project_folder = rf"{base_project_folder}\{project}"
- project_gdb = rf"{project_folder}\{project}.gdb"
- metadata_folder = rf"{project_folder}\Template Metadata"
- crfs_folder = rf"{project_folder}\CRFs"
- scratch_folder = rf"{project_folder}\Scratch"
-
- metadata_dictionary = dataset_title_dict(project_gdb)
-
- workspaces = [project_gdb, crfs_folder]
-
- for workspace in workspaces:
-
- arcpy.env.workspace = workspace
- arcpy.env.scratchWorkspace = os.path.join(scratch_folder, "scratch.gdb")
-
- datasets = list()
-
- walk = arcpy.da.Walk(workspace)
-
- for dirpath, dirnames, filenames in walk:
- for filename in filenames:
- datasets.append(os.path.join(dirpath, filename))
- del filename
- del dirpath, dirnames, filenames
- del walk
-
- for dataset_path in sorted(datasets):
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
-
- print(f"Dataset Name: {dataset_name}")
-
- if "Datasets" == dataset_name:
-
- print("\tDataset Table")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- datasets_table_template = rf"{metadata_folder}\datasets_table_template.xml"
- dataset_md.saveAsXML(datasets_table_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(datasets_table_template)
- del datasets_table_template
-
- del dataset_md
-
- elif "Species_Filter" == dataset_name:
-
- print("\tSpecies Filter Table")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- species_filter_table_template = rf"{metadata_folder}\species_filter_table_template.xml"
- dataset_md.saveAsXML(species_filter_table_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(species_filter_table_template)
- del species_filter_table_template
-
- del dataset_md
-
- elif "Indicators" in dataset_name:
-
- print("\tIndicators")
-
- if dataset_name == "Indicators":
- dataset_name = f"{dataset_name}_Table"
- else:
- pass
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- indicators_template = rf"{metadata_folder}\indicators_template.xml"
- dataset_md.saveAsXML(indicators_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(indicators_template)
- del indicators_template
-
- del dataset_md
-
- elif "LayerSpeciesYearImageName" in dataset_name:
-
- print("\tLayer Species Year Image Name")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- layer_species_year_image_name_template = rf"{metadata_folder}\layer_species_year_image_name_template.xml"
- dataset_md.saveAsXML(layer_species_year_image_name_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(layer_species_year_image_name_template)
- del layer_species_year_image_name_template
-
- del dataset_md
-
- elif dataset_name.endswith("Boundary"):
-
- print("\tBoundary")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- boundary_template = rf"{metadata_folder}\boundary_template.xml"
- dataset_md.saveAsXML(boundary_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(boundary_template)
- del boundary_template
-
- del dataset_md
-
- elif dataset_name.endswith("Extent_Points"):
-
- print("\tExtent_Points")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- extent_points_template = rf"{metadata_folder}\extent_points_template.xml"
- dataset_md.saveAsXML(extent_points_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(extent_points_template)
- del extent_points_template
-
- del dataset_md
-
- elif dataset_name.endswith("Fishnet"):
-
- print("\tFishnet")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- fishnet_template = rf"{metadata_folder}\fishnet_template.xml"
- dataset_md.saveAsXML(fishnet_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(fishnet_template)
- del fishnet_template
-
- del dataset_md
-
- elif dataset_name.endswith("Lat_Long"):
-
- print("\tLat_Long")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- lat_long_template = rf"{metadata_folder}\lat_long_template.xml"
- dataset_md.saveAsXML(lat_long_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(lat_long_template)
- del lat_long_template
-
- del dataset_md
-
- elif dataset_name.endswith("Region"):
-
- print("\tRegion")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- region_template = rf"{metadata_folder}\region_template.xml"
- dataset_md.saveAsXML(region_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(region_template)
- del region_template
-
- del dataset_md
-
- elif dataset_name.endswith("Sample_Locations"):
-
- print("\tSample_Locations")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- sample_locations_template = rf"{metadata_folder}\sample_locations_template.xml"
- dataset_md.saveAsXML(sample_locations_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(sample_locations_template)
- del sample_locations_template
-
- del dataset_md
-
- elif dataset_name.endswith("GRID_Points"):
-
- print("\tGRID_Points")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- grid_points_template = rf"{metadata_folder}\grid_points_template.xml"
- dataset_md.saveAsXML(grid_points_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(grid_points_template)
- del grid_points_template
-
- del dataset_md
-
- elif "DisMAP_Regions" == dataset_name:
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- dismap_regions_template = rf"{metadata_folder}\dismap_regions_template.xml"
- dataset_md.saveAsXML(dismap_regions_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(dismap_regions_template)
- del dismap_regions_template
-
- del dataset_md
-
- elif dataset_name.endswith("Bathymetry"):
-
- print("\tBathymetry")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- bathymetry_template = rf"{metadata_folder}\bathymetry_template.xml"
- dataset_md.saveAsXML(bathymetry_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(bathymetry_template)
- del bathymetry_template
-
- del dataset_md
-
- elif dataset_name.endswith("Latitude"):
-
- print("\tLatitude")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- latitude_template = rf"{metadata_folder}\latitude_template.xml"
- dataset_md.saveAsXML(latitude_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(latitude_template)
- del latitude_template
-
- del dataset_md
-
- elif dataset_name.endswith("Longitude"):
-
- print("\tLongitude")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- longitude_template = rf"{metadata_folder}\longitude_template.xml"
- dataset_md.saveAsXML(longitude_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(longitude_template)
- del longitude_template
-
- del dataset_md
-
- elif dataset_name.endswith("Raster_Mask"):
-
- print("\tRaster_Mask")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- raster_mask_template = rf"{metadata_folder}\raster_mask_template.xml"
- dataset_md.saveAsXML(raster_mask_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(raster_mask_template)
- del raster_mask_template
-
- del dataset_md
-
- elif dataset_name.endswith("Mosaic"):
-
- print("\tMosaic")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- mosaic_template = rf"{metadata_folder}\mosaic_template.xml"
- dataset_md.saveAsXML(mosaic_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(mosaic_template)
- del mosaic_template
-
- del dataset_md
-
- elif dataset_name.endswith(".crf"):
-
- print("\tCRF")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- crf_template = rf"{metadata_folder}\crf_template.xml"
- dataset_md.saveAsXML(crf_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(crf_template)
- del crf_template
-
- del dataset_md
-
- else:
- print("\tRegion Table")
-
- if dataset_name.endswith("IDW"):
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[f"{dataset_name}"]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[f"{dataset_name}"]["Tags"]
- dataset_md.summary = metadata_dictionary[f"{dataset_name}"]["Summary"]
- dataset_md.description = metadata_dictionary[f"{dataset_name}"]["Description"]
- dataset_md.credits = metadata_dictionary[f"{dataset_name}"]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[f"{dataset_name}"]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- idw_region_table_template = rf"{metadata_folder}\idw_region_table_template.xml"
- dataset_md.saveAsXML(idw_region_table_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(idw_region_table_template)
- del idw_region_table_template
-
- del dataset_md
-
- elif dataset_name.endswith("GLMME"):
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[f"{dataset_name}"]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[f"{dataset_name}"]["Tags"]
- dataset_md.summary = metadata_dictionary[f"{dataset_name}"]["Summary"]
- dataset_md.description = metadata_dictionary[f"{dataset_name}"]["Description"]
- dataset_md.credits = metadata_dictionary[f"{dataset_name}"]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[f"{dataset_name}"]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- glmme_region_table_template = rf"{metadata_folder}\glmme_region_table_template.xml"
- dataset_md.saveAsXML(glmme_region_table_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(glmme_region_table_template)
- del glmme_region_table_template
-
- del dataset_md
-
- else:
- pass
-
- del dataset_name, dataset_path
-
- del workspace
-
-
- del datasets
-
- # Declared Variables set in function
- del project_gdb, base_project_folder, metadata_folder
- del project_folder, scratch_folder, crfs_folder
- del metadata_dictionary, workspaces
-
- # Imports
- del dataset_title_dict, pretty_format_xml_file
- del md
-
- # Function Parameters
- del base_project_file, project
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
-
-def import_basic_template_xml_files(base_project_file="", project=""):
- try:
- # Import
- from arcpy import metadata as md
-
- from dismap_tools import dataset_title_dict, pretty_format_xml_file, unique_years
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2)
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- base_project_folder = rf"{os.path.dirname(base_project_file)}"
- project_folder = rf"{base_project_folder}\{project}"
- project_gdb = rf"{project_folder}\{project}.gdb"
- current_md_folder = rf"{project_folder}\Current Metadata"
- inport_md_folder = rf"{project_folder}\InPort Metadata"
- crfs_folder = rf"{project_folder}\CRFs"
- scratch_folder = rf"{project_folder}\Scratch"
-
- #print("Creating the Metadata Dictionary. Please wait!!")
- metadata_dictionary = dataset_title_dict(project_gdb)
- #print("Creating the Metadata Dictionary. Completed")
-
- workspaces = [project_gdb, crfs_folder]
- #workspaces = [crfs_folder]
-
- for workspace in workspaces:
-
- arcpy.env.workspace = workspace
- arcpy.env.scratchWorkspace = os.path.join(scratch_folder, "scratch.gdb")
-
- datasets = list()
-
- walk = arcpy.da.Walk(workspace)
-
- for dirpath, dirnames, filenames in walk:
- for filename in filenames:
- datasets.append(os.path.join(dirpath, filename))
- del filename
- del dirpath, dirnames, filenames
- del walk
-
- for dataset_path in sorted(datasets):
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
-
- print(f"Dataset Name: {dataset_name}")
-
- if "Datasets" == dataset_name:
-
- print("\tDataset Table")
-
- datasets_table_template = rf"{current_md_folder}\Table\datasets_table_template.xml"
- template_md = md.Metadata(datasets_table_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- #dataset_md.importMetadata(datasets_table_template)
- dataset_md.save()
- #dataset_md.synchronize("SELECTIVE")
-
- del empty_md, template_md, datasets_table_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Table\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif "Species_Filter" == dataset_name:
-
- print("\tSpecies Filter Table")
-
- species_filter_table_template = rf"{current_md_folder}\Table\species_filter_table_template.xml"
- template_md = md.Metadata(species_filter_table_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, species_filter_table_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Table\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif "Indicators" in dataset_name:
-
- print("\tIndicators")
-
- if dataset_name == "Indicators":
- indicators_template = rf"{current_md_folder}\Table\indicators_template.xml"
- else:
- indicators_template = rf"{current_md_folder}\Table\region_indicators_template.xml"
-
- template_md = md.Metadata(indicators_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, indicators_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path)
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- #print(metadata_dictionary[dataset_name]["Tags"])
- #print(_tags)
-
- if dataset_name == "Indicators":
- dataset_name = f"{dataset_name}_Table"
- else:
- pass
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Table\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- elif "LayerSpeciesYearImageName" in dataset_name:
-
- print("\tLayer Species Year Image Name")
-
- layer_species_year_image_name_template = rf"{current_md_folder}\Table\layer_species_year_image_name_template.xml"
- template_md = md.Metadata(layer_species_year_image_name_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, layer_species_year_image_name_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path)
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Table\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- elif dataset_name.endswith("Boundary"):
-
- print("\tBoundary")
-
- boundary_template = rf"{current_md_folder}\Boundary\boundary_template.xml"
- template_md = md.Metadata(boundary_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, boundary_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Boundary\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Boundary\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Extent_Points"):
-
- print("\tExtent_Points")
-
- extent_points_template = rf"{current_md_folder}\Extent_Points\extent_points_template.xml"
- template_md = md.Metadata(extent_points_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, extent_points_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Extent_Points\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Extent_Points\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Fishnet"):
-
- print("\tFishnet")
-
- fishnet_template = rf"{current_md_folder}\Fishnet\fishnet_template.xml"
- template_md = md.Metadata(fishnet_template)
-
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, fishnet_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Fishnet\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Fishnet\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Lat_Long"):
-
- print("\tLat_Long")
-
- lat_long_template = rf"{current_md_folder}\Lat_Long\lat_long_template.xml"
- template_md = md.Metadata(lat_long_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, lat_long_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Lat_Long\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Lat_Long\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Region"):
-
- print("\tRegion")
-
- region_template = rf"{current_md_folder}\Region\region_template.xml"
- template_md = md.Metadata(region_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, region_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Region\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Region\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Sample_Locations"):
-
- print("\tSample_Locations")
-
- sample_locations_template = rf"{current_md_folder}\Sample_Locations\sample_locations_template.xml"
- template_md = md.Metadata(sample_locations_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, sample_locations_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path)
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Sample_Locations\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Sample_Locations\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- elif dataset_name.endswith("GRID_Points"):
-
- print("\tGRID_Points")
-
- grid_points_template = rf"{current_md_folder}\GRID_Points\grid_points_template.xml"
- template_md = md.Metadata(grid_points_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, grid_points_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path)
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\GRID_Points\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\GRID_Points\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- elif "DisMAP_Regions" == dataset_name:
-
- print("\tDisMAP_Regions")
-
- dismap_regions_template = rf"{current_md_folder}\Region\dismap_regions_template.xml"
- template_md = md.Metadata(dismap_regions_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, dismap_regions_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Region\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Region\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Bathymetry"):
-
- print("\tBathymetry")
-
- bathymetry_template = rf"{current_md_folder}\Bathymetry\bathymetry_template.xml"
- template_md = md.Metadata(bathymetry_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, bathymetry_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Bathymetry\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Bathymetry\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Latitude"):
-
- print("\tLatitude")
-
- latitude_template = rf"{current_md_folder}\Latitude\latitude_template.xml"
- template_md = md.Metadata(latitude_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, latitude_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Latitude\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Latitude\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Longitude"):
-
- print("\tLongitude")
-
- longitude_template = rf"{current_md_folder}\Longitude\longitude_template.xml"
- template_md = md.Metadata(longitude_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, longitude_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Longitude\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Longitude\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Raster_Mask"):
-
- print("\tRaster_Mask")
-
- raster_mask_template = rf"{current_md_folder}\Raster_Mask\raster_mask_template.xml"
- template_md = md.Metadata(raster_mask_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, raster_mask_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Raster_Mask\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Raster_Mask\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Mosaic"):
-
- print("\tMosaic")
-
- mosaic_template = rf"{current_md_folder}\Mosaic\mosaic_template.xml"
- template_md = md.Metadata(mosaic_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, mosaic_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path)
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Mosaic\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Mosaic\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- elif dataset_name.endswith(".crf"):
-
- print("\tCRF")
- #print(dataset_name)
- #print(dataset_path)
- #dataset_path = dataset_path.replace(crfs_folder, project_gdb).replace(".crf", "_Mosaic")
- #print(dataset_path)
-
- crf_template = rf"{current_md_folder}\CRF\crf_template.xml"
- template_md = md.Metadata(crf_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, crf_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path.replace(crfs_folder, project_gdb).replace(".crf", "_Mosaic"))
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- dataset_md.title = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\CRF\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\CRF\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- else:
- print("\tRegion Table")
-
- if dataset_name.endswith("IDW"):
-
- idw_region_table_template = rf"{current_md_folder}\Table\idw_region_table_template.xml"
- template_md = md.Metadata(idw_region_table_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, idw_region_table_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path)
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- dataset_md.title = metadata_dictionary[f"{dataset_name}"]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[f"{dataset_name}"]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[f"{dataset_name}"]["Summary"]
- dataset_md.description = metadata_dictionary[f"{dataset_name}"]["Description"]
- dataset_md.credits = metadata_dictionary[f"{dataset_name}"]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[f"{dataset_name}"]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Table\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- elif dataset_name.endswith("GLMME"):
-
- glmme_region_table_template = rf"{current_md_folder}\Table\glmme_region_table_template.xml"
- template_md = md.Metadata(glmme_region_table_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, glmme_region_table_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path)
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- dataset_md.title = metadata_dictionary[f"{dataset_name}"]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[f"{dataset_name}"]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[f"{dataset_name}"]["Summary"]
- dataset_md.description = metadata_dictionary[f"{dataset_name}"]["Description"]
- dataset_md.credits = metadata_dictionary[f"{dataset_name}"]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[f"{dataset_name}"]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Table\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- else:
- pass
-
- del dataset_name, dataset_path
-
- del workspace
-
- del datasets
-
- # Declared Variables set in function
- del project_gdb, base_project_folder, current_md_folder, inport_md_folder
- del project_folder, scratch_folder, crfs_folder
- del metadata_dictionary, workspaces
-
- # Imports
- del dataset_title_dict, pretty_format_xml_file, unique_years
- del md
-
- # Function Parameters
- del base_project_file, project
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
-
-def create_thumbnails(base_project_file="", project=""):
- try:
- # Import
- from arcpy import metadata as md
-
- from dismap_tools import pretty_format_xml_file
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2)
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- base_project_folder = rf"{os.path.dirname(base_project_file)}"
- base_project_file = rf"{base_project_folder}\DisMAP.aprx"
- project_folder = rf"{base_project_folder}\{project}"
- project_gdb = rf"{project_folder}\{project}.gdb"
- metadata_folder = rf"{project_folder}\Export Metadata"
- crfs_folder = rf"{project_folder}\CRFs"
- scratch_folder = rf"{project_folder}\Scratch"
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = os.path.join(scratch_folder, "scratch.gdb")
-
- aprx = arcpy.mp.ArcGISProject(base_project_file)
- home_folder = aprx.homeFolder
-
- workspaces = [project_gdb, crfs_folder]
-
- for workspace in workspaces:
-
- arcpy.env.workspace = workspace
- arcpy.env.scratchWorkspace = os.path.join(scratch_folder, "scratch.gdb")
-
- datasets = list()
-
- walk = arcpy.da.Walk(workspace)
-
- for dirpath, dirnames, filenames in walk:
- for filename in filenames:
- datasets.append(os.path.join(dirpath, filename))
- del filename
- del dirpath, dirnames, filenames
- del walk
-
- for dataset_path in sorted(datasets):
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
-
- print(f"Dataset Name: {dataset_name}")
-
- if "Datasets" == dataset_name:
-
- print("\tDataset Table")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif "Species_Filter" == dataset_name:
-
- print("\tSpecies Filter Table")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif "Indicators" in dataset_name:
-
- print("\tIndicators")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif "LayerSpeciesYearImageName" in dataset_name:
-
- print("\tLayer Species Year Image Name")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Boundary"):
-
- print("\tBoundary")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Boundary\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Extent_Points"):
-
- print("\tExtent_Points")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Extent_Points\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Fishnet"):
-
- print("\tFishnet")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Fishnet\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Lat_Long"):
-
- print("\tLat_Long")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Lat_Long\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Region"):
-
- print("\tRegion")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Region\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Sample_Locations"):
-
- print("\tSample_Locations")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Sample_Locations\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("GRID_Points"):
-
- print("\tGRID_Points")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\GRID_Points\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif "DisMAP_Regions" == dataset_name:
-
- print("\tDisMAP_Regions")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Region\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Bathymetry"):
-
- print("\tBathymetry")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Bathymetry\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Latitude"):
-
- print("\tLatitude")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Latitude\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Longitude"):
-
- print("\tLongitude")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Longitude\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Raster_Mask"):
-
- print("\tRaster_Mask")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Raster_Mask\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Mosaic"):
-
- print("\tMosaic")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Mosaic\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith(".crf"):
-
- print("\tCRF")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\CRF\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- else:
- pass
- print("\tRegion Table")
-
- if dataset_name.endswith("IDW"):
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("GLMME"):
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- else:
- pass
-
- del dataset_name, dataset_path
-
- del workspace, datasets
-
- del workspaces
-
- # Declared Variables set in function for aprx
- del home_folder
- # Save aprx one more time and then delete
- aprx.save()
- del aprx
-
- # Declared Variables set in function
- del project_gdb, base_project_folder, metadata_folder, crfs_folder
- del project_folder, scratch_folder
-
- # Imports
- del pretty_format_xml_file
- del md
-
- # Function Parameters
- del base_project_file, project
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
-
-def export_to_inport_xml_files(base_project_file="", project=""):
- try:
- if not base_project_file or not project: raise SystemExit("parameters are missing")
-
- # Import
- from arcpy import metadata as md
-
- from dismap_tools import pretty_format_xml_file
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2)
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- base_project_folder = rf"{os.path.dirname(base_project_file)}"
- project_folder = rf"{base_project_folder}\{project}"
- project_gdb = rf"{project_folder}\{project}.gdb"
- metadata_folder = rf"{project_folder}\InPort Metadata"
- crfs_folder = rf"{project_folder}\CRFs"
- scratch_folder = rf"{project_folder}\Scratch"
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = os.path.join(scratch_folder, "scratch.gdb")
-
- datasets = [rf"{project_gdb}\Species_Filter", rf"{project_gdb}\Indicators", os.path.join(project_gdb, "DisMAP_Regions"), rf"{project_gdb}\GMEX_IDW_Sample_Locations", rf"{project_gdb}\GMEX_IDW_Mosaic", rf"{crfs_folder}\GMEX_IDW.crf"]
-
- for dataset_path in sorted(datasets):
- print(dataset_path)
-
- dataset_name = os.path.basename(dataset_path)
-
- print(f"Dataset Name: {dataset_name}")
-
- target_file_path = rf"{metadata_folder}\{dataset_name}.xml"
- custom_xslt_path = rf"{metadata_folder}\ArcGIS2InPort.xsl"
-
- dataset_md = md.Metadata(dataset_path)
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- del dataset_md
-
- try:
- pretty_format_xml_file(target_file_path)
- except Exception:
- raise Exception
-
- del target_file_path, custom_xslt_path
-
- del dataset_name, dataset_path
-
- del datasets
-
- # Declared Variables set in function
- del project_gdb, base_project_folder, metadata_folder
- del project_folder, scratch_folder, crfs_folder
-
- # Imports
- del pretty_format_xml_file
- del md
-
- # Function Parameters
- del base_project_file, project
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
-
-def create_maps(base_project_file="", project="", dataset=""):
- try:
- # Import
- from arcpy import metadata as md
-
- from dismap_tools import pretty_format_xml_file
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2)
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- base_project_folder = rf"{os.path.dirname(base_project_file)}"
- base_project_file = rf"{base_project_folder}\DisMAP.aprx"
- project_folder = rf"{base_project_folder}\{project}"
- project_gdb = rf"{project_folder}\{project}.gdb"
- metadata_folder = rf"{project_folder}\Export Metadata"
- crfs_folder = rf"{project_folder}\CRFs"
- scratch_folder = rf"{project_folder}\Scratch"
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = os.path.join(scratch_folder, "scratch.gdb")
-
- aprx = arcpy.mp.ArcGISProject(base_project_file)
-
- dataset_name = os.path.basename(dataset)
-
- print(f"Dataset Name: {dataset_name}")
-
- if dataset_name not in [cm.name for cm in aprx.listMaps()]:
- print(f"Creating Map: {dataset_name}")
- aprx.createMap(f"{dataset_name}", "Map")
- aprx.save()
- else:
- pass
-
- current_map = aprx.listMaps(f"{dataset_name}")[0]
- print(f"Current Map: {current_map.name}")
-
- if dataset_name not in [lyr.name for lyr in current_map.listLayers(f"{dataset_name}")]:
- print(f"Adding {dataset_name} to Map")
-
- map_layer = arcpy.management.MakeFeatureLayer(dataset, f"{dataset_name}")
-
- #arcpy.management.Delete(rf"{project_folder}\Layers\{dataset_name}.lyrx")
- #os.remove(rf"{project_folder}\Layers\{dataset_name}.lyrx")
-
- map_layer_file = arcpy.management.SaveToLayerFile(map_layer, rf"{project_folder}\Layers\{dataset_name}.lyrx")
- del map_layer_file
-
- map_layer_file = arcpy.mp.LayerFile(rf"{project_folder}\Layers\{dataset_name}.lyrx")
-
- arcpy.management.Delete(map_layer)
- del map_layer
-
- current_map.addLayer(map_layer_file)
- del map_layer_file
-
- aprx.save()
- else:
- pass
-
- #aprx_basemaps = aprx.listBasemaps()
- #basemap = 'GEBCO Basemap/Contours (NOAA NCEI Visualization)'
- basemap = "Terrain with Labels"
-
- current_map.addBasemap(basemap)
- del basemap
-
- # Set Reference Scale
- current_map.referenceScale = 50000000
-
- # Clear Selection
- current_map.clearSelection()
-
- current_map_cim = current_map.getDefinition('V3')
- current_map_cim.enableWraparound = True
- current_map.setDefinition(current_map_cim)
-
- # Return the layer's CIM definition
- cim_lyr = lyr.getDefinition('V3')
-
- # Modify the color, width and dash template for the SolidStroke layer
- symLvl1 = cim_lyr.renderer.symbol.symbol.symbolLayers[0]
- symLvl1.color.values = [0, 0, 0, 100]
- symLvl1.width = 1
-
- # Push the changes back to the layer object
- lyr.setDefinition(cim_lyr)
- del symLvl1, cim_lyr
-
- aprx.save()
-
- height = arcpy.Describe(dataset).extent.YMax - arcpy.Describe(dataset).extent.YMin
- width = arcpy.Describe(dataset).extent.XMax - arcpy.Describe(dataset).extent.XMin
-
- # map_width, map_height
- map_width, map_height = 8.5, 11
-
- if height > width:
- page_height = map_height; page_width = map_width
- elif height < width:
- page_height = map_width; page_width = map_height
- else:
- page_width = map_width; page_height = map_height
-
- del map_width, map_height
- del height, width
-
- if dataset_name not in [cl.name for cl in aprx.listLayouts()]:
- print(f"Creating Layout: {dataset_name}")
- aprx.createLayout(page_width, page_height, "INCH", f"{dataset_name}")
- aprx.save()
- else:
- print(f"Layout: {dataset_name} exists")
-
- #Set the default map camera to the extent of the park boundary before opening the new view
- #default camera only affects newly opened views
- lyr = current_map.listLayers(f"{dataset_name}")[-1]
-
- #
- arcpy.management.SelectLayerByAttribute(lyr, 'NEW_SELECTION', "DatasetCode in ('ENBS', 'HI', 'NEUS_SPR')")
-
- mv = current_map.openView()
- mv.panToExtent(mv.getLayerExtent(lyr, True, True))
- mv.zoomToAllLayers()
- del mv
-
- arcpy.management.SelectLayerByAttribute(lyr, 'CLEAR_SELECTION')
-
- av = aprx.activeView
- av.exportToPNG(rf"{project_folder}\Layers\{dataset_name}.png", width=288, height=192, resolution = 96, color_mode="24-BIT_TRUE_COLOR", embed_color_profile=True)
- av.exportToJPEG(rf"{project_folder}\Layers\{dataset_name}.jpg", width=288, height=192, resolution = 96, jpeg_color_mode="24-BIT_TRUE_COLOR", embed_color_profile=True)
- del av
-
- #print(current_map.referenceScale)
-
- #export the newly opened active view to PDF, then delete the new map
- #mv = aprx.activeView
- #mv.exportToPDF(r"C:\Temp\RangerStations.pdf", width=700, height=500, resolution=96)
- #aprx.deleteItem(current_map)
-
- #mv = aprx.activeView
- #mv = current_map.defaultView
- #mv.zoomToAllLayers()
- #print(mv.camera.getExtent())
- #arcpy.management.Delete(rf"{project_folder}\Layers\{dataset_name}.png")
- #arcpy.management.Delete(rf"{project_folder}\Layers\{dataset_name}.jpg")
-
- #os.remove(rf"{project_folder}\Layers\{dataset_name}.png")
- #os.remove(rf"{project_folder}\Layers\{dataset_name}.jpg")
-
-
- #mv.exportToPNG(rf"{project_folder}\Layers\{dataset_name}.png", width=288, height=192, resolution = 96, color_mode="24-BIT_TRUE_COLOR", embed_color_profile=True)
- #mv.exportToJPEG(rf"{project_folder}\Layers\{dataset_name}.jpg", width=288, height=192, resolution = 96, jpeg_color_mode="24-BIT_TRUE_COLOR", embed_color_profile=True)
- #del mv
-
- #Export the resulting imported layout and changes to JPEG
- #print(f"Exporting '{current_layout.name}'")
- #current_map.exportToJPEG(rf"{project_folder}\Layouts\{current_layout.name}.jpg", page_width, page_height)
- #current_map.exportToPNG(rf"{project_folder}\Layouts\{current_layout.name}.png", page_width, page_height)
-
- #fc_md = md.Metadata(dataset)
- #fc_md.thumbnailUri = rf"{project_folder}\Layouts\{dataset_name}.png"
- #fc_md.thumbnailUri = rf"{project_folder}\Layouts\{dataset_name}.jpg"
- #fc_md.save()
- #del fc_md
-
- aprx.save()
-
-
- # # from arcpy import metadata as md
- # #
- # # fc_md = md.Metadata(dataset)
- # # fc_md.thumbnailUri = rf"{project_folder}\Layers\{dataset_name}.png"
- # # fc_md.save()
- # # del fc_md
- # # del md
-
-## aprx.save()
-##
-## current_layout = [cl for cl in aprx.listLayouts() if cl.name == dataset_name][0]
-## print(f"Current Layout: {current_layout.name}")
-##
-## current_layout.openView()
-##
-## # Remove all map frames
-## for mf in current_layout.listElements("MapFrame_Element"): current_layout.deleteElement(mf); del mf
-##
-## # print(f'Layout Name: {current_layout.name}')
-## # print(f' Width x height: {current_layout.pageWidth} x {current_layout.pageHeight} units are {current_layout.pageUnits}')
-## # print(f' MapFrame count: {str(len(current_layout.listElements("MapFrame_Element")))}')
-## # for mf in current_layout.listElements("MapFrame_Element"):
-## # if len(current_layout.listElements("MapFrame_Element")) > 0:
-## # print(f' MapFrame name: {mf.name}')
-## # print(f' Total element count: {str(len(current_layout.listElements()))} \n')
-##
-##
-## print(f"Create a new map frame using a point geometry")
-## #Create a new map frame using a point geometry
-## #mf1 = current_layout.createMapFrame(arcpy.Point(0.01,0.01), current_map, 'New MF - Point')
-## mf1 = current_layout.createMapFrame(arcpy.Point(0.0,0.0), current_map, 'New MF - Point')
-## #mf1.elementWidth = 10
-## #mf1.elementHeight = 7.5
-## #mf1.elementWidth = page_width - 0.01
-## #mf1.elementHeight = page_height - 0.01
-## mf1.elementWidth = page_width
-## mf1.elementHeight = page_height
-
-## lyr = current_map.listLayers(f"{dataset_name}")[0]
-##
-## #Zoom to ALL selected features and export to PDF
-## #arcpy.SelectLayerByAttribute_management(lyr, 'NEW_SELECTION')
-## #mf1.zoomToAllLayers(True)
-## #arcpy.SelectLayerByAttribute_management(lyr, 'CLEAR_SELECTION')
-##
-## #Set the map frame extent to the extent of a layer
-## #mf1.camera.setExtent(mf1.getLayerExtent(lyr, False, True))
-## #mf1.camera.scale = mf1.camera.scale * 1.1 #add a slight buffer
-##
-## del lyr
-
-## print(f"Create a new bookmark set to the map frame's default extent")
-## #Create a new bookmark set to the map frame's default extent
-## bkmk = mf1.createBookmark('Default Extent', "The map's default extent")
-## bkmk.updateThumbnail()
-## del mf1
-## del bkmk
-
- # Create point text element using a system style item
- # txtStyleItem = aprx.listStyleItems('ArcGIS 2D', 'TEXT', 'Title (Serif)')[0]
- # ptTxt = aprx.createTextElement(current_layout, arcpy.Point(5.5, 4.25), 'POINT', f'{dataset_name}', 10, style_item=txtStyleItem)
- # del txtStyleItem
-
- # Change the anchor position and reposition the text to center
- # ptTxt.setAnchor('Center_Point')
- # ptTxt.elementPositionX = page_width / 2.0
- # ptTxt.elementPositionY = page_height - 0.25
- # del ptTxt
-
- # print(f"Using CIM to update border")
- # current_layout_cim = current_layout.getDefinition('V3')
- # for elm in current_layout_cim.elements:
- # if type(elm).__name__ == 'CIMMapFrame':
- # if elm.graphicFrame.borderSymbol.symbol.symbolLayers:
- # sym = elm.graphicFrame.borderSymbol.symbol.symbolLayers[0]
- # sym.width = 5
- # sym.color.values = [255, 0, 0, 100]
- # else:
- # arcpy.AddWarning(elm.name + ' has NO symbol layers')
- # current_layout.setDefinition(current_layout_cim)
- # del current_layout_cim, elm, sym
-
-## ExportLayout = True
-## if ExportLayout:
-## #Export the resulting imported layout and changes to JPEG
-## print(f"Exporting '{current_layout.name}'")
-## current_layout.exportToJPEG(rf"{project_folder}\Layouts\{current_layout.name}.jpg")
-## current_layout.exportToPNG(rf"{project_folder}\Layouts\{current_layout.name}.png")
-## del ExportLayout
-
-## #Export the resulting imported layout and changes to JPEG
-## print(f"Exporting '{current_layout.name}'")
-## current_map.exportToJPEG(rf"{project_folder}\Layouts\{current_layout.name}.jpg", page_width, page_height)
-## current_map.exportToPNG(rf"{project_folder}\Layouts\{current_layout.name}.png", page_width, page_height)
-##
-## fc_md = md.Metadata(dataset)
-## fc_md.thumbnailUri = rf"{project_folder}\Layouts\{current_layout.name}.png"
-## #fc_md.thumbnailUri = rf"{project_folder}\Layouts\{current_layout.name}.jpg"
-## fc_md.save()
-## del fc_md
-##
-## aprx.save()
-
- # aprx.deleteItem(current_map)
- #aprx.deleteItem(current_layout)
-
- del current_map
- #, current_layout
- #del page_width, page_height
- del dataset_name, dataset
-
- aprx.save()
-
- print("\nCurrent Maps & Layouts")
-
- current_maps = aprx.listMaps()
- #current_layouts = aprx.listLayouts()
-
- if current_maps:
- print("\nCurrent Maps\n")
- for current_map in current_maps:
- print(f"\tProject Map: {current_map.name}")
- del current_map
- else:
- arcpy.AddWarning("No maps in Project")
-
-## if current_layouts:
-## print(f"\nCurrent Layouts\n")
-## for current_layout in current_layouts:
-## print(f"\tProject Layout: {current_layout.name}")
-## del current_layout
-## else:
-## arcpy.AddWarning("No layouts in Project")
-
- #del current_layouts
- del current_maps
-
- # Declared Variables set in function for aprx
-
- # Save aprx one more time and then delete
- aprx.save()
- del aprx
-
- # Declared Variables set in function
- del project_gdb, base_project_folder, metadata_folder, crfs_folder
- del project_folder, scratch_folder
-
- # Imports
- del pretty_format_xml_file
- del md
-
- # Function Parameters
- del base_project_file, project
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
-
-def script_tool(project_folder=""):
- """Script code goes below"""
- try:
- from lxml import etree
- from arcpy import metadata as md
- from io import StringIO
- import dismap_tools
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"{'-' * 80}\n")
- # Imports
- #from dev_import_datasets_species_filter_csv_data import worker
- # Set basic arcpy.env variables
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
-## Backup = False
-## if Backup:
-## dismap.backup_gdb(project_gdb)
-## del Backup
-##
-## # Imports
-## del dismap
-## # Function parameters
-##
-## results = []
-##
-## try:
-##
-## CreateBasicTemplateXMLFiles = False
-## if CreateBasicTemplateXMLFiles:
-## result = create_basic_template_xml_files(base_project_file, project)
-## results.extend(result); del result
-## del CreateBasicTemplateXMLFiles
-##
-## ImportBasicTemplateXmlFiles = False
-## if ImportBasicTemplateXmlFiles:
-## result = import_basic_template_xml_files(base_project_file, project)
-## results.extend(result); del result
-## del ImportBasicTemplateXmlFiles
-##
-## CreateThumbnails = False
-## if CreateThumbnails:
-## result = create_thumbnails(base_project_file, project)
-## results.extend(result); del result
-## del CreateThumbnails
-##
-## CreateMaps = False
-## if CreateMaps:
-## result = create_maps(base_project_file, project, dataset=os.path.join(project_gdb, "DisMAP_Regions"))
-## results.extend(result); del result
-## del CreateMaps
-##
-## ExportToInportXmlFiles = False
-## if ExportToInportXmlFiles:
-## result = export_to_inport_xml_files(base_project_file, project)
-## results.extend(result); del result
-## del ExportToInportXmlFiles
-##
-## except Exception as e:
-## arcpy.AddError(str(e))
-##
-## # Variable created in function
-## del project_gdb
-## # Function parameters
-## del base_project_file, project
-
-
- # Imports
- del etree, md, StringIO, dismap_tools
- # Function Parameters
- del project_folder
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}\nCompleted: {strftime('%a %b %d %I:%M %p', localtime())}")
- arcpy.AddMessage(u"Elapsed Time {0} (H:M:S)".format(strftime("%H:%M:%S", gmtime(elapse_time))))
- arcpy.AddMessage(f"{'-' * 80}")
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722 # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
-
-if __name__ == '__main__':
- try:
-
- project_folder = arcpy.GetParameterAsText(0)
- if not project_folder:
- project_folder = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026")
- else:
- pass
-
- script_tool(project_folder)
-
- arcpy.SetParameterAsText(1, "Result")
-
- del project_folder
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dismap_project_setup v2.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/dismap_project_setup v2.py
deleted file mode 100644
index b1e1706..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dismap_project_setup v2.py
+++ /dev/null
@@ -1,134 +0,0 @@
-"""
-Script documentation
-- Tool parameters are accessed using arcpy.GetParameter() or
- arcpy.GetParameterAsText()
-- Update derived parameter values using arcpy.SetParameter() or
- arcpy.SetParameterAsText()
-"""
-import os
-import arcpy
-import traceback
-
-def script_tool(new_project_folder, project_folders):
- """Script code goes below"""
- try:
- arcpy.env.overwriteOutput = True
- aprx = arcpy.mp.ArcGISProject("CURRENT")
- aprx.save()
- home_folder = aprx.homeFolder
- if not arcpy.Exists(rf"{home_folder}\{new_project_folder}"):
- arcpy.AddMessage(f"Creating Home Folder: '{os.path.basename(home_folder)}'")
- arcpy.management.CreateFolder(home_folder, new_project_folder)
- arcpy.AddMessage(arcpy.GetMessages())
- else:
- arcpy.AddMessage(f"Home Folder: '{os.path.basename(home_folder)}' Exists")
- if not arcpy.Exists(rf"{home_folder}\{new_project_folder}\{new_project_folder}.gdb"):
- arcpy.AddMessage(f"Creating Project GDB: '{os.path.basename(home_folder)}.gdb'")
- arcpy.management.CreateFileGDB(rf"{home_folder}\{new_project_folder}", f"{new_project_folder}")
- arcpy.AddMessage(arcpy.GetMessages())
- else:
- arcpy.AddMessage(f"Project GDB: {new_project_folder}.gdb exists")
- if not arcpy.Exists(rf"{home_folder}\{new_project_folder}\Scratch"):
- arcpy.AddMessage("Creating the Scratch Folder")
- arcpy.management.CreateFolder(rf"{home_folder}\{new_project_folder}", "Scratch")
- arcpy.AddMessage(arcpy.GetMessages())
- else:
- arcpy.AddMessage(f"Scratch Folder: {new_project_folder} exists")
- if not arcpy.Exists(rf"{home_folder}\{new_project_folder}\Scratch\scratch.gdb"):
- arcpy.AddMessage("Creating the Scratch GDB")
- arcpy.management.CreateFileGDB(rf"{home_folder}\{new_project_folder}\Scratch", "scratch")
- arcpy.AddMessage(arcpy.GetMessages())
- else:
- arcpy.AddMessage("Scratch GDB Exists")
- for _project_folder in project_folders.split(";"):
- if not arcpy.Exists(rf"{home_folder}\{new_project_folder}\{_project_folder}"):
- arcpy.AddMessage(f"Creating Folder: {_project_folder}")
- arcpy.management.CreateFolder(rf"{home_folder}\{new_project_folder}", _project_folder)
- arcpy.AddMessage(arcpy.GetMessages())
- else:
- arcpy.AddMessage(f"Folder: '{_project_folder}' Exists")
- del _project_folder
- if not arcpy.Exists(rf"{home_folder}\{new_project_folder}\{new_project_folder}.aprx"):
- aprx.saveACopy(rf"{home_folder}\{new_project_folder}\{new_project_folder}.aprx")
- arcpy.AddMessage(arcpy.GetMessages())
- else:
- pass
-
- _aprx = arcpy.mp.ArcGISProject(rf"{home_folder}\{new_project_folder}\{new_project_folder}.aprx")
- # Remove maps
- _maps = _aprx.listMaps()
- if len(_maps) > 0:
- for _map in _maps:
- arcpy.AddMessage(_map.name)
- aprx.deleteItem(_map)
- del _map
- del _maps
- _aprx.save()
-
- databases = []
- databases.append({"databasePath": rf"{home_folder}\{new_project_folder}\{new_project_folder}.gdb", "isDefaultDatabase": True})
- _aprx.updateDatabases(databases)
- arcpy.AddMessage(f"Databases: {databases}")
- del databases
- _aprx.save()
-
- toolboxes = []
- toolboxes.append({"toolboxPath": rf"{home_folder}\DisMAP.atbx", "isDefaultToolbox": True})
- _aprx.updateToolboxes(toolboxes)
- arcpy.AddMessage(f"Toolboxes: {toolboxes}")
- del toolboxes
- _aprx.save()
- del _aprx
-
- # Declared variables
- del home_folder, aprx
- # Function parameters
- del new_project_folder, project_folders
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- #raise SystemExit
- except SystemExit:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- #raise SystemExit
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- #raise SystemExit
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- #raise SystemExit
- else:
- pass
- return True
- finally:
- pass
-if __name__ == "__main__":
- try:
- new_project_folder = arcpy.GetParameterAsText(0)
- project_folders = arcpy.GetParameterAsText(1)
-
- if not new_project_folder:
- new_project_folder = "September 1 2025"
- else:
- pass
-
- if not new_project_folder:
- project_folders = "CRFs;CSV_Data;Dataset_Shapefiles;Images;Layers;Metadata_Export;Publish"
- else:
- pass
-
- script_tool(new_project_folder, project_folders)
- arcpy.SetParameterAsText(3, "Result")
- del new_project_folder, project_folders
- except: # noqa: E722
- arcpy.AddMessage(arcpy.GetMessages(0))
- traceback.print_exc()
- else:
- pass
- finally:
- pass
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dismap_project_setup.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/dismap_project_setup.py
deleted file mode 100644
index d9da98d..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dismap_project_setup.py
+++ /dev/null
@@ -1,134 +0,0 @@
-"""
-Script documentation
-- Tool parameters are accessed using arcpy.GetParameter() or
- arcpy.GetParameterAsText()
-- Update derived parameter values using arcpy.SetParameter() or
- arcpy.SetParameterAsText()
-"""
-import os
-import arcpy
-import traceback
-
-def script_tool(new_project_folder, project_folders):
- """Script code goes below"""
- try:
- arcpy.env.overwriteOutput = True
- aprx = arcpy.mp.ArcGISProject("CURRENT")
- aprx.save()
- home_folder = aprx.homeFolder
- if not arcpy.Exists(rf"{home_folder}\{new_project_folder}"):
- arcpy.AddMessage(f"Creating Home Folder: '{os.path.basename(home_folder)}'")
- arcpy.management.CreateFolder(home_folder, new_project_folder)
- arcpy.AddMessage(arcpy.GetMessages())
- else:
- arcpy.AddMessage(f"Home Folder: '{os.path.basename(home_folder)}' Exists")
- if not arcpy.Exists(rf"{home_folder}\{new_project_folder}\{new_project_folder}.gdb"):
- arcpy.AddMessage(f"Creating Project GDB: '{os.path.basename(home_folder)}.gdb'")
- arcpy.management.CreateFileGDB(rf"{home_folder}\{new_project_folder}", f"{new_project_folder}")
- arcpy.AddMessage(arcpy.GetMessages())
- else:
- arcpy.AddMessage(f"Project GDB: {new_project_folder}.gdb exists")
- if not arcpy.Exists(rf"{home_folder}\{new_project_folder}\Scratch"):
- arcpy.AddMessage("Creating the Scratch Folder")
- arcpy.management.CreateFolder(rf"{home_folder}\{new_project_folder}", "Scratch")
- arcpy.AddMessage(arcpy.GetMessages())
- else:
- arcpy.AddMessage(f"Scratch Folder: {new_project_folder} exists")
- if not arcpy.Exists(rf"{home_folder}\{new_project_folder}\Scratch\scratch.gdb"):
- arcpy.AddMessage("Creating the Scratch GDB")
- arcpy.management.CreateFileGDB(rf"{home_folder}\{new_project_folder}\Scratch", "scratch")
- arcpy.AddMessage(arcpy.GetMessages())
- else:
- arcpy.AddMessage("Scratch GDB Exists")
- for _project_folder in project_folders.split(";"):
- if not arcpy.Exists(rf"{home_folder}\{new_project_folder}\{_project_folder}"):
- arcpy.AddMessage(f"Creating Folder: {_project_folder}")
- arcpy.management.CreateFolder(rf"{home_folder}\{new_project_folder}", _project_folder)
- arcpy.AddMessage(arcpy.GetMessages())
- else:
- arcpy.AddMessage(f"Folder: '{_project_folder}' Exists")
- del _project_folder
- if not arcpy.Exists(rf"{home_folder}\{new_project_folder}\{new_project_folder}.aprx"):
- aprx.saveACopy(rf"{home_folder}\{new_project_folder}\{new_project_folder}.aprx")
- arcpy.AddMessage(arcpy.GetMessages())
- else:
- pass
-
- _aprx = arcpy.mp.ArcGISProject(rf"{home_folder}\{new_project_folder}\{new_project_folder}.aprx")
- # Remove maps
- _maps = _aprx.listMaps()
- if len(_maps) > 0:
- for _map in _maps:
- arcpy.AddMessage(_map.name)
- aprx.deleteItem(_map)
- del _map
- del _maps
- _aprx.save()
-
- databases = []
- databases.append({"databasePath": rf"{home_folder}\{new_project_folder}\{new_project_folder}.gdb", "isDefaultDatabase": True})
- _aprx.updateDatabases(databases)
- arcpy.AddMessage(f"Databases: {databases}")
- del databases
- _aprx.save()
-
- toolboxes = []
- toolboxes.append({"toolboxPath": rf"{home_folder}\DisMAP.atbx", "isDefaultToolbox": True})
- _aprx.updateToolboxes(toolboxes)
- arcpy.AddMessage(f"Toolboxes: {toolboxes}")
- del toolboxes
- _aprx.save()
- del _aprx
-
- # Declared variables
- del home_folder, aprx
- # Function parameters
- del new_project_folder, project_folders
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- #raise SystemExit
- except SystemExit:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- #raise SystemExit
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- #raise SystemExit
- except: # noqa: E722 # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- #raise SystemExit
- else:
- pass
- return True
- finally:
- pass
-if __name__ == "__main__":
- try:
- new_project_folder = arcpy.GetParameterAsText(0)
- project_folders = arcpy.GetParameterAsText(1)
-
- if not new_project_folder:
- new_project_folder = "February 1 2026"
- else:
- pass
-
- if not project_folders:
- project_folders = "CRFs;CSV_Data;Dataset_Shapefiles;Images;Layers;Metadata_Export;Publish"
- else:
- pass
-
- script_tool(new_project_folder, project_folders)
- arcpy.SetParameterAsText(3, "Result")
-
- del new_project_folder, project_folders
-
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dismap_tools.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/dismap_tools.py
deleted file mode 100644
index 6b83316..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dismap_tools.py
+++ /dev/null
@@ -1,3358 +0,0 @@
-# -*- coding: utf-8 -*-
-# -------------------------------------------------------------------------------
-# Name: py
-# Purpose: Common DisMAP functions
-#
-# Author: john.f.kennedy
-#
-# Created: 12/01/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-# -------------------------------------------------------------------------------
-# built-ins first
-import os
-import sys
-import traceback
-import inspect
-
-import arcpy # third-parties second
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- filename = sys.path[0] + os.sep + "test.py"
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def parse_xml_file_format_and_save(csv_data_folder="", xml_file="", sort=False):
- try:
-
- import json
- json_path = rf"{csv_data_folder}\root_dict.json"
- #print(csv_data_folder)
- with open(json_path, "r") as json_file:
- root_dict = json.load(json_file)
- del json_file
- del json_path
- del json
-
-## root_dict = {"Esri" : 0, "dataIdInfo" : 1, "mdChar" : 2,
-## "mdContact" : 3, "mdDateSt" : 4, "mdFileID" : 5,
-## "mdLang" : 6, "mdMaint" : 7, "mdHrLv" : 8,
-## "mdHrLvName" : 9, "refSysInfo" : 10, "spatRepInfo" : 11,
-## "spdoinfo" : 12, "dqInfo" : 13, "distInfo" : 14,
-## "eainfo" : 15, "contInfo" : 16, "spref" : 17,
-## "spatRepInfo" : 18, "dataSetFn" : 19, "Binary" : 100,}
-
- from lxml import etree
-
- parser = etree.XMLParser(encoding='UTF-8', remove_blank_text=True)
- tree = etree.parse(xml_file, parser=parser) # To parse from a string, use the fromstring() function instead.
- del parser
-
- if sort:
- root = tree.getroot()
- for child in root.xpath("."):
- child[:] = sorted(child, key=lambda x: root_dict[x.tag])
- del child
- del root
- del sort
- etree.indent(tree, space=' ')
- tree.write(xml_file, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
- del tree
- del xml_file, etree
- del root_dict
- del csv_data_folder
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def print_xml_file(xml_file="", sort=False):
- try:
- root_dict = {"Esri" : 0, "dataIdInfo" : 1, "mdChar" : 2,
- "mdContact" : 3, "mdDateSt" : 4, "mdFileID" : 5,
- "mdLang" : 6, "mdMaint" : 7, "mdHrLv" : 8,
- "mdHrLvName" : 9, "refSysInfo" : 10, "spatRepInfo" : 11,
- "spdoinfo" : 12, "dqInfo" : 13, "distInfo" : 14,
- "eainfo" : 15, "contInfo" : 16, "spref" : 17,
- "spatRepInfo" : 18, "dataSetFn" : 19, "Binary" : 100,}
-
- from lxml import etree
- parser = etree.XMLParser(encoding='UTF-8', remove_blank_text=True)
- tree = etree.parse(xml_file, parser=parser) # To parse from a string, use the fromstring() function instead.
- del parser
-
- if sort:
- root = tree.getroot()
- for child in root.xpath("."):
- child[:] = sorted(child, key=lambda x: root_dict[x.tag])
- del child
- del root
- del sort
- etree.indent(tree, space=' ')
- arcpy.AddMessage(etree.tostring(tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- del tree
- del xml_file, etree
- del root_dict
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def add_fields(csv_data_folder="", in_table=""):
- try:
- # Import this Python module
- #import dev_dismap_tools
- #importlib.reload(dev_dismap_tools)
-
- table = os.path.basename(in_table)
- project_gdb = os.path.dirname(in_table)
-
- _field_definitions = field_definitions(csv_data_folder, "")
- _table_definitions = table_definitions(csv_data_folder, "")
- del csv_data_folder
-
- # set workspace environment
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = r"Scratch\\scratch.gdb"
- arcpy.SetLogMetadata(True)
-
- if "_IDW_Region" in table:
- table = "IDW_Data"
- elif "GFDL_Region" in table:
- table = "GFDL_Data"
- elif "GLMME_Region" in table:
- table = "GLMME_Data"
- elif "Indicators" in table:
- table = "Indicators"
- else:
- table = table
-
- fields = _table_definitions[table]
- del _table_definitions
-
- field_definition_list = []
- for field in fields:
- field_definition_list.append([
- _field_definitions[field]["field_name"],
- _field_definitions[field]["field_type"],
- _field_definitions[field]["field_aliasName"],
- _field_definitions[field]["field_length"],
- ])
- del field
- del fields
-
- arcpy.AddMessage(f"Adding Fields to Table: {table}")
- # arcpy.AddMessage(in_table)
- # arcpy.AddMessage(field_definition_list)
- arcpy.management.AddFields(in_table=in_table, field_description=field_definition_list, template="")
- arcpy.AddMessage("\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t")))
-
- # Declared Variables
- del field_definition_list, _field_definitions
- del project_gdb, table
- # Imports
- #del dev_dismap_tools
- # Function parameters
- del in_table
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def alter_fields(csv_data_folder="", in_table=""):
- try:
- project_gdb = os.path.dirname(in_table)
-
- _field_definitions = field_definitions(csv_data_folder, "")
- del csv_data_folder
-
- arcpy.env.workspace = project_gdb
- arcpy.SetLogMetadata(True)
-
- if arcpy.Exists(in_table):
- arcpy.AddMessage(f"Altering Field Aliases for Table: {os.path.basename(in_table)}")
- #arcpy.AddMessage(f"{table}")
-
- fields = [f for f in arcpy.ListFields(in_table) if f.type not in ["Geometry", "OID"] and f.name not in ["Shape_Area", "Shape_Length"]]
-
- for field in fields:
- field_name = field.name
- arcpy.AddMessage(f"\tAltering Field: {field_name} {field.type}")
-
- if field_name in _field_definitions:
-
- arcpy.AddMessage(f"\t\tAltering Field: {field_name} to: {_field_definitions[field_name]['field_aliasName']}")
-
- try:
- arcpy.management.AlterField(
- in_table=in_table,
- field=_field_definitions[field_name]["field_name"],
- new_field_name=_field_definitions[field_name]["field_name"],
- new_field_alias=_field_definitions[field_name]["field_aliasName"],
- field_length=_field_definitions[field_name]["field_length"],
- field_is_nullable="NULLABLE",
- clear_field_alias="DO_NOT_CLEAR",
- )
- arcpy.AddMessage("\t\t\t{0}\n".format(arcpy.GetMessages().replace("\n", "\n\t\t\t")))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
-
- elif field_name not in _field_definitions:
- arcpy.AddWarning(f"###--->>> Field: {field_name} is not in fieldDefinitions <<<---###")
- else:
- pass
- del field, field_name
- del fields
- else:
- arcpy.AddWarning(f"###--->>> Alter fields: {os.path.basename(in_table)} not found <<<---###")
-
- del _field_definitions, project_gdb, in_table
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def backup_gdb(project_gdb=""):
- try:
-
- arcpy.AddMessage("Making a backup")
- arcpy.management.Copy(project_gdb, project_gdb.replace(".gdb", f"_Backup.gdb"))
- arcpy.AddMessage("\t" + arcpy.GetMessages(0).replace("\n", "\n\t"))
-
- arcpy.AddMessage("Compacting the backup")
- arcpy.management.Compact(project_gdb.replace(".gdb", f"_Backup.gdb"))
- arcpy.AddMessage("\t" + arcpy.GetMessages(0).replace("\n", "\n\t"))
-
- del project_gdb
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def basic_metadata(csv_data_folder="", in_table=""):
- # Deprecated
- try:
-
- table = os.path.basename(in_table)
- project_gdb = os.path.dirname(in_table)
-
- metadata_dictionary = metadata_dictionary_json(csv_data_folder, "")
- del csv_data_folder
-
- # set workspace environment
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.env.scratchWorkspace = rf"Scratch\\scratch.gdb"
- arcpy.env.workspace = project_gdb
- arcpy.SetLogMetadata(True)
-
- if arcpy.Exists(table):
- arcpy.AddMessage(f"Adding metadata to: {table}")
-
- if table.endswith(".crf"):
- table = table.replace(".crf", "_Mosaic")
-
- # from arcpy import metadata as md
- # # https://pro.arcgis.com/en/pro-app/latest/arcpy/metadata/metadata-class.htm
- # dataset_md = md.Metadata(in_table)
- # dataset_md.synchronize("ALWAYS", 0)
- # dataset_md.save()
- # dataset_md.reload()
-
- # dataset_md.synchronize("NOT_CREATED", 0)
- # dataset_md.title = metadata_dictionary[table]["md_title"]
- # dataset_md.tags = metadata_dictionary[table]["md_tags"]
- # dataset_md.summary = metadata_dictionary[table]["md_summary"]
- # dataset_md.description = metadata_dictionary[table]["md_description"]
- # dataset_md.credits = metadata_dictionary[table]["md_credits"]
- # dataset_md.accessConstraints = metadata_dictionary[table]["md_access_constraints"]
- # dataset_md.save()
- # dataset_md.reload()
-
- # arcpy.AddMessage(metadata_dictionary[table]["md_title"])
- # arcpy.AddMessage(metadata_dictionary[table]["md_tags"])
- # arcpy.AddMessage(metadata_dictionary[table]["md_summary"])
- # arcpy.AddMessage(metadata_dictionary[table]["md_description"])
- # arcpy.AddMessage(metadata_dictionary[table]["md_credits"])
- # arcpy.AddMessage(metadata_dictionary[table]["md_access_constraints"])
-
- arcpy.AddMessage(f"Adding metadata to: {table} completed")
-
- #del dataset_md, md
-
- else:
- arcpy.AddWarning(f"Adding Metadata: {table} not found")
-
- del metadata_dictionary, table, project_gdb, in_table
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def check_datasets(datasets=[]):
- try:
-
- def formatDateTime(dateTime):
- from datetime import datetime, timezone
-
- d = datetime.strptime(dateTime, "%Y-%m-%dT%H:%M:%S.%f")
- d = d.replace(tzinfo=timezone.utc)
- d = d.astimezone()
- return d.strftime("%b %d %Y %I:%M:%S %p")
-
- for dataset in datasets:
- # Create a Describe object from the feature class
- #
- desc = arcpy.da.Describe(dataset)
- # Print some feature class properties
- # baseName
- # catalogPath
- # children
- # childrenExpanded
- # Examine children and print their name and dataType
- #
- # arcpy.AddMessage("Children:")
- # for child in desc.children:
- # arcpy.AddMessage("\t%s = %s" % (child.name, child.dataType))
- # dataElementType
- # dataType
- # extension
- # file
- # fullPropsRetrieved
- # metadataRetrieved
-
- arcpy.AddMessage(f"Dataset Name: {desc['name']}")
- arcpy.AddMessage(f"\tDataset Path: {desc['path']}")
- arcpy.AddMessage(f"\tDataset Type: {desc['dataType']}")
-
- if desc["dataType"] == "FeatureClass":
- # arcpy.AddMessage(f"\tFeature Type: {desc['featureType']}")
- arcpy.AddMessage(f"\tData Type: {desc['dataType']}")
- # arcpy.AddMessage(f"\tDataset Type: {desc['datasetType']}")
- arcpy.AddMessage(f"\tShape Type: {desc['shapeType']}")
- arcpy.AddMessage(f"\tDate Created: {formatDateTime(desc['dateCreated'])}")
- arcpy.AddMessage(f"\tDate Accessed: {formatDateTime(desc['dateAccessed'])}")
- arcpy.AddMessage(f"\tDate Modified: {formatDateTime(desc['dateModified'])}")
- arcpy.AddMessage(f"\tSize: {round(desc['size'] * 0.000001, 2)} MB")
- arcpy.AddMessage(f"\tSpatial Reference: {desc['spatialReference'].name}")
- # arcpy.AddMessage(f"Spatial Index: {str(desc.hasSpatialIndex)}")
- # arcpy.AddMessage(f"Has M: {desc.hasM}")
- # arcpy.AddMessage(f"Has Z: {desc.hasZ}")
- # arcpy.AddMessage(f"Shape Field Name: {desc.shapeFieldName}")
- # arcpy.AddMessage(f"Split Model: {str(desc.hasSpatialIndex)}")
- # arcpy.AddMessage(desc["fields"])
- fields = [f.name for f in desc["fields"]]
- oid = desc["OIDFieldName"]
- # Use SQL TOP to sort field values
- arcpy.AddMessage(f"\t{', '.join(fields)}")
- for row in arcpy.da.SearchCursor(dataset, fields, f"{oid} <= 5"):
- arcpy.AddMessage(f"\t{row}")
- del row
- del oid, fields
-
- ## fields = [f.name for f in desc["fields"]]
- ## oid_field_name = desc["OIDFieldName"]
- ## # Use SQL TOP to sort field values
- ## arcpy.AddMessage(f"\t{', '.join(fields)}")
- ## oids = [oid for oid in arcpy.da.SearchCursor(dataset, f"{oid_field_name}")]
- ## from random import sample
- ## random_indices = sample(oids, 5)
- ## del sample
- ## for row in arcpy.da.SearchCursor(dataset, fields, f"{oid_field_name} in {random_indices}"):
- ## arcpy.AddMessage(f"\t{row}")
- ## del row
- ## del oids, random_indices, oid_field_name, fields
-
- elif desc["dataType"] == "RasterDataset":
- arcpy.AddMessage(f"\tData Type: {desc['dataType']}")
- arcpy.AddMessage(f"\tCell Size: {desc['meanCellHeight']} x {desc['meanCellWidth']}")
- arcpy.AddMessage(f"\tExtent: {desc['extent']}")
- arcpy.AddMessage(f"\tHeight & Width: {desc['height']} x {desc['width']}")
- arcpy.AddMessage(f"\tSpatial Reference: {desc['spatialReference'].name}")
-
- # for key in sorted(desc):
- # value = str(desc[key])
- # arcpy.AddMessage(f"Key: '{key:<30}' Value: '{value:<25}'")
- # del value, key
-
- elif desc["dataType"] == "Table":
- arcpy.AddMessage(f"\tData Type: {desc['dataType']}")
- arcpy.AddMessage(f"\tDate Created: {formatDateTime(desc['dateCreated'])}")
- arcpy.AddMessage(f"\tDate Accessed: {formatDateTime(desc['dateAccessed'])}")
- arcpy.AddMessage(f"\tDate Modified: {formatDateTime(desc['dateModified'])}")
- arcpy.AddMessage(f"\tSize: {round(desc['size'] * 0.000001, 2)} MB")
- # arcpy.AddMessage(desc["fields"])
- fields = [f.name for f in desc["fields"]]
- oid = desc["OIDFieldName"]
- # Use SQL TOP to sort field values
- arcpy.AddMessage(f"\t{', '.join(fields)}")
- for row in arcpy.da.SearchCursor(dataset, fields, f"{oid} <= 5"):
- arcpy.AddMessage(f"\t{row}")
- del row
- del oid, fields
-
- elif desc["dataType"] == "MosaicDataset":
- arcpy.AddMessage(f"\t DSID: {desc['DSID']}")
- arcpy.AddMessage(f"\t JPEGQuality: {desc['JPEGQuality']}")
- arcpy.AddMessage(f"\t LERCTolerance: {desc['LERCTolerance']}")
- arcpy.AddMessage(f"\t MExtent: {desc['MExtent']}")
- arcpy.AddMessage(f"\t OIDFieldName: {desc['OIDFieldName']}")
- arcpy.AddMessage(f"\t ZExtent: {desc['ZExtent']}")
- arcpy.AddMessage(f"\t allowedCompressionMethods: {desc['allowedCompressionMethods']}")
- arcpy.AddMessage(f"\t allowedFields: {desc['allowedFields']}")
- arcpy.AddMessage(f"\t allowedMensurationCapabilities: {desc['allowedMensurationCapabilities']}")
- arcpy.AddMessage(f"\t allowedMosaicMethods: {desc['allowedMosaicMethods']}")
- arcpy.AddMessage(f"\t bandCount: {desc['bandCount']}")
- arcpy.AddMessage(f"\t baseName: {desc['baseName']}")
- arcpy.AddMessage(f"\t blendWidth: {desc['blendWidth']}")
- arcpy.AddMessage(f"\t blendWidthUnits: {desc['blendWidthUnits']}")
- arcpy.AddMessage(f"\t catalogPath: {desc['catalogPath']}")
- arcpy.AddMessage(f"\t cellSizeToleranceFactor: {desc['cellSizeToleranceFactor']}")
- arcpy.AddMessage(f"\t children: {desc['children']}")
- arcpy.AddMessage(f"\t childrenExpanded: {desc['childrenExpanded']}")
- arcpy.AddMessage(f"\t childrenNames: {desc['childrenNames']}")
- arcpy.AddMessage(f"\t clipToBoundary: {desc['clipToBoundary']}")
- arcpy.AddMessage(f"\t compressionType: {desc['compressionType']}")
- arcpy.AddMessage(f"\t dataElementType: {desc['dataElementType']}")
- arcpy.AddMessage(f"\t dataType: {desc['dataType']}")
- arcpy.AddMessage(f"\t datasetType: {desc['datasetType']}")
- arcpy.AddMessage(f"\t defaultCompressionMethod: {desc['defaultCompressionMethod']}")
- arcpy.AddMessage(f"\t defaultMensurationCapability: {desc['defaultMensurationCapability']}")
- arcpy.AddMessage(f"\t defaultMosaicMethod: {desc['defaultMosaicMethod']}")
- arcpy.AddMessage(f"\t defaultResamplingMethod: {desc['defaultResamplingMethod']}")
- arcpy.AddMessage(f"\t defaultSubtypeCode: {desc['defaultSubtypeCode']}")
- arcpy.AddMessage(f"\t endTimeField: {desc['endTimeField']}")
- arcpy.AddMessage(f"\t extent: {desc['extent']}")
- arcpy.AddMessage(f"\t featureType: {desc['featureType']}")
- arcpy.AddMessage(f"\t fields: {desc['fields']}")
- arcpy.AddMessage(f"\t file: {desc['file']}")
- arcpy.AddMessage(f"\t footprintMayContainNoData: {desc['footprintMayContainNoData']}")
- arcpy.AddMessage(f"\t format: {desc['format']}")
- arcpy.AddMessage(f"\t fullPropsRetrieved: {desc['fullPropsRetrieved']}")
- arcpy.AddMessage(f"\t hasOID: {desc['hasOID']}")
- arcpy.AddMessage(f"\t hasSpatialIndex: {desc['hasSpatialIndex']}")
- arcpy.AddMessage(f"\t indexes: {desc['indexes']}")
- arcpy.AddMessage(f"\t isInteger: {desc['isInteger']}")
- arcpy.AddMessage(f"\t isTimeInUTC: {desc['isTimeInUTC']}")
- arcpy.AddMessage(f"\t maxDownloadImageCount: {desc['maxDownloadImageCount']}")
- arcpy.AddMessage(f"\t maxDownloadSizeLimit: {desc['maxDownloadSizeLimit']}")
- arcpy.AddMessage(f"\t maxRastersPerMosaic: {desc['maxRastersPerMosaic']}")
- arcpy.AddMessage(f"\t maxRecordsReturned: {desc['maxRecordsReturned']}")
- arcpy.AddMessage(f"\t maxRequestSizeX: {desc['maxRequestSizeX']}")
- arcpy.AddMessage(f"\t maxRequestSizeY: {desc['maxRequestSizeY']}")
- arcpy.AddMessage(f"\t minimumPixelContribution: {desc['minimumPixelContribution']}")
- arcpy.AddMessage(f"\t mosaicOperator: {desc['mosaicOperator']}")
- arcpy.AddMessage(f"\t name: {desc['name']}")
- arcpy.AddMessage(f"\t orderField: {desc['orderField']}")
- arcpy.AddMessage(f"\t path: {desc['path']}")
- arcpy.AddMessage(f"\t permanent: {desc['permanent']}")
- arcpy.AddMessage(f"\t rasterFieldName: {desc['rasterFieldName']}")
- arcpy.AddMessage(f"\t rasterMetadataLevel: {desc['rasterMetadataLevel']}")
- arcpy.AddMessage(f"\t shapeFieldName: {desc['shapeFieldName']}")
- arcpy.AddMessage(f"\t shapeType: {desc['shapeType']}")
- arcpy.AddMessage(f"\t sortAscending: {desc['sortAscending']}")
- arcpy.AddMessage(f"\t spatialReference: {desc['spatialReference']}")
- arcpy.AddMessage(f"\t startTimeField: {desc['startTimeField']}")
- arcpy.AddMessage(f"\t supportsBigInteger: {desc['supportsBigInteger']}")
- arcpy.AddMessage(f"\t supportsBigObjectID: {desc['supportsBigObjectID']}")
- arcpy.AddMessage(f"\t supportsDateOnly: {desc['supportsDateOnly']}")
- arcpy.AddMessage(f"\t supportsTimeOnly: {desc['supportsTimeOnly']}")
- arcpy.AddMessage(f"\t supportsTimestampOffset: {desc['supportsTimestampOffset']}")
- arcpy.AddMessage(f"\t timeValueFormat: {desc['timeValueFormat']}")
- arcpy.AddMessage(f"\t useTime: {desc['useTime']}")
- arcpy.AddMessage(f"\t viewpointSpacingX: {desc['viewpointSpacingX']}")
- arcpy.AddMessage(f"\t viewpointSpacingY: {desc['viewpointSpacingY']}")
- arcpy.AddMessage(f"\t workspace: {desc['workspace']}")
-
- # arcpy.AddMessage(desc["fields"])
- fields = [f.name for f in desc["fields"]]
- oid = desc["OIDFieldName"]
- # Use SQL TOP to sort field values
- arcpy.AddMessage(f"\t{', '.join(fields)}")
- for row in arcpy.da.SearchCursor(dataset, fields, f"{oid} <= 5"):
- arcpy.AddMessage(f"\t{row}")
- del row
- del oid, fields
-
- elif desc["dataType"]:
- arcpy.AddWarning(desc["dataType"])
-
- else:
- arcpy.AddWarning("No data to describe!!")
-
- del desc, dataset
-
- del formatDateTime, datasets
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- traceback.print_exc()
- sys.exit()
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def check_transformation(ds, cs):
- dsc_in = arcpy.Describe(ds)
- insr = dsc_in.spatialReference
-
- # if output coordinate system is set and is different than the input coordinate system
- if cs and (cs.name != insr.name):
- translist = arcpy.ListTransformations(insr, cs, dsc_in.extent)
- trans = translist[0] if translist else ""
- # arcpy.AddMessage(f"\t{trans}\n")
- # for trans in translist:
- # arcpy.AddMessage(f"\t{trans}")
- return trans
-
-def clear_folder(folder=""):
- try:
- import shutil
-
- for filename in os.listdir(folder):
- file_path = os.path.join(folder, filename)
- try:
- if os.path.isfile(file_path) or os.path.islink(file_path):
- arcpy.AddMessage(f"Removing: {os.path.basename(file_path)}")
- os.unlink(file_path)
- elif os.path.isdir(file_path):
- arcpy.AddMessage(f"Removing: {os.path.basename(file_path)}")
- shutil.rmtree(file_path)
- except Exception as e:
- arcpy.AddError(f"Failed to delete {os.path.basename(file_path)}. Reason: {e}")
- del filename, file_path
-
- # Imports
- del shutil
- # Function Parameter
- del folder
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def compare_metadata_xml(file1="", file2=""):
- """This requires the use of the clone ArcGIS Pro env and the installation of xmldiff."""
- # https://buildmedia.readthedocs.org/media/pdf/xmldiff/latest/xmldiff.pdf
- try:
- # Test if passed workspace exists, if not raise Exception
- if not os.path.exists(rf"{file1}") or not os.path.exists(rf"{file2}"):
- raise Exception(f"{os.path.basename(file1)} or {os.path.basename(file2)} is missing!!")
-
- from lxml import etree
- from xmldiff import main, formatting
-
- # Examples
- # diff = main.diff_files(file1, file2, formatter=formatting.XMLFormatter())
- # diff = main.diff_files(file1, file2, formatter=formatting.XMLFormatter(normalize=formatting.WS_BOTH, pretty_print=True))
- # The DiffFormatter creates a script of steps to take to make file2 like file1
- __diff = main.diff_files(file1, file2, formatter=formatting.DiffFormatter())
- # If there are differences
- if __diff:
- __diff = main.diff_files(file1, file2, formatter=formatting.XMLFormatter())
- return __diff
- else:
- return None
-
- # Declared Variables
- del __diff
- # Imports
- del etree, main, formatting
- # Function Parameters
- del file1, file2
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return __diff
- finally:
- if "__diff" in locals().keys(): del __diff
- # Imports
- del etree, main, formatting
- # Function Parameters
- del file1, file2
-
-def convertSeconds(seconds):
- try:
- _min, _sec = divmod(seconds, 60)
- _hour, _min = divmod(_min, 60)
- return f"{int(_hour)}:{int(_min)}:{_sec:.3f}"
-
- except: # noqa: E722
- traceback.print_exc()
-
-##def calculate_core_species(table):
-## try:
-##
-## region_gdb = os.path.dirname(table)
-##
-## arcpy.env.workspace = region_gdb
-## arcpy.env.scratchWorkspace = region_gdb
-## arcpy.env.parallelProcessingFactor = "100%"
-## arcpy.env.overwriteOutput = True
-## arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
-## arcpy.SetLogMetadata(True)
-## arcpy.SetSeverityLevel(1) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
-## # 1—If a tool produces a warning or an error, it will throw an exception.
-## # 2—If a tool produces an error, it will throw an exception. This is the default.
-## arcpy.SetMessageLevels(["NORMAL"]) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-## del region_gdb
-##
-## # def unique_years(table):
-## # with arcpy.da.SearchCursor(table, ["Year"]) as cursor:
-## # return sorted({row[0] for row in cursor})
-##
-## def unique_values(table, field):
-## with arcpy.da.SearchCursor(table, [field]) as cursor:
-## return sorted({row[0] for row in cursor}) # Uses list comprehension
-##
-## # Get unique list of years from the table
-## all_years = unique_values(table, "Year")
-##
-## PrintListOfYears = False
-## if PrintListOfYears:
-## # Print list of years
-## arcpy.AddMessage(f"--> Years: {', '.join([str(y) for y in all_years])}")
-##
-## # Get minimum year (first year) and maximum year (last year)
-## min_year, max_year = min(all_years), max(all_years)
-##
-## # Print min year
-## arcpy.AddMessage(f"--> Min Year: {min_year} and Max Year: {max_year}")
-##
-## del min_year, max_year
-##
-## del PrintListOfYears
-##
-## arcpy.AddMessage(f"\t Creating {os.path.basename(table)} Table View")
-##
-## species_table_view = arcpy.management.MakeTableView(table, f"{os.path.basename(table)} Table View")
-##
-## unique_species = unique_values(species_table_view, "Species")
-##
-## for unique_specie in unique_species:
-## arcpy.AddMessage(f"\t\t Unique Species: {unique_specie}")
-##
-## # Replace a layer/table view name with a path to a dataset (which can be a layer file) or create the layer/table view within the script
-## # The following inputs are layers or table views: "ai_csv"
-## arcpy.management.SelectLayerByAttribute(in_layer_or_view=species_table_view, selection_type="NEW_SELECTION", where_clause=f"Species = '{unique_specie}' AND WTCPUE > 0.0 AND DistributionProjectName = 'NMFS/Rutgers IDW Interpolation'")
-##
-## all_specie_years = unique_values(species_table_view, "Year")
-##
-## # arcpy.AddMessage(f"\t\t\t Years: {', '.join([str(y) for y in all_specie_years])}")
-##
-## # arcpy.AddMessage(f"\t\t Select Species ({unique_specie}) by attribute")
-##
-## arcpy.management.SelectLayerByAttribute(in_layer_or_view=species_table_view, selection_type="NEW_SELECTION", where_clause=f"Species = '{unique_specie}'")
-##
-## # arcpy.AddMessage(f"\t Set CoreSpecies to Yes or No")
-##
-## if all_years == all_specie_years:
-## arcpy.AddMessage(f"\t\t\t {unique_specie} is a Core Species")
-## arcpy.management.CalculateField(in_table=species_table_view, field="CoreSpecies", expression="'Yes'", expression_type="PYTHON", code_block="")
-## else:
-## arcpy.AddMessage(f"\t\t\t @@@@ {unique_specie} is not a Core Species @@@@")
-## arcpy.management.CalculateField(in_table=species_table_view, field="CoreSpecies", expression="'No'", expression_type="PYTHON", code_block="")
-##
-## arcpy.management.SelectLayerByAttribute(species_table_view, "CLEAR_SELECTION")
-## del unique_specie, all_specie_years
-##
-## arcpy.management.Delete(f"{os.path.basename(table)} Table View")
-## del species_table_view, unique_species, all_years
-## del unique_values
-## del table
-##
-## except KeyboardInterrupt:
-## raise SystemExit
-## except arcpy.ExecuteWarning:
-## arcpy.AddWarning(arcpy.GetMessages(1))
-## except arcpy.ExecuteError:
-## arcpy.AddError(arcpy.GetMessages(2))
-## traceback.print_exc()
-## raise SystemExit
-## except Exception:
-## arcpy.AddError(arcpy.GetMessages(2))
-## traceback.print_exc()
-## raise SystemExit
-## except: # noqa: E722
-## arcpy.AddError(arcpy.GetMessages(2))
-## traceback.print_exc()
-## raise SystemExit
-## else:
-## # While in development, leave here. For test, move to finally
-## rk = [key for key in locals().keys() if not key.startswith('__')]
-## if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
-## return True
-## finally:
-## pass
-
-def dataset_title_dict(project_gdb=""):
- try:
- # Test if passed workspace exists, if not raise Exception
- if not arcpy.Exists(project_gdb):
- arcpy.AddError(project_gdb)
- arcpy.AddError(f"{os.path.basename(project_gdb)} is missing!!")
- sys.exit()
-
- if "Scratch" in project_gdb:
- project = os.path.basename(os.path.dirname(os.path.dirname(project_gdb)))
- else:
- project = os.path.basename(os.path.dirname(project_gdb))
-
- project_folder = os.path.dirname(project_gdb)
- crf_folder = rf"{project_folder}\CRFs"
- _credits = "These data were produced by NMFS OST."
- access_constraints = "***No Warranty*** The user assumes the entire risk related to its use of these data. NMFS is providing these data 'as is' and NMFS disclaims any and all warranties, whether express or implied, including (without limitation) any implied warranties of merchantability or fitness for a particular purpose. No warranty expressed or implied is made regarding the accuracy or utility of the data on any other system or for general or scientific purposes, nor shall the act of distribution constitute any such warranty. It is strongly recommended that careful attention be paid to the contents of the metadata file associated with these data to evaluate dataset limitations, restrictions or intended use. In no event will NMFS be liable to you or to any third party for any direct, indirect, incidental, consequential, special or exemplary damages or lost profit resulting from any use or misuse of these data."
-
- __datasets_dict = {}
-
- dataset_codes = {row[0] : [row[1], row[2], row[3], row[4]] for row in arcpy.da.SearchCursor(os.path.join(project_gdb, "Datasets"), ["DatasetCode", "PointFeatureType", "DistributionProjectCode", "Region", "Season"])}
- #for dataset_code in dataset_codes:
- # dataset_codes[dataset_code] = [s for s in dataset_codes[dataset_code] if s.strip()]
- # #print(f"Dataset Code: {dataset_code}\n\t{dataset_codes[dataset_code]}")
-
- for dataset_code in dataset_codes:
- point_feature_type = dataset_codes[dataset_code][0] if dataset_codes[dataset_code][0] else ""
- distribution_project_code = dataset_codes[dataset_code][1] if dataset_codes[dataset_code][1] else ""
- region = dataset_codes[dataset_code][2] if dataset_codes[dataset_code][2] else dataset_code.replace("_", " ")
- season = dataset_codes[dataset_code][3] if dataset_codes[dataset_code][3] else ""
-
- tags = f"DisMap, {region}, {season}" if season else f"DisMap, {region}"
- #tags = f"{tags}, distribution, seasonal distribution, fish, invertebrates, climate change, fishery-independent surveys, ecological dynamics, oceans, biosphere, earth science, species/population interactions, aquatic sciences, fisheries, range changes"
- summary = "These data were created as part of the DisMAP project to enable visualization and analysis of changes in fish and invertebrate distributions"
-
- #arcpy.AddMessage(f"Dateset Code: {dataset_code}")
-
- if distribution_project_code == "IDW":
- table_name = f"{dataset_code}_{distribution_project_code}"
- table_name_s = f"{table_name}_{date_code(project)}"
- table_name_st = f"{region} {season} Table {date_code(project)}".replace(' ',' ')
-
- #arcpy.AddMessage(f"\tProcessing: {table_name}")
-
- __datasets_dict[table_name] = {"Dataset Service" : table_name_s,
- "Dataset Service Title" : table_name_st,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"This table represents the CSV Data files in ArcGIS format",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- del table_name, table_name_s, table_name_st
-
- table_name = f"{dataset_code}_{distribution_project_code}"
- sample_locations_fc = f"{table_name}_{point_feature_type.replace(' ', '_')}"
- sample_locations_fcs = f"{table_name.replace('_IDW', '')}_{point_feature_type.replace(' ', '_')}_{date_code(project)}"
- feature_service_title = f"{region} {season} {point_feature_type} {date_code(project)}".replace(' ',' ')
- sample_locations_fcst = f"{feature_service_title}"
- del feature_service_title
-
- __datasets_dict[sample_locations_fc] = {"Dataset Service" : sample_locations_fcs,
- "Dataset Service Title" : sample_locations_fcst,
- "Tags" : tags,
- "Summary" : f"{summary}. These layers provide information on the spatial extent/boundaries of the bottom trawl surveys. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Description" : f"This survey points layer provides information on both the locations where species are caught in several NOAA Fisheries surveys and the amount (i.e., biomass weight catch per unit effort, standardized to kg/ha) of each species that was caught at each location. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #arcpy.AddMessage(f"\tSample Locations FC: {sample_locations_fc}")
- #arcpy.AddMessage(f"\tSample Locations FCS: {sample_locations_fcs}")
- #arcpy.AddMessage(f"\tSample Locations FST: {sample_locations_fcst}")
-
- del table_name, sample_locations_fc, sample_locations_fcs, sample_locations_fcst
-
- dataset_code = f"{dataset_code}_{distribution_project_code}" if distribution_project_code not in dataset_code else dataset_code
-
- # Bathymetry
- bathymetry_r = f"{dataset_code}_Bathymetry"
- bathymetry_rs = f"{dataset_code}_Bathymetry_{date_code(project)}"
- feature_service_title = f"{region} {season} Bathymetry {date_code(project)}".replace(' ',' ')
- bathymetry_rst = f"{feature_service_title}"
- del feature_service_title
-
- #arcpy.AddMessage(f"\tProcessing: {bathymetry_r}")
-
- __datasets_dict[bathymetry_r] = {"Dataset Service" : bathymetry_rs,
- "Dataset Service Title" : bathymetry_rst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"The bathymetry dataset represents the ocean depth at that grid cell.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #arcpy.AddMessage(f"\tBathymetry R: {bathymetry_r}")
- #arcpy.AddMessage(f"\tBathymetry RS: {bathymetry_rs}")
- #arcpy.AddMessage(f"\tBathymetry RST: {bathymetry_rst}")
-
- del bathymetry_r, bathymetry_rs, bathymetry_rst
-
- # Boundary
- boundary_fc = f"{dataset_code}_Boundary"
- boundary_fcs = f"{dataset_code}_Boundary_{date_code(project)}"
- feature_service_title = f"{region} {season} Boundary {date_code(project)}".replace(' ',' ')
- boundary_fcst = f"{feature_service_title}"
- del feature_service_title
-
- #arcpy.AddMessage(f"\tProcessing: {boundary_fc}")
-
- __datasets_dict[boundary_fc] = {"Dataset Service" : boundary_fcs,
- "Dataset Service Title" : boundary_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"These files contain the spatial boundaries of the NOAA Fisheries Bottom-trawl surveys. This data set covers 8 regions of the United States: Northeast, Southeast, Gulf of Mexico, West Coast, Eastern Bering Sea, Aleutian Islands, Gulf of Alaska, and Hawai'i Islands.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #arcpy.AddMessage(f"\tBoundary FC: {boundary_fc}")
- #arcpy.AddMessage(f"\tBoundary FCS: {boundary_fcs}")
- #arcpy.AddMessage(f"\tBoundary FCST: {boundary_fcst}")
-
- del boundary_fc, boundary_fcs, boundary_fcst
-
- # Boundary Line
- boundary_line_fc = f"{dataset_code}_Boundary_Line"
- boundary_line_fcs = f"{dataset_code}_Boundary_Line_{date_code(project)}"
- feature_service_title = f"{region} {season} Boundary Line {date_code(project)}".replace(' ',' ')
- boundary_line_fcst = f"{feature_service_title}"
- del feature_service_title
-
- #arcpy.AddMessage(f"\tProcessing: {boundary_line_fc}")
-
- __datasets_dict[boundary_line_fc] = {"Dataset Service" : boundary_line_fcs,
- "Dataset Service Title" : boundary_line_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"These files contain the spatial boundaries of the NOAA Fisheries Bottom-trawl surveys. This data set covers 8 regions of the United States: Northeast, Southeast, Gulf of Mexico, West Coast, Eastern Bering Sea, Aleutian Islands, Gulf of Alaska, and Hawai'i Islands.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #arcpy.AddMessage(f"\tBoundary FC: {boundary_line_fc}")
- #arcpy.AddMessage(f"\tBoundary FCS: {boundary_line_fcs}")
- #arcpy.AddMessage(f"\tBoundary FCST: {boundary_line_fcst}")
-
- del boundary_line_fc, boundary_line_fcs, boundary_line_fcst
-
- # Extent Points
- extent_points_fc = f"{dataset_code}_Extent_Points"
- extent_points_fcs = f"{dataset_code}_Extent_Points_{date_code(project)}"
- feature_service_title = f"{region} {season} Extent Points {date_code(project)}".replace(' ',' ')
- extent_points_fcst = f"{feature_service_title}"
- del feature_service_title
-
- #arcpy.AddMessage(f"\tProcessing: {extent_points_fc}")
- __datasets_dict[extent_points_fc] = {"Dataset Service" : extent_points_fcs,
- "Dataset Service Title" : extent_points_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"The Extent Points layer represents the extent of the model region.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
- #arcpy.AddMessage(f"\tExtent Points FC: {extent_points_fc}")
- #arcpy.AddMessage(f"\tExtent Points FCS: {extent_points_fcs}")
- #arcpy.AddMessage(f"\tExtent Points FCST: {extent_points_fcst}")
- del extent_points_fc, extent_points_fcs, extent_points_fcst
-
- fishnet_fc = f"{dataset_code}_Fishnet"
- fishnet_fcs = f"{dataset_code}_Fishnet_{date_code(project)}"
- feature_service_title = f"{region} {season} Fishnet {date_code(project)}".replace(' ',' ')
- fishnet_fcst = f"{feature_service_title}"
- del feature_service_title
-
- #arcpy.AddMessage(f"\tProcessing: {fishnet_fc}")
-
- __datasets_dict[fishnet_fc] = {"Dataset Service" : fishnet_fcs,
- "Dataset Service Title" : fishnet_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"The Fishnet is used to create the latitude and longitude rasters.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #arcpy.AddMessage(f"\tFishnet FC: {fishnet_fc}")
- #arcpy.AddMessage(f"\tFishnet FCS: {fishnet_fcs}")
- #arcpy.AddMessage(f"\tFishnet FCST: {fishnet_fcst}")
-
- del fishnet_fc, fishnet_fcs, fishnet_fcst
-
- indicators_tb = f"{dataset_code}_Indicators"
- indicators_tbs = f"{dataset_code}_Indicators_{date_code(project)}"
- feature_service_title = f"{region} {season} Indicators Table {date_code(project)}".replace(' ',' ')
- indicators_tbst = f"{feature_service_title}"
- del feature_service_title
-
- #arcpy.AddMessage(f"\tProcessing: {indicators_tb}")
-
- __datasets_dict[indicators_tb] = {"Dataset Service" : indicators_tbs,
- "Dataset Service Title" : indicators_tbst,
- "Tags" : tags,
- "Summary" : f"{summary}. This table provides the key metrics used to evaluate a species distribution shift. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Description" : f"These data contain the key distribution metrics of center of gravity, range limits, and depth for each species in the portal. This data set covers 8 regions of the United States: Northeast, Southeast, Gulf of Mexico, West Coast, Bering Sea, Aleutian Islands, Gulf of Alaska, and Hawai'i Islands.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #arcpy.AddMessage(f"\tIndicators T: {indicators_tb}")
- #arcpy.AddMessage(f"\tIndicators TS: {indicators_tbs}")
- #arcpy.AddMessage(f"\tIndicators TST: {indicators_tbst}")
-
- del indicators_tb, indicators_tbs, indicators_tbst
-
- lat_long_fc = f"{dataset_code}_Lat_Long"
- lat_long_fcs = f"{dataset_code}_Lat_Long_{date_code(project)}"
- feature_service_title = f"{region} {season} Lat Long {date_code(project)}".replace(' ',' ')
- lat_long_fcst = f"{feature_service_title}"
- del feature_service_title
-
- #arcpy.AddMessage(f"\tProcessing: {lat_long_fc}")
-
- __datasets_dict[lat_long_fc] = {"Dataset Service" : lat_long_fcs,
- "Dataset Service Title" : lat_long_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"The lat_long layer is used to get the latitude & longitude values to create these rasters",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #arcpy.AddMessage(f"\tLat Long FC: {lat_long_fc}")
- #arcpy.AddMessage(f"\tLat Long FCS: {lat_long_fcs}")
- #arcpy.AddMessage(f"\tLat Long FCST: {lat_long_fcst}")
-
- del lat_long_fc, lat_long_fcs, lat_long_fcst
-
- latitude_r = f"{dataset_code}_Latitude"
- latitude_rs = f"{dataset_code}_Latitude_{date_code(project)}"
- feature_service_title = f"{region} {season} Latitude {date_code(project)}".replace(' ',' ')
- latitude_rst = f"{feature_service_title}"
- del feature_service_title
-
- #arcpy.AddMessage(f"\tProcessing: {latitude_r}")
-
- __datasets_dict[latitude_r] = {"Dataset Service" : latitude_rs,
- "Dataset Service Title" : latitude_rst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"The Latitude raster",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #arcpy.AddMessage(f"\tLatitude R: {latitude_r}")
- #arcpy.AddMessage(f"\tLatitude RS: {latitude_rs}")
- #arcpy.AddMessage(f"\tLatitude RST: {latitude_rst}")
-
- del latitude_r, latitude_rs, latitude_rst
-
- layer_species_year_image_name_tb = f"{dataset_code}_LayerSpeciesYearImageName"
- layer_species_year_image_name_tbs = f"{dataset_code}_LayerSpeciesYearImageName_{date_code(project)}"
- feature_service_title = f"{region} {season} Layer Species Year Image Name Table {date_code(project)}"
- layer_species_year_image_name_tbst = f"{feature_service_title}"
- del feature_service_title
-
- #arcpy.AddMessage(f"\tProcessing: {layer_species_year_image_name_tb}")
-
- __datasets_dict[layer_species_year_image_name_tb] = {"Dataset Service" : layer_species_year_image_name_tbs,
- "Dataset Service Title" : layer_species_year_image_name_tbst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"Layer Species Year Image Name Table",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #arcpy.AddMessage(f"\tLayerSpeciesYearImageName T: {layer_species_year_image_name_tb}")
- #arcpy.AddMessage(f"\tLayerSpeciesYearImageName TS: {layer_species_year_image_name_tbs}")
- #arcpy.AddMessage(f"\tLayerSpeciesYearImageName TST: {layer_species_year_image_name_tbst}")
-
- del layer_species_year_image_name_tb, layer_species_year_image_name_tbs, layer_species_year_image_name_tbst
-
- longitude_r = f"{dataset_code}_Longitude"
- longitude_rs = f"{dataset_code}_Longitude_{date_code(project)}"
- feature_service_title = f"{region} {season} Longitude {date_code(project)}".replace(' ',' ')
- longitude_rst = f"{feature_service_title}"
- del feature_service_title
-
- #arcpy.AddMessage(f"\tProcessing: {longitude_r}")
-
- __datasets_dict[longitude_r] = {"Dataset Service" : longitude_rs,
- "Dataset Service Title" : longitude_rst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"The Longitude raster",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #arcpy.AddMessage(f"\tLongitude R: {longitude_r}")
- #arcpy.AddMessage(f"\tLongitude RS: {longitude_rs}")
- #arcpy.AddMessage(f"\tLongitude RST: {longitude_rst}")
-
- del longitude_r, longitude_rs, longitude_rst
-
- mosaic_r = f"{dataset_code}_Mosaic"
- mosaic_rs = f"{dataset_code}_Mosaic_{date_code(project)}"
- feature_service_title = f"{region} {season} {dataset_code[dataset_code.rfind('_')+1:]} Mosaic {date_code(project)}".replace(' ',' ')
- mosaic_rst = f"{feature_service_title}"
- del feature_service_title
-
- #arcpy.AddMessage(f"\tProcessing: {mosaic_r}")
-
- __datasets_dict[mosaic_r] = {"Dataset Service" : mosaic_rs,
- "Dataset Service Title" : mosaic_rst,
- "Tags" : tags,
- "Summary" : f"{summary}. These interpolated biomass layers provide information on the spatial distribution of species caught in the NOAA Fisheries fisheries-independent surveys. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Description" : f"NOAA Fisheries and its partners conduct fisheries-independent surveys in 8 regions in the US (Northeast, Southeast, Gulf of Mexico, West Coast, Gulf of Alaska, Bering Sea, Aleutian Islands, Hawai’i Islands). These surveys are designed to collect information on the seasonal distribution, relative abundance, and biodiversity of fish and invertebrate species found in U.S. waters. Over 400 species of fish and invertebrates have been identified in these surveys.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #arcpy.AddMessage(f"\tMosaic R: {mosaic_r}")
- #arcpy.AddMessage(f"\tMosaic RS: {mosaic_rs}")
- #arcpy.AddMessage(f"\tMosaic RST: {mosaic_rst}")
-
- del mosaic_r, mosaic_rs, mosaic_rst
-
- crf_r = f"{dataset_code}.crf"
- crf_rs = f"{dataset_code}_{date_code(project)}"
- feature_service_title = f"{region} {season} {dataset_code[dataset_code.rfind('_')+1:]} {date_code(project)}".replace(' ',' ')
- crf_rst = f"{feature_service_title}"
- del feature_service_title
-
- #arcpy.AddMessage(f"\tProcessing: {crf_r}")
-
- __datasets_dict[crf_r] = {"Dataset Service" : crf_rs,
- "Dataset Service Title" : crf_rst,
- "Tags" : tags,
- "Summary" : f"{summary}. These interpolated biomass layers provide information on the spatial distribution of species caught in the NOAA Fisheries fisheries-independent surveys. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Description" : f"NOAA Fisheries and its partners conduct fisheries-independent surveys in 8 regions in the US (Northeast, Southeast, Gulf of Mexico, West Coast, Gulf of Alaska, Bering Sea, Aleutian Islands, Hawai’i Islands). These surveys are designed to collect information on the seasonal distribution, relative abundance, and biodiversity of fish and invertebrate species found in U.S. waters. Over 400 species of fish and invertebrates have been identified in these surveys.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #arcpy.AddMessage(f"\tCFR R: {crf_r}")
- #arcpy.AddMessage(f"\tCFR RS: {crf_rs}")
- #arcpy.AddMessage(f"\tCFR RST: {crf_rst}")
-
- del crf_r, crf_rs, crf_rst
-
- raster_mask_r = f"{dataset_code}_Raster_Mask"
- raster_mask_rs = f"{dataset_code}_Raster_Mask_{date_code(project)}"
- feature_service_title = f"{region} {season} Raster Mask {date_code(project)}".replace(' ',' ')
- raster_mask_rst = f"{feature_service_title}"
- del feature_service_title
-
- #arcpy.AddMessage(f"\tProcessing: {raster_mask_r}")
-
- __datasets_dict[raster_mask_r] = {"Dataset Service" : raster_mask_rs,
- "Dataset Service Title" : raster_mask_rst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"Raster Mask is used for image production",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #arcpy.AddMessage(f"\tRaster_Mask R: {raster_mask_r}")
- #arcpy.AddMessage(f"\tRaster_Mask RS: {raster_mask_rs}")
- #arcpy.AddMessage(f"\tRaster_Mask RST: {raster_mask_rst}")
-
- del raster_mask_r, raster_mask_rs, raster_mask_rst
-
- region_fc = f"{dataset_code}_Region"
- region_fcs = f"{dataset_code}_Region_{date_code(project)}"
- feature_service_title = f"{region} {season} Region {date_code(project)}".replace(' ',' ')
- region_fcst = f"{feature_service_title}"
- del feature_service_title
-
- #arcpy.AddMessage(f"\tProcessing: {region_fc}")
-
- __datasets_dict[region_fc] = {"Dataset Service" : region_fcs,
- "Dataset Service Title" : region_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"These files contain the spatial boundaries of the NOAA Fisheries Bottom-trawl surveys. This data set covers 8 regions of the United States: Northeast, Southeast, Gulf of Mexico, West Coast, Bering Sea, Aleutian Islands, Gulf of Alaska, and Hawai'i Islands.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #arcpy.AddMessage(f"\tRegion FC: {region_fc}")
- #arcpy.AddMessage(f"\tRegion FCS: {region_fcs}")
- #arcpy.AddMessage(f"\tRegion FCST: {region_fcst}")
-
- del region_fc, region_fcs, region_fcst
- del tags
- else:
- pass
-
- if "Datasets" == dataset_code:
-
- #arcpy.AddMessage(f"\tProcessing: {dataset_code}")
-
- datasets_tb = dataset_code
- datasets_tbs = f"{dataset_code}_{date_code(project)}"
- datasets_tbst = f"{dataset_code} {date_code(project)}"
-
- __datasets_dict[datasets_tb] = {"Dataset Service" : datasets_tbs,
- "Dataset Service Title" : datasets_tbst,
- "Tags" : "DisMAP, Datasets",
- "Summary" : summary,
- "Description" : "This table functions as a look-up table of vales",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #arcpy.AddMessage(f"{__datasets_dict[datasets_tb]}")
- del datasets_tb, datasets_tbs, datasets_tbst
- else:
- pass
-
- if "DisMAP_Regions" == dataset_code:
-
- #arcpy.AddMessage(f"\tProcessing: {dataset_code}")
-
- regions_fc = dataset_code
- regions_fcs = f"{dataset_code}_{date_code(project)}"
- regions_fcst = f"DisMAP Regions {date_code(project)}"
-
- __datasets_dict[regions_fc] = {"Dataset Service" : regions_fcs,
- "Dataset Service Title" : regions_fcst,
- "Tags" : "DisMAP Regions",
- "Summary" : summary,
- "Description" : "These files contain the spatial boundaries of the NOAA Fisheries Bottom-trawl surveys. This data set covers 8 regions of the United States: Northeast, Southeast, Gulf of Mexico, West Coast, Eastern Bering Sea, Aleutian Islands, Gulf of Alaska, and Hawai'i Islands.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- del regions_fc, regions_fcs, regions_fcst
-
- else:
- pass
- if "Indicators" == dataset_code:
-
- #arcpy.AddMessage(f"\tProcessing: {dataset_code}")
-
- indicators_tb = f"{dataset_code}"
- indicators_tbs = f"{dataset_code}_{date_code(project)}"
- indicators_tbst = f"{dataset_code} {date_code(project)}"
-
- __datasets_dict[indicators_tb] = {"Dataset Service" : indicators_tbs,
- "Dataset Service Title" : indicators_tbst,
- "Tags" : "DisMAP, Indicators",
- "Summary" : f"{summary}. This table provides the key metrics used to evaluate a species distribution shift. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Description" : f"These data contain the key distribution metrics of center of gravity, range limits, and depth for each species in the portal. This data set covers 8 regions of the United States: Northeast, Southeast, Gulf of Mexico, West Coast, Bering Sea, Aleutian Islands, Gulf of Alaska, and Hawai'i Islands.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- del indicators_tb, indicators_tbs, indicators_tbst
- else:
- pass
-
- if "Species_Filter" == dataset_code:
-
- #arcpy.AddMessage(f"\tProcessing: {dataset_code}")
-
- species_filter_tb = dataset_code
- species_filter_tbs = f"{dataset_code}_{date_code(project)}"
- species_filter_tbst = f"Species Filter Table {date_code(project)}"
-
- __datasets_dict[species_filter_tb] = {"Dataset Service" : species_filter_tbs,
- "Dataset Service Title" : species_filter_tbst,
- "Tags" : "DisMAP, Species Filter Table",
- "Summary" : summary,
- "Description" : "This table functions as a look-up table of values",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #arcpy.AddMessage(f"\tLayerSpeciesYearImageName T: {species_filter_tb}")
- #arcpy.AddMessage(f"\tLayerSpeciesYearImageName TS: {species_filter_tbs}")
- #arcpy.AddMessage(f"\tLayerSpeciesYearImageName TST: {species_filter_tbst}")
-
- del species_filter_tb, species_filter_tbs, species_filter_tbst
-
- else:
- pass
- if "DisMAP_Survey_Info" == dataset_code:
-
- #arcpy.AddMessage(f"\tProcessing: {dataset_code}")
-
- tb = dataset_code
- tbs = f"{dataset_code}_{date_code(project)}"
- tbst = f"DisMAP Survey Info Table {date_code(project)}"
-
- __datasets_dict[tb] = {"Dataset Service" : tbs,
- "Dataset Service Title" : tbst,
- "Tags" : "DisMAP; DisMAP Survey Info Table",
- "Summary" : summary,
- "Description" : "This table functions as a look-up table of values",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #arcpy.AddMessage(f"\tLayerSpeciesYearImageName T: {tb}")
- #arcpy.AddMessage(f"\tLayerSpeciesYearImageName TS: {tbs}")
- #arcpy.AddMessage(f"\tLayerSpeciesYearImageName TST: {tbst}")
-
- del tb, tbs, tbst
-
- else:
- pass
- if "SpeciesPersistenceIndicatorPercentileBin" == dataset_code:
-
- #arcpy.AddMessage(f"\tProcessing: {dataset_code} DisMAP_Survey_Info")
-
- tb = dataset_code
- tbs = f"{dataset_code}_{date_code(project)}"
- tbst = f"Species Persistence Indicator Percentile Bin Table {date_code(project)}"
-
- __datasets_dict[tb] = {"Dataset Service" : tbs,
- "Dataset Service Title" : tbst,
- "Tags" : "DisMAP; Species Persistence Indicator Percentile Bin Table",
- "Summary" : summary,
- "Description" : "This table functions as a look-up table of values",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #arcpy.AddMessage(f"\tLayerSpeciesYearImageName T: {tb}")
- #arcpy.AddMessage(f"\tLayerSpeciesYearImageName TS: {tbs}")
- #arcpy.AddMessage(f"\tLayerSpeciesYearImageName TST: {tbst}")
-
- del tb, tbs, tbst
-
- else:
- pass
- if "SpeciesPersistenceIndicatorTrend" == dataset_code:
-
- #arcpy.AddMessage(f"\tProcessing: {dataset_code}")
-
- tb = dataset_code
- tbs = f"{dataset_code}_{date_code(project)}"
- tbst = f"Species Persistence Indicator Trend Table {date_code(project)}"
-
- __datasets_dict[tb] = {"Dataset Service" : tbs,
- "Dataset Service Title" : tbst,
- "Tags" : "DisMAP; Species Persistence Indicator Trend Table",
- "Summary" : summary,
- "Description" : "This table functions as a look-up table of values",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #arcpy.AddMessage(f"\tLayerSpeciesYearImageName T: {tb}")
- #arcpy.AddMessage(f"\tLayerSpeciesYearImageName TS: {tbs}")
- #arcpy.AddMessage(f"\tLayerSpeciesYearImageName TST: {tbst}")
-
- del tb, tbs, tbst
-
- else:
- pass
- #arcpy.AddMessage(f"\tProcessing: {dataset_code}")
- #table = dataset_code
- #table_s = f"{dataset_code}_{date_code(project)}"
- #table_st = f"{table_s.replace('_',' ')} {date_code(project)}"
- #arcpy.AddMessage(f"\tProcessing: {table_s}")
- #__datasets_dict[table] = {"Dataset Service" : table_s,
- # "Dataset Service Title" : table_st,
- # "Tags" : f"DisMAP, {table}",
- # "Summary" : summary,
- # "Description" : "Unknown table",
- # "Credits" : _credits,
- # "Access Constraints" : access_constraints}
- #arcpy.AddMessage(f"\tTable: {table}")
- #arcpy.AddMessage(f"\tTable TS: {table_s}")
- #arcpy.AddMessage(f"\tTable TST: {table_st}")
- #del table, table_s, table_st
- #arcpy.AddWarning(f"{dataset_code} is missing")
-
- del summary
- del point_feature_type, distribution_project_code, region, season
- del dataset_code
-
- del _credits, access_constraints
-
- del dataset_codes
- del project_folder, crf_folder
- del project, project_gdb
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- traceback.print_exc()
- sys.exit()
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except SystemExit:
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- if "tags" in locals().keys(): del tags
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return __datasets_dict
- finally:
- if "__datasets_dict" in locals().keys(): del __datasets_dict
-
-def date_code(version):
- try:
- from datetime import datetime
- from time import strftime
-
- _date_code = ""
-
- if version.isdigit():
- # The version value is 'YYYYMMDD' format (20230501)
- # and is converted to 'Month Day and Year' (i.e. May 1 2023)
- _date_code = datetime.strptime(version, "%Y%m%d").strftime("%B %#d %Y")
- elif not version.isdigit():
- # The version value is 'Month Day and Year' (i.e. May 1 2023)
- # and is converted to 'YYYYMMDD' format (20230501)
- _date_code = datetime.strptime(version, "%B %d %Y").strftime("%Y%m%d")
- else:
- _date_code = "error"
- # Imports
- del datetime, strftime
- del version
-
- import copy
- __results = copy.deepcopy(_date_code)
- del _date_code, copy
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return __results
- finally:
- if "__results" in locals().keys(): del __results
-
-def dTypesCSV(csv_data_folder="", table=""):
- try:
-## if "IDW" in table:
-## table = "IDW_Data"
-## elif "GLMME" in table:
-## table = "GLMME_Data"
-## elif "GFDL" in table:
-## table = "GFDL_Data"
-## elif "Indicators" in table:
-## table = "Indicators"
-##
-## ## elif "DisMAP_Regions" in table:
-## ## table = "DisMAP_Regions"
-## ##
-## ## elif "Datasets" in table:
-## ## table = "Datasets"
-## ##
-## ## elif "Datasets" in table:
-## ## table = "Datasets"
-## ##
-## ## elif "Datasets" in table:
-## ## table = "Datasets"
-##
-## else:
-## table = table
-
- _table_definitions = table_definitions(csv_data_folder, "")
- for key in _table_definitions:
- #arcpy.AddMessage(key, _table_definitions[key])
- del key
-
- fields = _table_definitions[table.replace(".csv", "")]
-
- field_csv_dtypes = {k.replace(" ", "_") : "str" for k in _table_definitions[table.replace(".csv", "")]}
-
- del fields, _table_definitions
- del csv_data_folder, table
-
- # Import
- import copy
- __results = copy.deepcopy(field_csv_dtypes)
- del field_csv_dtypes, copy
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return __results
- finally:
- if "__results" in locals().keys(): del __results
-
-def dTypesGDB(csv_data_folder="", table=""):
- try:
-## if "IDW" in table:
-## table = "IDW_Data"
-## elif "GLMME" in table:
-## table = "GLMME_Data"
-## elif "GFDL" in table:
-## table = "GFDL_Data"
-## else:
-## pass
-
- _field_definitions = field_definitions(csv_data_folder, "")
- _table_definitions = table_definitions(csv_data_folder, "")
-
- fields = _table_definitions[table.replace(".csv", "")]
-
- field_gdb_dtypes = []
- for field in fields:
- field_definition = _field_definitions[field]
- # arcpy.AddMessage(field_definition["field_type"])
- # fd = field_definition[:-2]
- # del fd[2], field_definition
- if field_definition["field_type"] == "TEXT" or field_definition["field_type"] == "String":
- field_dtype = f"U{field_definition['field_length']}"
- elif field_definition["field_type"] == "SHORT" or field_definition["field_type"] == "Integer":
- # np.dtype('u4') == dtype('uint32')
- #field_dtype = f"U4"
- field_dtype = f"u4"
- elif field_definition["field_type"] == "DOUBLE" or field_definition["field_type"] == "Double":
- # np.dtype('d') == dtype('float64'), np.dtype('f') == dtype('float32'), np.dtype('f8') == dtype('float64')
- field_dtype = f"d"
- elif field_definition["field_type"] == "DATE" or field_definition["field_type"] == "Date":
- field_dtype = f"M8[us]"
- else:
- field_dtype = ""
- field_gdb_dtypes.append((f"{field}", f"{field_dtype}"))
- del field_definition, field, field_dtype
- del fields
-
- del _field_definitions, _table_definitions
-
- del table, csv_data_folder
-
- import copy
- __results = copy.deepcopy(field_gdb_dtypes)
- del field_gdb_dtypes, copy
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return __results
- finally:
- if "__results" in locals().keys(): del __results
-
-def export_metadata(csv_data_folder="", in_table=""):
- # Deprecated
- try:
- table = os.path.basename(in_table)
- ws = os.path.dirname(in_table)
- project_folder = os.path.dirname(ws)
- # csv_data_folder = os.path.join(project_folder, "CSV_Data")
- project = os.path.basename(project_folder)
- version = project[7:]
- del in_table, project_folder, project, version, csv_data_folder
-
- ws_type = arcpy.Describe(ws).workspaceType
-
- if ws_type == "LocalDatabase":
- os.chdir(os.path.dirname(ws))
- elif ws_type == "FileSystem":
- os.chdir(ws)
- elif ws_type == "RemoteDatabase":
- pass
- else:
- pass
- del ws_type
-
- cwd = os.getcwd()
-
- # ArcPy Environments
- # Set the overwriteOutput to True
- arcpy.env.overwriteOutput = True
- # Use all of the cores on the machine.
- arcpy.env.parallelProcessingFactor = "100%"
- # Set the scratch workspace
- arcpy.env.scratchWorkspace = rf"Scratch\\scratch.gdb"
- # Set the workspace to the workspace
- arcpy.env.workspace = ws
-
- # Set Log Metadata to False in order to not record all geoprocessing
- # steps in metadata
- arcpy.SetLogMetadata(True)
-
- arcpy.AddMessage(f"Dataset: {table}")
-
- # Process: Export Metadata
- arcpy.AddMessage(f"\tExporting Metadata Object for Dataset: {table}")
-
- # https://pro.arcgis.com/en/pro-app/latest/arcpy/metadata/metadata-class.htm
- from arcpy import metadata as md
-
- dataset_md = md.Metadata(table)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- dataset_md.reload()
-
- arcpy.AddMessage(f"\t\tStep 1: Saving the metadata file for: {table} as an EXACT_COPY")
- out_xml = os.path.join(cwd, "Export Metadata", f"{table} Step 1 EXACT_COPY.xml")
- dataset_md.saveAsXML(out_xml, "EXACT_COPY")
- pretty_format_xml_file(out_xml)
- del out_xml
-
- arcpy.AddMessage(f"\t\tStep 2: Saving the metadata file for: {table} as a TEMPLATE")
- out_xml = os.path.join(cwd, "Export Metadata", f"{table} Step 2 TEMPLATE.xml")
- dataset_md.saveAsXML(out_xml, "TEMPLATE")
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md, md
-
- # Declared variable
- del ws, table, cwd
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return __results
- finally:
- if "__results" in locals().keys(): del __results
-
-def field_definitions(csv_data_folder="", field=""):
- try:
- import json, copy
-
- # Read a File
- with open(os.path.join(csv_data_folder, "field_definitions.json"), "r") as json_file:
- try:
- _field_definitions = json.load(json_file)
- except: # noqa: E722
- arcpy.AddError(f"CSV Data: {csv_data_folder}")
- arcpy.AddError(f"Field Defs: {json_file.name}")
- sys.exit(0)
- del json_file
-
- if not field: # if ""
- # Returns a dictionaty of field definitions
- __results = copy.deepcopy(_field_definitions)
- elif field: # If a field was passed, then return
- if field in _field_definitions:
- __results = copy.deepcopy(_field_definitions[field])
- else:
- __results = False
- else:
- pass
- del _field_definitions
- # Imports copy
- del json, copy
- # Function parameters
- del csv_data_folder, field
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return __results
- finally:
- if "__results" in locals().keys(): del __results
-
-def get_encoding_index_col(csv_file):
- import chardet
- import pandas as pd
- from pathlib import Path
- # Open the file in binary mode
- with open(csv_file, 'rb') as f:
- # Read the file's content
- data = f.read()
- # Detect the encoding using chardet.detect()
- encoding_result = chardet.detect(data)
- # Retrieve the encoding information
- encoding = encoding_result['encoding']
- del f, data, encoding_result
- # Print the detected encoding
- #arcpy.AddMessage("Detected Encoding:", encoding)
-
- path = Path(csv_file)
- path.write_text(path.read_text(encoding=encoding), encoding="utf8")
- del path
-
- dtypes = {}
- # Read the CSV file into a DataFrame
- df = pd.read_csv(csv_file, encoding = encoding, delimiter = ",",)
- # Analyze the data types and lengths
- for column in df.columns: dtypes[column] = df[column].dtype; del column
- first_column = list(dtypes.keys())[0]
- index_column = 0 if first_column == "Unnamed: 0" else None
- # Declared Variables
- del df, dtypes, first_column
-
- # Import
- del chardet, pd, Path
-
- return encoding, index_column
-
-def get_transformation(gsr_wkt="", psr_wkt=""):
- gsr = arcpy.SpatialReference()
- gsr.loadFromString(gsr_wkt)
- # arcpy.AddMessage(f"\tGSR: {gsr.name}")
-
- psr = arcpy.SpatialReference()
- psr.loadFromString(psr_wkt)
- # arcpy.AddMessage(f"\tPSR: {psr.name}")
-
- transformslist = arcpy.ListTransformations(gsr, psr)
- transform = transformslist[0] if transformslist else ""
- # arcpy.AddMessage(f"\t\tTransformation: {transform}\n")
- # for transform in transformslist:
- # arcpy.AddMessage(f"\t{transform}")
-
- del gsr_wkt, psr_wkt
-
- return transform
-
-def import_metadata(csv_data_folder="", dataset=""):
- try:
- #arcpy.AddMessage(csv_data_folder)
- #arcpy.AddMessage(dataset)
- if len(csv_data_folder) == 0 or len(dataset) == 0:
- arcpy.AddError(f"{os.path.basename(csv_data_folder)} or {os.path.basename(dataset)} is empty")
- raise SystemExit
- else:
- pass
- # Import
- from arcpy import metadata as md
-
- #arcpy.AddMessage(f"{csv_data_folder}")
- #arcpy.AddMessage(f"{dataset}")
-
- dataset_name = os.path.basename(dataset)
- project_gdb = os.path.dirname(dataset)
-
- #arcpy.AddMessage(f"{dataset_name}")
- #arcpy.AddMessage(f"{project_gdb}")
-
- #if dataset_name.endswith(".crf"):
- # dataset_name = dataset_name.replace(".crf", "_CRF")
- # #_project = os.path.basename(os.path.dirname(os.path.dirname(dataset)))
- # #project_gdb = rf"{os.path.dirname(os.path.dirname(dataset))}\{_project}.gdb"
- # #del _project
- #else:
- # pass
- # #project_gdb = os.path.dirname(dataset)
-
- #arcpy.AddMessage(f"{'-' * 10}")
- #arcpy.AddError(project_gdb)
- #arcpy.AddError(csv_data_folder)
- #arcpy.AddError(dataset)
- #arcpy.AddMessage(f"{'-' * 10}")
- #raise SystemExit
-
- # Test if passed workspace exists, if not raise Exception
- if not arcpy.Exists(project_gdb):
- arcpy.AddError(f"{os.path.basename(project_gdb)} is missing!!")
- sys.exit()
- raise SystemExit
-
- #arcpy.AddMessage(csv_data_folder)
-
- project_folder = os.path.dirname(csv_data_folder)
- metadata_folder = rf"{project_folder}\Metadata_Export"
-
- # ArcPy Environments
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = os.path.join(os.path.dirname(project_gdb), "Scratch\\scratch.gdb")
- arcpy.SetLogMetadata(True)
-
- try:
- arcpy.AddMessage("Create Metadata Dictionary")
- metadata_dictionary = dataset_title_dict(project_gdb)
- if metadata_dictionary:
- pass
- #for key in metadata_dictionary:
- # arcpy.AddMessage(f"{key}, {metadata_dictionary[key]}")
- # del key
- elif not metadata_dictionary:
- arcpy.AddWarning("Metadata Dictionary is empty")
- else:
- pass
- except: # noqa: E722
- traceback.print_exc()
- raise SystemExit
-
- arcpy.AddMessage(f"Metadata for: {dataset_name} dataset")
-
- # arcpy.AddMessage(f"\tDataset Service: {datasets_dict[dataset]['Dataset Service']}")
- # arcpy.AddMessage(f"\tDataset Service Title: {datasets_dict[dataset]['Dataset Service Title']}")
-
- # Assign the Metadata object's content to a target item
- dataset_md = md.Metadata(dataset)
- #resource_citation_contacts = rf"{metadata_folder}\resource_citation_contacts.xml"
- resource_citation_contacts = rf"{metadata_folder}\contacts.xml"
- #arcpy.AddMessage(resource_citation_contacts)
- dataset_md.importMetadata(resource_citation_contacts)
- dataset_md.save()
- dataset_md.synchronize("OVERWRITE")
- dataset_md.save()
- dataset_md.synchronize('ALWAYS')
- dataset_md.save()
- del resource_citation_contacts #, poc_template_md
- # Create a new Metadata object and add some content to it
- # https://pro.arcgis.com/en/pro-app/latest/arcpy/metadata/metadata-class.htm
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
- dataset_md.synchronize('ALWAYS')
- dataset_md.save()
- dataset_md.reload()
- out_xml = rf"{metadata_folder}\{dataset_md.title}.xml"
- #dataset_md.saveAsXML(out_xml, "REMOVE_ALL_SENSITIVE_INFO")
- #dataset_md.saveAsXML(out_xml, "REMOVE_MACHINE_NAMES")
- dataset_md.saveAsXML(out_xml)
-
- parse_xml_file_format_and_save(csv_data_folder=csv_data_folder, xml_file=out_xml, sort=True)
- del out_xml
-
- del dataset_md
-
- # Import
- del md
- # Declared variable
- del metadata_dictionary
- del dataset_name, project_gdb, metadata_folder, project_folder
-
- # Function parameters
- del dataset, csv_data_folder
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- traceback.print_exc()
- sys.exit()
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except SystemExit:
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- pass
-
-def metadata_dictionary_json(csv_data_folder="", dataset_name=""):
- try:
- import json
-
- # Read a File
- with open(rf"{csv_data_folder}\metadata_dictionary.json", "r") as json_file:
- metadata_dictionary = json.load(json_file)
- del json_file, json, csv_data_folder
-
- if not dataset_name:
- __results = metadata_dictionary
- elif dataset_name:
- __results = metadata_dictionary[dataset_name]
- else:
- __results = None
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except SystemExit:
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return __results
- finally:
- if "__results" in locals().keys(): del __results
-
-def pretty_format_xml_file(metadata=""):
- try:
- # xml.etree.ElementTree Imports
- import xml.etree.ElementTree as ET
-
- #arcpy.AddMessage(f"###--->>> Converting metadata file: {os.path.basename(metadata)} to pretty format")
- if os.path.isfile(metadata):
- tree = ET.ElementTree(file=metadata)
- root = tree.getroot()
- tree = ET.ElementTree(root)
- ET.indent(tree, space="\t", level=0)
- xmlstr = ET.tostring(root, encoding='UTF-8').decode("UTF-8")
- xmlstr = xmlstr.replace(' Sync="TRUE">\n', ' Sync="TRUE">')
- xmlstr = xmlstr.replace(' Sync="FALSE">\n', ' Sync="FALSE">')
- xmlstr = xmlstr.replace(' value="eng">\n', ' value="eng">')
- xmlstr = xmlstr.replace(' value="US">\n', ' value="US">')
- xmlstr = xmlstr.replace(' value="001">\n', ' value="001">')
- xmlstr = xmlstr.replace(' value="002">\n', ' value="002">')
- xmlstr = xmlstr.replace(' value="003">\n', ' value="003">')
- xmlstr = xmlstr.replace(' value="004">\n', ' value="004">')
- xmlstr = xmlstr.replace(' value="005">\n', ' value="005">')
- xmlstr = xmlstr.replace(' value="006">\n', ' value="006">')
- xmlstr = xmlstr.replace(' value="007">\n', ' value="007">')
- xmlstr = xmlstr.replace(' value="008">\n', ' value="008">')
- xmlstr = xmlstr.replace(' value="009">\n', ' value="009">')
- xmlstr = xmlstr.replace(' value="010">\n', ' value="010">')
- xmlstr = xmlstr.replace(' value="011">\n', ' value="011">')
- xmlstr = xmlstr.replace(' value="012">\n', ' value="012">')
- xmlstr = xmlstr.replace(' value="013">\n', ' value="013">')
- xmlstr = xmlstr.replace(' value="014">\n', ' value="014">')
- xmlstr = xmlstr.replace(' value="015">\n', ' value="015">')
- xmlstr = xmlstr.replace(' code="0">\n', ' code="0">')
- xmlstr = xmlstr.replace('\n', '',)
- xmlstr = xmlstr.replace('\n', '')
-
- xmlstr = xmlstr.replace("", '')
- xmlstr = xmlstr.replace("", '')
- xmlstr = xmlstr.replace("", '')
-
- xmlstr = xmlstr.replace('Sync="FALSE"', 'Sync="TRUE"')
-
- try:
- with open(metadata, "w") as f:
- f.write(xmlstr)
- del f
- except: # noqa: E722
- arcpy.AddError(f"The metadata file: {os.path.basename(metadata)} can not be overwritten!!")
- del xmlstr, tree, root
- else:
- arcpy.AddWarning(f"\t###--->>> {os.path.basename(metadata)} is missing!! <<<---###")
- arcpy.AddWarning(f"\t###--->>> {metadata} <<<---###")
- # Declared variable
- del metadata, ET
-
- except KeyboardInterrupt:
- raise SystemExit
- except arcpy.ExecuteWarning:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- raise SystemExit
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- raise SystemExit
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- raise SystemExit
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- raise SystemExit
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def pretty_format_xml_files(metadata_folder=""):
- try:
- arcpy.env.overwriteOutput = True
- arcpy.env.workspace = metadata_folder
-
- xml_files = [rf"{metadata_folder}\{xml}" for xml in arcpy.ListFiles("*.xml")]
- for xml_file in xml_files:
- arcpy.AddMessage(os.path.basename(xml_file))
- pretty_format_xml_file(xml_file)
- del xml_file
-
- # Declared Variables declared in the function
- del xml_files
-
- # Function paramters
- del metadata_folder
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return __results
- finally:
- if "__results" in locals().keys(): del __results
-
-def table_definitions(csv_data_folder="", dataset_name=""):
- try:
- #arcpy.AddMessage(dataset_name)
- #arcpy.AddMessage(csv_data_folder)
- import json, copy
-
- # Read a File
- with open(os.path.join(csv_data_folder, "table_definitions.json"), "r") as json_file:
- _table_definitions = json.load(json_file)
- del json_file
-
- if not dataset_name or dataset_name == "":
- # Return a dictionary of all values
- __results = copy.deepcopy(_table_definitions)
- elif dataset_name:
- arcpy.AddMessage(f"IN: {dataset_name}")
-## if "_IDW" in dataset_name:
-## dataset_name = "IDW_Data"
-## elif "_GLMME" in dataset_name:
-## dataset_name = "GLMME_Data"
-## elif "_GFDL" in dataset_name:
-## dataset_name = "GFDL_Data"
-## else:
-## dataset_name = dataset_name
-## # arcpy.AddMessage(f"OUT: {dataset_name}")
- __results = copy.deepcopy(_table_definitions[dataset_name])
- else:
- arcpy.AddError("something wrong")
- raise SystemExit
-
- # Declared Variables created in function
- del _table_definitions
- # Import
- del json, copy
- # Function parameters
- del csv_data_folder, dataset_name
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return __results
- finally:
- if "__results" in locals().keys(): del __results
-
-
-# #
-# Function: unique_years
-# Gets the unique years in a table
-# @param string table: The name of the layer
-# @return array: a sorted year array so we can go in order.
-# #
-def unique_values(table, field):
- #arcpy.AddMessage(table)
- with arcpy.da.SearchCursor(table, [field]) as cursor:
- return sorted({row[0] for row in cursor}) # Uses list comprehension
-
-# #
-# Function: unique_years
-# Gets the unique years in a table
-# @param string table: The name of the layer
-# @return array: a sorted year array so we can go in order.
-# #
-def unique_years(table):
- #arcpy.AddMessage(table)
- arcpy.management.SelectLayerByAttribute( table, "CLEAR_SELECTION" )
- arcpy.management.SelectLayerByAttribute( table, "NEW_SELECTION", "Year IS NOT NULL")
- with arcpy.da.SearchCursor(table, ["Year"]) as cursor:
- return sorted({row[0] for row in cursor})
-
-def test_bed_1(project_gdb=""):
-## raise SystemExit(traceback.print_exc())
-## finally:
-## if "results" in locals().keys(): del results
- try:
-
- base_project_folder = os.path.dirname(os.path.dirname(__file__))
-
- project_gdb = rf"{base_project_folder}\{project}\{project}.gdb"
-
- del base_project_folder
-
- # Test if passed workspace exists, if not raise SystemExit
- if not arcpy.Exists(fr"{project_gdb}"):
- raise SystemExit(f"{os.path.basename(project_gdb)} is missing!!")
- else:
- pass
-
- ## # Write to File
- ## with open('fieldDefinitions.json', 'w') as json_file:
- ## json.dump(fieldDefinitions(), json_file, indent=4)
- ## del json_file
- ##
- ## # Write to File
- ## with open('tableDefinitions.json', 'w') as json_file:
- ## json.dump(tableDefinitions(), json_file, indent=4)
- ## del json_file
-
- ## # Read a File
- ## with open('fieldDefinitions.json', 'r') as json_file:
- ## field_definitions = json.load(json_file)
- ## for field_definition in field_definitions:
- ## arcpy.AddMessage(f'Field: {field_definition}')
- ## for key in field_definitions[field_definition]:
- ## arcpy.AddMessage(f"\t{key:<17} : {field_definitions[field_definition][key]}")
- ## del field_definition
- ## #del _field_definitions
- ## del json_file
-
- ## # Read a File
- ## with open('tableDefinitions.json', 'r') as json_file:
- ## table_definitions = json.load(json_file)
- ## for table_definition in table_definitions:
- ## arcpy.AddMessage(f"Table: {table_definition}")
- ## table_fields = table_definitions[table_definition]
- ## for table_field in table_fields:
- ## #arcpy.AddMessage(f"\tField Name: {field}")
- ## arcpy.AddMessage(f"\tField Name: {table_field:<17}")
- ## for key in field_definitions[table_field]:
- ## arcpy.AddMessage(f"\t\t{key:<17} : {field_definitions[table_field][key]}")
- ## del key
- ## del table_field
- ## del table_fields
- ## del table_definition
- ## del _table_definitions
- ## del json_file
- ## del _field_definitions
- ##
- ## # Read a File
- ## with open('fieldDefinitions.json', 'r') as json_file:
- ## field_definitions = json.load(json_file)
- ## del json_file
- ##
- ## # Read a File
- ## with open('tableDefinitions.json', 'r') as json_file:
- ## table_definitions = json.load(json_file)
- ## del json_file
- ##
- ## # arcpy.AddMessage(field_definitions["Species"]["field_name"])
- ## arcpy.AddMessage(table_definitions["Datasets"])
- ##
- ## del _field_definitions
- ## del _table_definitions
-
- ## project_name = os.path.basename(os.path.dirname(csv_data_folder))
- ## arcpy.AddMessage(project_name)
- ## arcpy.AddMessage(date_code(date_code(project_name)))
- ## del project_name
-
- # # # ###--->>>
-
- ## tables = ["Datasets", "DisMAP_Regions", "AI_IDW"]
- ## for table in tables:
- ## field_csv_dtypes = dTypesCSV(csv_data_folder, table)
- ##
- ## arcpy.AddMessage(table)
- ## for field_csv_dtype in field_csv_dtypes:
- ## arcpy.AddMessage(f"\t{field_csv_dtype}"); del field_csv_dtype
- ## del field_csv_dtypes
- ##
- ## field_gdb_dtypes = dTypesGDB(csv_data_folder, table)
- ## for field_gdb_dtype in field_gdb_dtypes:
- ## arcpy.AddMessage(f"\t{field_gdb_dtype}"); del field_gdb_dtype
- ## del field_gdb_dtypes
- ##
- ## del table
- ## del tables
-
- ## _field_definitions = fieldDefinitions(csv_data_folder, "")
- ## for field in field_definitions:
- ## arcpy.AddMessage(field)
- ## arcpy.AddMessage(f"\t{field_definitions[field]}")
- ## del field
- ## del _field_definitions
-
-## # First Test
-## _table_definitions = table_definitions(csv_data_folder, "")
-## #arcpy.AddMessage(table_definitions)
-## for table in table_definitions:
-## arcpy.AddMessage(table)
-## arcpy.AddMessage(f"\t{table_definitions[table]}");
-## del table
-## del _table_definitions
-
- ## # Second Test
- ## table_definition = tableDefinitions(csv_data_folder, "")
- ## arcpy.AddMessage(table_definition); del table_definition
- ##
- ## #table = "DataSets"
- ## #arcpy.AddMessage(table_definitions[table])
- ## #arcpy.AddMessage(f"\t"); del table
-
- ## # Third Test
- ## tables = ["Datasets", "DisMAP_Regions", "AI_IDW",]
- ## for table in tables:
- ## table_definition = tableDefinitions(csv_data_folder, table)
- ## arcpy.AddMessage(f"Table: {table}:\n\t{', '.join(table_definition)}"); del table_definition
- ## del table
- ## del tables
-
- ## field = "DMSLat"
- ## _field_definitions = fieldDefinitions(csv_data_folder, field)
- ## if field_definitions:
- ## for field in field_definitions:
- ## arcpy.AddMessage(field)
- ## #arcpy.AddMessage(f"\t{field_definitions[field]}")
- ## del field
- ## else:
- ## arcpy.AddMessage(f"Field: {field} is not in fieldDefinitions")
- ## del _field_definitions, field
-
- ## import dev_dismap_tools
- ##
- ## csv_file=r"{os.environ['USERPROFILE']}\Documents\ArcGIS\Projects\DisMAP-ArcGIS-Analysis\April 1 2023\CSV_Data\Datasets.csv"
- ## #csv_file=r"{os.environ['USERPROFILE']}\Documents\ArcGIS\Projects\DisMAP-ArcGIS-Analysis\April 1 2023\CSV_Data\Species_Filter.csv"
- ##
- ## table = os.path.basename(csv_file).replace(".csv", "")
- ## csv_data_folder = os.path.dirname(csv_file)
- ## project_folder = os.path.dirname(csv_data_folder)
- ## project = os.path.basename(project_folder)
- ## #version = project[7:]
- ##
- ## arcpy.AddMessage(f"\tProject GDB: DisMAP {project}.gdb")
- ## gdb = os.path.join(project_folder, f"{project}.gdb")
- ##
- ## arcpy.env.overwriteOutput = True
- ## arcpy.env.parallelProcessingFactor = "100%"
- ## arcpy.env.scratchWorkspace = rf"Scratch\\scratch.gdb"
- ## arcpy.env.workspace = gdb
- ## arcpy.SetLogMetadata(True)
- ##
- ## field_csv_dtypes = dTypesCSV(csv_data_folder, table)
- ## field_gdb_dtypes = dTypesGDB(csv_data_folder, table)
- ##
- ## arcpy.AddMessage(f"\tCreating Table: {table}")
- ## arcpy.management.CreateTable(gdb, f"{table}", "", "", table.replace("_", " "))
- ##
- ## in_table = os.path.join(gdb, table)
- ##
- ## #add_fields(in_table)
- ## #alterFields(in_table)
- ## basic_metadata(in_table)
- ## export_metadata(in_table)
- ##
- ## del csv_file, table, project_folder, project, gdb
- ## del field_csv_dtypes, field_gdb_dtypes
- ## del dev_dismap_tools, in_table
-
-## # ###--->>>
-## dataset = r'{os.environ['USERPROFILE']}\Documents\ArcGIS\Projects\DisMAP-ArcGIS-Analysis\May 1 2024\CRFs\NBS_IDW.crf'
-## import_metadata(csv_data_folder, dataset)
-## # ###--->>>
-
-## # ###--->>>
-## # Update Dataset Metadata Dictionary
-## datasets_dict = dataset_title_dict(project_gdb)
-##
-## # Write to File
-## with open(rf"{csv_data_folder}\metadata_dictionary.json", "w") as json_file:
-## json.dump(datasets_dict, json_file, indent=4)
-## del json_file
-##
-## # Read a File
-## with open(rf"{csv_data_folder}\metadata_dictionary.json", "r") as json_file:
-## datasets_dict = json.load(json_file)
-## del json_file
-##
-## for dataset in sorted(datasets_dict):
-## arcpy.AddMessage(f"Table: {dataset}")
-## arcpy.AddMessage(f"\tDataset Service: {datasets_dict[dataset]['Dataset Service']}")
-## arcpy.AddMessage(f"\tDataset Service Title: {datasets_dict[dataset]['Dataset Service Title']}")
-## arcpy.AddMessage(F"\tTags: {datasets_dict[dataset]['Tags']}")
-## arcpy.AddMessage(F"\tSummary: {datasets_dict[dataset]['Summary']}")
-## arcpy.AddMessage(F"\tDescription: {datasets_dict[dataset]['Description']}")
-## #arcpy.AddMessage(F"\tCredits: {datasets_dict[dataset]['Credits']}")
-## #arcpy.AddMessage(F"\tAccess Constraints: {datasets_dict[dataset]['Access Constraints']}")
-## arcpy.AddMessage(f"{'-'*80}")
-##
-## # dataset_md.synchronize("NOT_CREATED", 0)
-## # dataset_md.title = metadata_dictionary[table]["md_title"]
-## # dataset_md.tags = metadata_dictionary[table]["md_tags"]
-## # dataset_md.summary = metadata_dictionary[table]["md_summary"]
-## # dataset_md.description = metadata_dictionary[table]["md_description"]
-## # dataset_md.credits = metadata_dictionary[table]["md_credits"]
-## # dataset_md.accessConstraints = metadata_dictionary[table]["md_access_constraints"]
-##
-## del dataset
-## del datasets_dict
-##
-## # ###--->>>
-
-## # ###--->>>
-## dataset = r'{os.environ['USERPROFILE']}\Documents\ArcGIS\Projects\DisMAP-ArcGIS-Analysis\May 1 2024\May 1 2024.gdb\Datasets'
-## import_metadata(csv_data_folder, dataset)
-## del dataset
-
-## # ###--->>>
-
-## # ###--->>>
-## from arcpy import metadata as md
-##
-## arcpy.env.overwriteOutput = True
-## arcpy.env.workspace = rf"{os.environ['USERPROFILE']}\Documents\ArcGIS\Projects\DisMAP-ArcGIS-Analysis\DisMAP.gdb"
-##
-## arcpy.management.CreateFeatureclass(arcpy.env.workspace, "temp_fc", "POLYGON")
-## dataset = rf"{arcpy.env.workspace}\temp_fc"
-## dataset_xml = r'{os.environ['USERPROFILE']}\Documents\ArcGIS\Projects\DisMAP-ArcGIS-Analysis\May 1 2024\ArcGIS Metadata\temp_fc.xml'
-## new_md_xml = r'{os.environ['USERPROFILE']}\Documents\ArcGIS\Projects\DisMAP-ArcGIS-Analysis\May 1 2024\ArcGIS Metadata\new_md.xml'
-##
-## dataset_md = md.Metadata(dataset)
-## dataset_md.saveAsXML(dataset_xml.replace(".xml", " no sync.xml"))
-## pretty_format_xml_file(dataset_xml.replace(".xml", " no sync.xml"))
-##
-## new_md.saveAsXML(new_md_xml)
-## pretty_format_xml_file(new_md_xml)
-## #if not dataset_md.isReadOnly:
-## dataset_md.copy(new_md)
-## dataset_md.synchronize("ACCESSED")
-## dataset_md.save()
-## dataset_md.reload()
-## del new_md, new_md_xml
-##
-## dataset_md.saveAsXML(dataset_xml.replace(".xml", " new data.xml"))
-## pretty_format_xml_file(dataset_xml.replace(".xml", " new data.xml"))
-##
-## del dataset_md
-## del dataset, dataset_xml
-## del md
-
-## # Path to new metadata XML file
-## new_dataset_path = r'{os.environ['USERPROFILE']}\Documents\ArcGIS\Projects\DisMAP-ArcGIS-Analysis\May 1 2024\ArcGIS Metadata\new_dataset.xml'
-## poc_template_path = r'{os.environ['USERPROFILE']}\Documents\ArcGIS\Projects\DisMAP-ArcGIS-Analysis\May 1 2024\ArcGIS Metadata\poc_template.xml'
-##
-## # Create a new Metadata object, add some content to it, and then save
-## new_md = md.Metadata()
-## new_md.title = 'My Title'
-## new_md.tags = 'Tag1, Tag2'
-## new_md.summary = 'My Summary'
-## new_md.description = 'My Description'
-## new_md.credits = 'My Credits'
-## new_md.accessConstraints = 'My Access Constraints'
-## #new_md.saveAsXML(new_dataset_path, "TEMPLATE")
-## #dataset_md.saveAsXML(new_dataset_path)
-## #del dataset_md
-##
-## # Create the dataset metadata object
-## dataset_md = md.Metadata(dataset)
-## dataset_md.synchronize("ALWAYS")
-## dataset_md.save()
-## dataset_md.reload()
-## dataset_md.saveAsXML(dataset_xml)
-## if not dataset_md.isReadOnly:
-## dataset_md.copy(new_md)
-## dataset_md.synchronize("NOT_CREATED")
-## dataset_md.save()
-## dataset_md.reload()
-## dataset_md.synchronize("NOT_CREATED")
-## dataset_md.copy(new_md)
-## dataset_md.save()
-## dataset_md.reload()
-## # Create the POC metadata object
-## #poc_template_md = md.Metadata(poc_template_path)
-##
-## #Copy the POC metadata to the dataset metadata object
-## # Copy Start
-## #dataset_md.synchronize("ACCESSED", 0) # With copy and ACCESSED the POC overwites all metadata content
-## #dataset_md.synchronize("ALWAYS") # With copy and ALWAYS the POC overwites all metadata content
-## #dataset_md.synchronize("CREATED") # With copy and CREATED the POC overwites all metadata content
-## #dataset_md.synchronize("NOT_CREATED") # With copy and NOT_CREATED the POC overwites all metadata content
-## #dataset_md.synchronize("OVERWRITE") # With copy and OVERWRITE the POC overwites all metadata content
-## #dataset_md.synchronize("SELECTIVE") # With copy and SELECTIVE the POC overwites all metadata content
-## # Copy End
-## # Import Start
-## #dataset_md.synchronize("ACCESSED", 0) # With import and ACCESSED the POC is mergeed, but with only the XML flag
-## #dataset_md.synchronize("ALWAYS") # With import and ALWAYS the POC is mergeed, but with only the XML flag
-## #dataset_md.synchronize("CREATED") # With import and CREATED the POC is mergeed, but with only the XML flag
-## #dataset_md.synchronize("NOT_CREATED") # With import and NOT_CREATED POC is mergeed, but with only the XML flag
-## #dataset_md.synchronize("OVERWRITE") # With import and OVERWRITE the POC is mergeed, but with only the XML flag
-## #dataset_md.synchronize("SELECTIVE") # With import and SELECTIVE the POC is mergeed, but with only the XML flag
-## # Import End
-## #if not dataset_md.isReadOnly:
-## # dataset_md.copy(poc_template_md)
-## #dataset_md.importMetadata(poc_template_md)
-## # Copy Start
-## #dataset_md.synchronize("ACCESSED", 0) # With copy and ACCESSED the POC overwites all metadata content
-## #dataset_md.synchronize("ALWAYS") # With copy and ALWAYS the POC overwites all metadata content
-## #dataset_md.synchronize("CREATED") # With copy and CREATED the POC overwites all metadata content
-## #dataset_md.synchronize("NOT_CREATED") # With copy and NOT_CREATED the POC overwites all metadata content
-## #dataset_md.synchronize("OVERWRITE") # With copy and OVERWRITE the POC overwites all metadata content
-## #dataset_md.synchronize("SELECTIVE") # With copy and SELECTIVE the POC overwites all metadata content
-## # Copy End
-## # Import Start
-## #dataset_md.synchronize("ACCESSED", 0) # With import and ACCESSED the POC is mergeed, but with only the XML flag
-## #dataset_md.synchronize("ALWAYS") # With import and ALWAYS the POC is mergeed, but with only the XML flag
-## #dataset_md.synchronize("CREATED") # With import and CREATED the POC is mergeed, but with only the XML flag
-## #dataset_md.synchronize("NOT_CREATED") # With import and NOT_CREATED POC is mergeed, but with only the XML flag
-## #dataset_md.synchronize("OVERWRITE") # With import and OVERWRITE the POC is mergeed, but with only the XML flag
-## #dataset_md.synchronize("SELECTIVE") # With import and SELECTIVE the POC is mergeed, but with only the XML flag
-## # Import End
-## #dataset_md.save()
-## #dataset_md.reload()
-## #out_xml = new_dataset_path.replace(".xml", " copy do nothing .xml")
-## dataset_md.saveAsXML(new_dataset_path)
-## #dataset_md.saveAsXML(new_dataset_path.replace(".xml", " import SELECTIVE after.xml"))
-## del dataset_md, poc_template_path
-## #del poc_template_md
-##
-## pretty_format_xml_file(new_dataset_path)
-## pretty_format_xml_file(dataset_xml)
-## #del out_xml
-##
-## del new_dataset_path, dataset_xml
-## del md
-## del dataset, new_md
-##
-## # ###--->>>
-
-## # ###--->>> COMPARE TWO XML DOCUMENTS
-## # This requires use of the clone ArcGIS Pro arcpy.env.
-## # https://buildmedia.readthedocs.org/media/pdf/xmldiff/latest/xmldiff.pdf
-## table = "DisMAP_Regions"
-## project_folder = os.path.dirname(project_gdb)
-## export_metadata_folder = rf"{project_folder}\ArcGIS Metadata"
-##
-## in_xml = r"{os.environ['USERPROFILE']}\Documents\ArcGIS\Projects\DisMAP-ArcGIS-Analysis\May 1 2024\ArcGIS Metadata\DisMAP_Regions.xml"
-## out_xml = r"{os.environ['USERPROFILE']}\Documents\ArcGIS\Projects\DisMAP-ArcGIS-Analysis\May 1 2024\ArcGIS Metadata\DisMAP Regions Current.xml"
-##
-## diff = compare_metadata_xml(in_xml, out_xml)
-## if diff:
-## diff_metadata = rf"{export_metadata_folder}\{table} EXACT_COPY DIFF of Import.xml"
-## with open(diff_metadata, "w") as f:
-## f.write(diff)
-## del f
-## del diff_metadata
-## else:
-## pass
-##
-## del diff
-##
-## del in_xml, out_xml
-## del table, project_folder, export_metadata_folder
-## # ###--->>> COMPARE TWO XML DOCUMENTS
-
- #pretty_format_xml_file(r"{os.environ['USERPROFILE']}\AppData\Local\ESRI\ArcGISPro\Staging\SharingProcesses\SharingMainLog - Copy.xml")
- #pretty_format_xml_file(r"{os.environ['USERPROFILE']}\Documents\ArcGIS\Projects\DisMAP-ArcGIS-Analysis\July 1 2024\Export Metadata\EBS_IDW.crf.xml")
-
-## Doesn't really work
-## # ###--->>>
-## def xml_json_test(project_gdb, metadata_xml):
-##
-## from xml.dom import minidom
-## import json
-##
-## project_folder = os.path.dirname(project_gdb)
-## metadata_folder = rf"{project_folder}\ArcGIS Metadata"
-## export_metadata_folder = rf"{project_folder}\Export Metadata"
-## metadata_xml_path = rf"{metadata_folder}\{metadata_xml}"
-##
-## def parse_element(element):
-## dict_data = dict()
-## if element.nodeType == element.TEXT_NODE:
-## dict_data['data'] = element.data
-## if element.nodeType not in [element.TEXT_NODE, element.DOCUMENT_NODE,
-## element.DOCUMENT_TYPE_NODE]:
-## for item in element.attributes.items():
-## dict_data[item[0]] = item[1]
-## if element.nodeType not in [element.TEXT_NODE, element.DOCUMENT_TYPE_NODE]:
-## for child in element.childNodes:
-## child_name, child_dict = parse_element(child)
-## if child_name in dict_data:
-## try:
-## dict_data[child_name].append(child_dict)
-## except AttributeError:
-## dict_data[child_name] = [dict_data[child_name], child_dict]
-## else:
-## dict_data[child_name] = child_dict
-## return element.nodeName, dict_data
-##
-## #dom = minidom.parse('data.xml')
-## #f = open('data.json', 'w')
-## dom = minidom.parse(metadata_xml_path)
-## f = open(rf"{export_metadata_folder}\{metadata_xml.replace('.xml', '.json')}", "w")
-## f.write(json.dumps(parse_element(dom), sort_keys=True, indent=4))
-## f.close()
-##
-## del minidom, json
-##
-## metadata_xml = "AI_Sample_Locations_20230401.xml"
-##
-## xml_json_test(project_gdb, metadata_xml)
-##
-## del metadata_xml, xml_json_test
-##
-## # ###--->>>
-
-
-## # ###--->>>
-## from arcpy import metadata as md
-##
-## arcpy.env.overwriteOutput = True
-## arcpy.env.workspace = rf"{os.environ['USERPROFILE']}\Documents\ArcGIS\Projects\DisMAP-ArcGIS-Analysis\DisMAP.gdb"
-##
-## arcpy.management.CreateFeatureclass(arcpy.env.workspace, "temp_fc", "POLYGON")
-## dataset = rf"{arcpy.env.workspace}\temp_fc"
-## dataset_xml = r"{os.environ['USERPROFILE']}\Documents\ArcGIS\Projects\DisMAP-ArcGIS-Analysis\May 1 2024\Export Metadata\temp_fc.xml"
-## new_md_xml = r"{os.environ['USERPROFILE']}\Documents\ArcGIS\Projects\DisMAP-ArcGIS-Analysis\May 1 2024\Export Metadata\new_md.xml"
-##
-## poc_template = r"{os.environ['USERPROFILE']}\Documents\ArcGIS\Projects\DisMAP-ArcGIS-Analysis\May 1 2024\ArcGIS Metadata\poc_template.xml"
-##
-## # dataset_md = md.Metadata(dataset)
-## # dataset_md.saveAsXML(dataset_xml.replace(".xml", " no sync.xml"))
-## # pretty_format_xml_file(dataset_xml.replace(".xml", " no sync.xml"))
-## # dataset_md.synchronize("ALWAYS")
-## # dataset_md.save()
-## # dataset_md.reload()
-## # dataset_md.title = 'My Title'
-## # dataset_md.tags = 'Tag1, Tag2'
-## # dataset_md.summary = 'My Summary'
-## # dataset_md.description = 'My Description'
-## # dataset_md.credits = 'My Credits'
-## # dataset_md.accessConstraints = 'My Access Constraints'
-## # dataset_md.save()
-## # dataset_md.reload()
-## # dataset_md.saveAsXML(dataset_xml.replace(".xml", " ALWAYS sync.xml"))
-## # pretty_format_xml_file(dataset_xml.replace(".xml", " ALWAYS sync.xml"))
-##
-## #del dataset_md
-## #dataset_md = md.Metadata(dataset)
-##
-## # Create a new Metadata object, add some content to it, and then save
-## new_md = md.Metadata()
-## # new_md.title = 'My Title'
-## # new_md.tags = 'Tag1, Tag2'
-## # new_md.summary = 'My Summary'
-## # new_md.description = 'My Description'
-## # new_md.credits = 'My Credits'
-## # new_md.accessConstraints = 'My Access Constraints'
-## new_md.importMetadata(new_md_xml)
-## new_md.importMetadata(poc_template)
-## #new_md.save()
-## #new_md.reload()
-## new_md.saveAsXML(new_md_xml)
-## pretty_format_xml_file(new_md_xml)
-##
-## del new_md
-##
-## # dataset_md.synchronize("ACCESSED")
-## # dataset_md.importMetadata(new_md_xml)
-## # dataset_md.synchronize("CREATED")
-## # dataset_md.save()
-## # dataset_md.reload()
-## #
-## # del dataset_md
-## # dataset_md = md.Metadata(dataset)
-## #
-## # dataset_md.importMetadata(poc_template)
-## # #dataset_md.save()
-## # #dataset_md.reload()
-## # #dataset_md.synchronize("ALWAYS")
-## # #dataset_md.synchronize("SELECTIVE")
-## # dataset_md.save()
-## # dataset_md.reload()
-##
-##
-## del new_md_xml
-## del poc_template
-## #
-## # #dataset_md.saveAsXML(dataset_xml.replace(".xml", " new data.xml"))
-## # dataset_md.saveAsXML(dataset_xml.replace(".xml", " new data.xml"), "REMOVE_MACHINE_NAMES")
-## # pretty_format_xml_file(dataset_xml.replace(".xml", " new data.xml"))
-## #
-## # del dataset_md
-##
-## del dataset, dataset_xml
-## del md
-## # ###--->>>
-
-## # ###--->>>
-## from arcpy import metadata as md
-##
-## metadata_folder = r"{os.environ['USERPROFILE']}\Documents\ArcGIS\Projects\DisMAP-ArcGIS-Analysis\May 1 2024\Export Metadata"
-## new_md_xml = rf"{metadata_folder}\new_md.xml"
-## dataset_md_xml = rf"{metadata_folder}\dataset_md.xml"
-##
-## # Create a new Metadata object, add some content to it, and then save
-## new_md = md.Metadata()
-## new_md.title = 'My Title'
-## new_md.tags = 'Tag1, Tag2'
-## # new_md.summary = 'My Summary'
-## # new_md.description = 'My Description'
-## # new_md.credits = 'My Credits'
-## # new_md.accessConstraints = 'My Access Constraints'
-## new_md.saveAsXML(new_md_xml)
-## pretty_format_xml_file(new_md_xml)
-## new_md.saveAsXML(dataset_md_xml)
-## pretty_format_xml_file(dataset_md_xml)
-## del new_md
-##
-## dataset_md = md.Metadata(dataset_md_xml)
-## dataset_md.importMetadata("""20240701000000001.0FALSE""")
-## dataset_md.synchronize("NOT_CREATED")
-## dataset_md.save()
-## dataset_md.reload()
-## dataset_md.saveAsXML(dataset_md_xml)
-## pretty_format_xml_file(dataset_md_xml)
-## del dataset_md
-##
-## # Declared Variables
-## del dataset_md_xml
-## del new_md_xml
-## del metadata_folder
-##
-## # Imports
-## del md
-##
-## # ###--->>>
-
-## # ###--->>>
-## import datetime
-## import pytz
-##
-## #unaware = datetime.datetime(2011, 8, 15, 8, 15, 12, 0)
-## #aware = datetime.datetime(2011, 8, 15, 8, 15, 12, 0, pytz.UTC)
-##
-## unaware = datetime.datetime(2011, 1, 1, 0, 0, 0, 0)
-## aware = datetime.datetime(2011, 1, 1, 0, 0, 0, 0, pytz.UTC)
-##
-##
-## now_aware = pytz.utc.localize(unaware)
-## assert aware == now_aware
-##
-## arcpy.AddMessage(now_aware)
-##
-## from datetime import datetime, timezone
-##
-## dt = datetime(2011, 1, 1, 0, 0, 0, 0)
-## dt = dt.replace(tzinfo=timezone.utc)
-## arcpy.AddMessage(dt.isoformat())
-##
-## del datetime, timezone, dt
-##
-##
-## import pandas as pd
-## df = pd.DataFrame({"Year": [2014, 2015, 2016],})
-## #df.insert(df.columns.get_loc("Year")+1, "StdTime", pd.to_datetime(df["Year"], format="%Y").dt.tz_localize('Etc/GMT'))
-## df.insert(df.columns.get_loc("Year")+1, "StdTime", pd.to_datetime(df["Year"], format="%Y", utc=True))
-## #df.insert(df.columns.get_loc("Year")+1, "StdTime", pd.to_datetime(df["Year"], format="%Y"))
-##
-## arcpy.AddMessage(df)
-##
-## del pd, df
-## # ###--->>>
-
- # Function parameters
- del project_gdb
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def test_bed_2(project=""):
- try:
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- base_project_folder = os.path.dirname(os.path.dirname(__file__))
- project_gdb = rf"{base_project_folder}\{project}\{project}.gdb"
-
- del base_project_folder
-
- # Test if passed workspace exists, if not raise SystemExit
- if not arcpy.Exists(project_gdb):
- raise SystemExit(f"{os.path.basename(project_gdb)} is missing!!")
- else:
- pass
-
-## # ###--->>>
-## from arcpy import metadata as md
-##
-## project_folder = os.path.dirname(project_gdb)
-##
-## metadata_folder = rf"{project_folder}\Export Metadata"
-## new_md_xml = rf"{metadata_folder}\new_md.xml"
-## dataset_md_xml = rf"{metadata_folder}\dataset_md.xml"
-##
-## # Create a new Metadata object, add some content to it, and then save
-## new_md = md.Metadata()
-## #new_md.title = 'My Title'
-## new_md.tags = 'Tag1, Tag2'
-## new_md.summary = 'My Summary'
-## new_md.description = 'My Description'
-## new_md.credits = 'My Credits'
-## new_md.accessConstraints = 'My Access Constraints'
-## # Save the original
-## new_md.saveAsXML(new_md_xml)
-##
-## # Pretty Format
-## pretty_format_xml_file(new_md_xml)
-##
-## # Save a copy to modify
-## new_md.saveAsXML(dataset_md_xml)
-##
-## # Pretty Format
-## pretty_format_xml_file(dataset_md_xml)
-## del new_md
-##
-## dataset_md = md.Metadata(dataset_md_xml)
-## #dataset_md.synchronize("ALWAYS")
-## #dataset_md.importMetadata("""20240701000000001.0FALSE""")
-## #dataset_md.importMetadata(md.Metadata("""My Title"""))
-##
-## #dataset_md.synchronize("SELECTIVE")
-## #dataset_md.importMetadata(rf"{metadata_folder}\AI_IDW_Sample_Locations.xml")
-## #dataset_md.synchronize("CREATED")
-##
-## #dataset_md.synchronize("CREATED")
-## #dataset_md.save()
-## #dataset_md.reload()
-## dataset_md.importMetadata(rf"{metadata_folder}\poc_template.xml")
-## dataset_md.save()
-## dataset_md.synchronize("SELECTIVE")
-## #arcpy.AddMessage(dataset_md.xml)
-## #dataset_md.save()
-## #dataset_md.reload()
-## # Save the modified file
-## #dataset_md.saveAsXML(dataset_md_xml)
-##
-## # Pretty Format
-## pretty_format_xml_file(dataset_md_xml)
-##
-## del dataset_md
-##
-## # Declared Variables
-## del dataset_md_xml
-## del new_md_xml
-## del metadata_folder, project_folder
-##
-## # Imports
-## del md
-##
-## # ###--->>>
-
-## # ###--->>>
-##
-## project_folder = os.path.dirname(project_gdb)
-## metadata_folder = rf"{project_folder}\Export Metadata"
-## xml_file_1 = rf"{metadata_folder}\AI_IDW_Sample_Locations.xml"
-## xml_file_2 = rf"{metadata_folder}\poc_template.xml"
-##
-## xml_combiner(project_gdb=project_gdb, xml_file_1=xml_file_1, xml_file_2=xml_file_2)
-##
-## del project_folder, metadata_folder
-## del xml_file_1, xml_file_2
-##
-## # ###--->>>
-
-## # ###--->>>
-##
-## from arcpy import metadata as md
-##
-## project_folder = os.path.dirname(project_gdb)
-## metadata_folder = rf"{project_folder}\Export Metadata"
-##
-## # ArcPy Environments
-## arcpy.env.overwriteOutput = True
-## arcpy.env.parallelProcessingFactor = "100%"
-## arcpy.env.workspace = project_gdb
-## arcpy.env.scratchWorkspace = rf"Scratch\\scratch.gdb"
-## arcpy.SetLogMetadata(True)
-##
-## metadata_dictionary = dataset_title_dict(project_gdb)
-##
-## dataset = os.path.join(project_gdb, "DisMAP_Regions")
-## table = os.path.basename(dataset)
-##
-## # #arcpy.conversion.FeaturesToJSON(
-## # # in_features = dataset,
-## # # out_json_file = rf"{metadata_folder}\{table}.json",
-## # # format_json = "FORMATTED",
-## # # include_z_values = "NO_Z_VALUES",
-## # # include_m_values = "NO_M_VALUES",
-## # # geoJSON = "NO_GEOJSON",
-## # # outputToWGS84 = "KEEP_INPUT_SR",
-## # # use_field_alias = "USE_FIELD_NAME"
-## # # )
-
-
-## arcpy.AddMessage(f"JSON To Features")
-##
-## arcpy.conversion.JSONToFeatures(
-## in_json_file = rf"{metadata_folder}\{table}.json",
-## out_features = dataset,
-## geometry_type = "POLYLINE"
-## )
-
-## arcpy.AddMessage(f"Dataset: {table}")
-##
-## dataset_md = md.Metadata(dataset)
-## #dataset_md.xml = '20240701000000001.0FALSE'
-## dataset_md.synchronize("ALWAYS")
-## out_xml = rf"{metadata_folder}\{table}_Step_1.xml"
-## dataset_md.saveAsXML(out_xml)
-##
-## pretty_format_xml_file(out_xml)
-## del out_xml
-##
-## dataset_md.importMetadata(rf"{metadata_folder}\poc_john.xml")
-## dataset_md.synchronize("SELECTIVE")
-## dataset_md.save()
-## dataset_md.reload()
-## out_xml = rf"{metadata_folder}\{table}_Step_2.xml"
-## dataset_md.saveAsXML(out_xml)
-##
-## pretty_format_xml_file(out_xml)
-## del out_xml
-##
-## dataset_md.title = metadata_dictionary[table]["Dataset Service Title"]
-## dataset_md.tags = metadata_dictionary[table]["Tags"]
-## dataset_md.summary = metadata_dictionary[table]["Summary"]
-## dataset_md.description = metadata_dictionary[table]["Description"]
-## dataset_md.credits = metadata_dictionary[table]["Credits"]
-## dataset_md.accessConstraints = metadata_dictionary[table]["Access Constraints"]
-## dataset_md.save()
-## dataset_md.reload()
-## out_xml = rf"{metadata_folder}\{table}_Step_3.xml"
-## dataset_md.saveAsXML(out_xml)
-##
-## pretty_format_xml_file(out_xml)
-## del out_xml
-##
-## del dataset_md
-
-
-## # arcpy.AddMessage(f"\tDataset Service: {datasets_dict[dataset]['Dataset Service']}")
-## # arcpy.AddMessage(f"\tDataset Service Title: {datasets_dict[dataset]['Dataset Service Title']}")
-##
-## # # https://pro.arcgis.com/en/pro-app/latest/arcpy/metadata/metadata-class.htm
-## # dataset_md = md.Metadata(dataset)
-## # dataset_md.xml = ''
-## # dataset_md.save()
-## # #dataset_md.synchronize("ALWAYS")
-## # dataset_md.save()
-## # del dataset_md
-## #
-## # dataset_md = md.Metadata(dataset)
-## # dataset_md.importMetadata(rf"{metadata_folder}\poc_template.xml")
-## # dataset_md.save()
-## # del dataset_md
-## #
-## # dataset_md = md.Metadata(dataset)
-## # dataset_md.synchronize("ALWAYS")
-## # dataset_md.importMetadata(rf"{metadata_folder}\dismap_regions_entity.xml")
-## # dataset_md.save()
-## # del dataset_md
-##
-## dataset_md = md.Metadata(dataset)
-## dataset_md.synchronize("ALWAYS")
-## dataset_md.save()
-## dataset_md.reload()
-## #dataset_md.synchronize("SELECTIVE")
-## dataset_md.title = metadata_dictionary[table]["Dataset Service Title"]
-## dataset_md.tags = metadata_dictionary[table]["Tags"]
-## dataset_md.summary = metadata_dictionary[table]["Summary"]
-## dataset_md.description = metadata_dictionary[table]["Description"]
-## dataset_md.credits = metadata_dictionary[table]["Credits"]
-## dataset_md.accessConstraints = metadata_dictionary[table]["Access Constraints"]
-## dataset_md.save()
-## del dataset_md
-##
-## dataset_md = md.Metadata(dataset)
-##
-## #out_xml = rf"{metadata_folder}\{dataset_md.title}.xml"
-## out_xml = rf"{metadata_folder}\{table}.xml"
-## dataset_md.saveAsXML(out_xml, "REMOVE_ALL_SENSITIVE_INFO")
-## #dataset_md.saveAsXML(out_xml, "REMOVE_MACHINE_NAMES")
-## #dataset_md.saveAsXML(out_xml)
-##
-## pretty_format_xml_file(out_xml)
-## del out_xml
-##
-## del dataset_md
-##
-## # arcpy.AddMessage(f"Dataset: {table}")
-## # dataset_md_path = rf"{metadata_folder}\{table}.xml"
-## # if arcpy.Exists(dataset_md_path):
-## # arcpy.AddMessage(f"\tMetadata File: {os.path.basename(dataset_md_path)}")
-## # from arcpy import metadata as md
-## # try:
-## # dataset_md = md.Metadata(dataset)
-## # # Import the standard-format metadata content to the target item
-## # if not dataset_md.isReadOnly:
-## # dataset_md.importMetadata(dataset_md_path, "ARCGIS_METADATA")
-## # dataset_md.save()
-## # dataset_md.reload()
-## # dataset_md.title = title
-## # dataset_md.save()
-## # dataset_md.reload()
-## #
-## # arcpy.AddMessage(f"\tExporting metadata file from {table}")
-## #
-## # out_xml = rf"{project_folder}\Export Metadata\{title} EXACT_COPY.xml"
-## # dataset_md.saveAsXML(out_xml, "EXACT_COPY")
-## #
-## # pretty_format_xml_file(out_xml)
-## # del out_xml
-## #
-## # del dataset_md, md
-## #
-## # except: # noqa: E722
-## # arcpy.AddError(f"\tDataset metadata import error!! {arcpy.GetMessages()}")
-## # else:
-## # arcpy.AddWarning(f"\tDataset missing metadata file!!")
-
-## del md
-## del project_folder, metadata_folder, metadata_dictionary
-## del dataset, table
-##
-## # ###--->>>
-
-
-## # ###--->>>
-## from arcpy import metadata as md
-##
-## base_project_folder = os.path.dirname(os.path.dirname(__file__))
-## project_gdb = rf"{base_project_folder}\{project}\{project}.gdb"
-## workspace = rf"{base_project_folder}\DisMAP.gdb"
-##
-## arcpy.env.overwriteOutput = True
-## arcpy.env.workspace = workspace
-##
-## arcpy.management.CreateFeatureclass(arcpy.env.workspace, "temp_fc", "POLYGON")
-##
-## dataset = rf"{workspace}\temp_fc"
-## dataset_xml = rf"{base_project_folder}\{project}\Export Metadata\temp_fc.xml"
-##
-## dataset_md = md.Metadata(dataset)
-## dataset_md.saveAsXML(dataset_xml.replace(".xml", " no sync.xml"), "REMOVE_ALL_SENSITIVE_INFO")
-## pretty_format_xml_file(dataset_xml.replace(".xml", " no sync.xml"))
-##
-## dataset_md.synchronize("ALWAYS")
-## dataset_md.save()
-##
-## dataset_md.saveAsXML(dataset_xml.replace(".xml", " ALWAYS.xml"), "REMOVE_ALL_SENSITIVE_INFO")
-## pretty_format_xml_file(dataset_xml.replace(".xml", " ALWAYS.xml"))
-##
-## dataset_md.title = 'My Title'
-## dataset_md.tags = 'Tag1, Tag2'
-## dataset_md.summary = 'My Summary'
-## dataset_md.description = 'My Description'
-## dataset_md.credits = 'My Credits'
-## dataset_md.accessConstraints = 'My Access Constraints'
-## dataset_md.save()
-## dataset_md.saveAsXML(dataset_xml.replace(".xml", " Title added.xml"), "REMOVE_ALL_SENSITIVE_INFO")
-## pretty_format_xml_file(dataset_xml.replace(".xml", " Title added.xml"))
-##
-## del dataset, dataset_xml
-## del dataset_md
-## del md
-## del base_project_folder, workspace
-## # ###--->>>
-
- # Function parameters
- del project_gdb
- del project
-
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- traceback.print_exc()
- sys.exit()
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except Exception:
- #arcpy.AddError(arcpy.GetMessages(2))
- #traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def script_tool(project_gdb=""):
- try:
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- project_folder = os.path.dirname(project_gdb)
-
- # Test if passed workspace exists, if not raise SystemExit
- if not arcpy.Exists(project_gdb):
- arcpy.AddMessage(f"{os.path.basename(project_gdb)} is missing!!")
- else:
- pass
-
- # ###--->>> dataset_title_dict Test #1
- DatasetTitleDict = False
- if DatasetTitleDict:
- md_dict = dataset_title_dict(project_gdb)
- for key in sorted(md_dict):
- arcpy.AddMessage(key)
- #if "_CRF" in key:
- arcpy.AddMessage(f"\tDataset Service Title: {md_dict[key]['Dataset Service Title']}")
- arcpy.AddMessage(f"\tDataset Service: {md_dict[key]['Dataset Service']}")
- arcpy.AddMessage(f"\tTags: {md_dict[key]['Tags']}")
- del key
- del md_dict
- else:
- pass
- del DatasetTitleDict
- # ###--->>>
-
- # ###--->>> Test table_definitions
- TestTableDefinitions = False
- if TestTableDefinitions:
- arcpy.AddMessage(os.path.basename(project_gdb))
- from dev_create_table_definitions_json import get_list_of_table_fields
- get_list_of_table_fields(project_gdb)
- del get_list_of_table_fields
- csv_data_folder = os.path.join(project_folder, "CSV_Data")
- # First Test
- _table_definitions = table_definitions(csv_data_folder, "HI_IDW")
- arcpy.AddMessage(_table_definitions)
- # Second Test
- _table_definitions = table_definitions(csv_data_folder, "")
- #arcpy.AddMessage(_table_definitions)
- for table in _table_definitions:
- arcpy.AddMessage(f"Table: {table}")
-## #arcpy.AddMessage(f"\t{_table_definitions[table]}");
-## for field in _table_definitions[table]:
-## arcpy.AddMessage(f"\tfield: {field}")
-## _field_definitions = field_definitions(csv_data_folder, field)
-## #arcpy.AddMessage(_field_definitions)
- ## for field in field_definitions:
- ## arcpy.AddMessage(field)
- ## #arcpy.AddMessage(f"\t{field_definitions[field]}")
- ## del field
- ## else:
- ## arcpy.AddMessage(f"Field: {field} is not in field_definitions")
-## del _field_definitions, field
-
-
- del table
- del _table_definitions
- del csv_data_folder
- else:
- pass
- del TestTableDefinitions
- # ###--->>>
-
- TestImportMetadata = True
- if TestImportMetadata:
- csv_data_folder = os.path.join(project_folder, "CSV_Data")
- #table_name = "Datasets"
- #table_name = "Species_Filter"
- #table_name = "DisMAP_Survey_Info"
- #table_name = "HI_IDW_Mosaic"
- #table_name = "HI_IDW_Fishnet_Bathymetry"
- table_name = "Indicators"
-
- try:
-
- import_metadata(csv_data_folder, dataset=rf"{project_gdb}\{table_name}")
- #import_metadata(csv_data_folder, dataset=rf"{project_folder}\Scratch\HI_IDW.gdb\{table_name}")
-
- except: # noqa: E722
- pass
-
- del table_name, csv_data_folder
- else:
- pass
- del TestImportMetadata
-
- # Declared variables
- del project_folder
- # Function parameters
- del project_gdb
-
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}\nCompleted: {strftime('%a %b %d %I:%M %p', localtime())}")
- arcpy.AddMessage(u"Elapsed Time {0} (H:M:S)".format(strftime("%H:%M:%S", gmtime(elapse_time))))
- arcpy.AddMessage(f"{'-' * 80}")
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
- except KeyboardInterrupt:
- sys.exit()
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- traceback.print_exc()
- sys.exit()
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-if __name__ == "__main__":
- try:
-
- project_gdb = arcpy.GetParameterAsText(0)
- if not project_gdb:
- project_gdb = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026\\February 1 2026.gdb")
- else:
- pass
-
- arcpy.AddMessage(f"Running Python script: {os.path.basename(__file__)}")
-
- script_tool(project_gdb)
-
- arcpy.SetParameterAsText(1, "Result")
-
- del project_gdb
-
- except SystemExit:
- pass
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- else:
- pass
- finally:
- sys.exit()
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dismap_version_project_setup.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/dismap_version_project_setup.py
deleted file mode 100644
index 725b3c8..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/dismap_version_project_setup.py
+++ /dev/null
@@ -1,153 +0,0 @@
-"""
-Script documentation
-- Tool parameters are accessed using arcpy.GetParameter() or
- arcpy.GetParameterAsText()
-- Update derived parameter values using arcpy.SetParameter() or
- arcpy.SetParameterAsText()
-"""
-import os
-import arcpy
-import traceback
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- filename = sys.path[0] + os.sep + "test.py"
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def script_tool(base_project_folder="", new_project_folder="", project_folders=""):
- """Script code goes below"""
- try:
- arcpy.env.overwriteOutput = True
- try:
- aprx = arcpy.mp.ArcGISProject("CURRENT")
- except:
- aprx = arcpy.mp.ArcGISProject(rf"{base_project_folder}\DisMAP.aprx")
- aprx.save()
- home_folder = aprx.homeFolder
- if not arcpy.Exists(rf"{home_folder}\{new_project_folder}"):
- arcpy.AddMessage(f"Creating Home Folder: '{os.path.basename(home_folder)}'")
- arcpy.management.CreateFolder(home_folder, new_project_folder)
- arcpy.AddMessage(arcpy.GetMessages())
- else:
- arcpy.AddMessage(f"Home Folder: '{os.path.basename(home_folder)}' Exists")
- if not arcpy.Exists(rf"{home_folder}\{new_project_folder}\{new_project_folder}.gdb"):
- arcpy.AddMessage(f"Creating Project GDB: '{os.path.basename(home_folder)}.gdb'")
- arcpy.management.CreateFileGDB(rf"{home_folder}\{new_project_folder}", f"{new_project_folder}")
- arcpy.AddMessage(arcpy.GetMessages())
- else:
- arcpy.AddMessage(f"Project GDB: {new_project_folder}.gdb exists")
- if not arcpy.Exists(rf"{home_folder}\{new_project_folder}\Scratch"):
- arcpy.AddMessage("Creating the Scratch Folder")
- arcpy.management.CreateFolder(rf"{home_folder}\{new_project_folder}", "Scratch")
- arcpy.AddMessage(arcpy.GetMessages())
- else:
- arcpy.AddMessage(f"Scratch Folder: {new_project_folder} exists")
- if not arcpy.Exists(rf"{home_folder}\{new_project_folder}\Scratch\scratch.gdb"):
- arcpy.AddMessage("Creating the Scratch GDB")
- arcpy.management.CreateFileGDB(rf"{home_folder}\{new_project_folder}\Scratch", "scratch")
- arcpy.AddMessage(arcpy.GetMessages())
- else:
- arcpy.AddMessage("Scratch GDB Exists")
- for _project_folder in project_folders.split(";"):
- if not arcpy.Exists(rf"{home_folder}\{new_project_folder}\{_project_folder}"):
- arcpy.AddMessage(f"Creating Folder: {_project_folder}")
- arcpy.management.CreateFolder(rf"{home_folder}\{new_project_folder}", _project_folder)
- arcpy.AddMessage(arcpy.GetMessages())
- else:
- arcpy.AddMessage(f"Folder: '{_project_folder}' Exists")
- del _project_folder
- if not arcpy.Exists(rf"{home_folder}\{new_project_folder}\{new_project_folder}.aprx"):
- aprx.saveACopy(rf"{home_folder}\{new_project_folder}\{new_project_folder}.aprx")
- arcpy.AddMessage(arcpy.GetMessages())
- else:
- pass
-
- _aprx = arcpy.mp.ArcGISProject(rf"{home_folder}\{new_project_folder}\{new_project_folder}.aprx")
- # Remove maps
- _maps = _aprx.listMaps()
- if len(_maps) > 0:
- for _map in _maps:
- arcpy.AddMessage(_map.name)
- aprx.deleteItem(_map)
- del _map
- del _maps
- _aprx.save()
-
- databases = []
- databases.append({"databasePath": rf"{home_folder}\{new_project_folder}\{new_project_folder}.gdb", "isDefaultDatabase": True})
- _aprx.updateDatabases(databases)
- arcpy.AddMessage(f"Databases: {databases}")
- del databases
- _aprx.save()
-
- toolboxes = []
- toolboxes.append({"toolboxPath": rf"{home_folder}\DisMAP.atbx", "isDefaultToolbox": True})
- _aprx.updateToolboxes(toolboxes)
- arcpy.AddMessage(f"Toolboxes: {toolboxes}")
- del toolboxes
- _aprx.save()
- del _aprx
-
- # Declared variables
- del home_folder, aprx
- # Function parameters
- del new_project_folder, project_folders
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- #raise SystemExit
- except SystemExit:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- #raise SystemExit
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- #raise SystemExit
- except: # noqa: E722 # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- #raise SystemExit
- else:
- pass
- return True
- finally:
- pass
-if __name__ == "__main__":
- try:
- base_project_folder = arcpy.GetParameterAsText(0)
- new_project_folder = arcpy.GetParameterAsText(1)
- project_folders = arcpy.GetParameterAsText(2)
-
- if not base_project_folder:
- base_project_folder = rf"{os.path.expanduser('~')}\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python"
- else:
- pass
-
- if not new_project_folder:
- new_project_folder = "February 1 2026"
- else:
- pass
-
- if not project_folders:
- project_folders = "CRFs;CSV_Data;Dataset_Shapefiles;Images;Layers;Metadata_Export;Publish"
- else:
- pass
-
- script_tool(base_project_folder, new_project_folder, project_folders)
-
- arcpy.SetParameterAsText(3, "Result")
-
- del base_project_folder, new_project_folder, project_folders
-
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/esri/toolboxes/__pycache__/Sample Python Toolbox.cpython-311.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools/esri/toolboxes/__pycache__/Sample Python Toolbox.cpython-311.pyc
deleted file mode 100644
index d5e04ed..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools/esri/toolboxes/__pycache__/Sample Python Toolbox.cpython-311.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/import_datasets_species_filter_csv_data.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/import_datasets_species_filter_csv_data.py
deleted file mode 100644
index 2fee15f..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/import_datasets_species_filter_csv_data.py
+++ /dev/null
@@ -1,459 +0,0 @@
-"""
-Script documentation
-- Tool parameters are accessed using arcpy.GetParameter() or
- arcpy.GetParameterAsText()
-- Update derived parameter values using arcpy.SetParameter() or
- arcpy.SetParameterAsText()
-"""
-import os
-import sys # built-ins first
-import traceback
-import inspect
-import arcpy
-
-def get_encoding_index_col(csv_file):
- try:
- # Imports
- import chardet
- import pandas as pd
- # Open the file in binary mode
- with open(csv_file, 'rb') as f:
- # Read the file's content
- data = f.read()
- # Detect the encoding using chardet.detect()
- encoding_result = chardet.detect(data)
- # Retrieve the encoding information
- __encoding = encoding_result['encoding']
- del f, data, encoding_result
- # arcpy.AddMessage the detected encoding
- #arcpy.AddMessage("Detected Encoding:", __encoding)
- dtypes = {}
- # Read the CSV file into a DataFrame
- df = pd.read_csv(csv_file, encoding = __encoding, delimiter = ",",)
- # Analyze the data types and lengths
- for column in df.columns:
- dtypes[column] = df[column].dtype
- del column
- first_column = list(dtypes.keys())[0]
- __index_column = 0 if first_column == "Unnamed: 0" else None
- # Declared Variables
- del df, dtypes, first_column
- # Import
- del chardet, pd
- # Function Parameter
- del csv_file
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- raise SystemExit
- except Exception:
- traceback.print_exc()
- arcpy.AddError(arcpy.GetMessages(2))
- raise SystemExit
- except: # noqa: E722
- traceback.print_exc()
- arcpy.AddError(arcpy.GetMessages(2))
- raise SystemExit
- else:
- return __encoding, __index_column
- finally:
- pass
-
-def worker(project_gdb="", csv_file=""):
- try:
- # Test if passed workspace exists, if not raise SystemExit
- if not arcpy.Exists(project_gdb) or not arcpy.Exists(csv_file):
- raise SystemExit(f"{os.path.basename(project_gdb)} OR {os.path.basename(csv_file)} is missing!!")
- # Imports
- from arcpy import metadata as md
- import dismap_tools
- # Set History and Metadata logs, set serverity and message level
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
- # Set basic workkpace variables
- table_name = os.path.basename(csv_file).replace(".csv", "")
- csv_data_folder = os.path.dirname(csv_file)
- project_folder = os.path.dirname(csv_data_folder)
- scratch_workspace = os.path.join(project_folder, "Scratch\\scratch.gdb")
- # Set basic workkpace variables
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = r"Scratch\\scratch.gdb"
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- #arcpy.AddMessage(table_name)
- #arcpy.AddMessage(csv_data_folder)
- field_csv_dtypes = dismap_tools.dTypesCSV(csv_data_folder, table_name)
- field_gdb_dtypes = dismap_tools.dTypesGDB(csv_data_folder, table_name)
- #arcpy.AddMessage(field_csv_dtypes)
- #arcpy.AddMessage(field_gdb_dtypes)
- arcpy.AddMessage(f"\tCreating Table: {table_name}")
- arcpy.management.CreateTable(project_gdb, f"{table_name}", "", "", table_name.replace("_", " "))
- arcpy.AddMessage("\t{0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- import pandas as pd
- import numpy as np
- import warnings
- arcpy.AddMessage(f"> Importing {table_name} CSV Table")
- #csv_table = f"{table_name}.csv"
- # https://pandas.pydata.org/pandas-docs/stable/getting_started/intro_tutorials/09_timeseries.html?highlight=datetime
- # https://www.tutorialsandyou.com/python/numpy-data-types-66.html
- #df = pd.read_csv('my_file.tsv', sep='\t', header=0) ## not setting the index_col
- #df.set_index(['0'], inplace=True)
- # C:\. . .\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\numpy\lib\arraysetops.py:583:
- # FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perform elementwise comparison
- # mask |= (ar1 == a)
- # A fix: https://www.youtube.com/watch?v=TTeElATMpoI
- # TLDR: pandas are Jedi; numpy are the hutts; and python is the galatic empire
- #encoding, index_column = dismap_tools.get_encoding_index_col(csv_file)
- encoding, index_column = get_encoding_index_col(csv_file)
- with warnings.catch_warnings():
- warnings.simplefilter(action='ignore', category=FutureWarning)
- # DataFrame
- df = pd.read_csv(
- csv_file,
- index_col = index_column,
- encoding = encoding,
- delimiter = ",",
- dtype = field_csv_dtypes,
- )
- del encoding, index_column
- #arcpy.AddMessage(field_csv_dtypes)
- #arcpy.AddMessage(field_gdb_dtypes)
- del field_csv_dtypes
- #arcpy.AddMessage(df)
- # Replace NaN with an empty string. When pandas reads a cell
- # with missing data, it asigns that cell with a Null or nan
- # value. So, we are changing that value to an empty string of ''.
- # https://community.esri.com/t5/python-blog/those-pesky-null-things/ba-p/902664
- # https://community.esri.com/t5/python-blog/numpy-snippets-6-much-ado-about-nothing-nan-stuff/ba-p/893702
- df.fillna('', inplace=True)
- #df.fillna(np.nan)
- #df = df.replace({np.nan: None})
- # Alternatively, apply to all columns at once
- df = df.apply(lambda x: x.str.strip() if x.dtype == "object" else x)
- arcpy.AddMessage(f">-> Creating the {table_name} Geodatabase Table")
- try:
- array = np.array(np.rec.fromrecords(df.values), dtype = field_gdb_dtypes)
- except: # noqa: E722
- traceback.print_exc()
- raise SystemExit
- del df
- del field_gdb_dtypes
- # Temporary table
- tmp_table = rf"memory\{table_name.lower()}_tmp"
- try:
- arcpy.da.NumPyArrayToTable(array, tmp_table)
- del array
- # Captures ArcPy type of error
- except: # noqa: E722
- traceback.print_exc()
- raise SystemExit
- arcpy.AddMessage(f">-> Copying the {table_name} Table from memory to the GDB")
- fields = [f.name for f in arcpy.ListFields(tmp_table) if f.type == "String"]
- for field in fields:
- arcpy.management.CalculateField(tmp_table, field=field, expression=f"'' if !{field}! is None else !{field}!")
- arcpy.AddMessage("Calculate Field:\t{0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del field
- del fields
- dataset_path = rf"{project_gdb}\{table_name}"
- arcpy.management.CopyRows(tmp_table, dataset_path, "")
- arcpy.AddMessage("Copy Rows:\t{0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- # Remove the temporary table
- arcpy.management.Delete(tmp_table)
- del tmp_table
- #arcpy.conversion.ExportTable(in_table = dataset_path, out_table = rf"{csv_data_folder}\_{table_name}.csv", where_clause="", use_field_alias_as_name = "NOT_USE_ALIAS")
- #arcpy.AddMessage("Export Table:\t{0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- # Alter Fields
- dismap_tools.alter_fields(csv_data_folder, dataset_path)
- dismap_tools.import_metadata(csv_data_folder=csv_data_folder,dataset=dataset_path)
- # Load Metadata
- #dataset_md = md.Metadata(dataset_path)
- #dataset_md.synchronize("ALWAYS")
- #dataset_md.save()
- #del dataset_md
- arcpy.AddMessage(f"Compacting the {os.path.basename(project_gdb)} GDB")
- arcpy.management.Compact(project_gdb)
- arcpy.AddMessage("\t"+arcpy.GetMessages().replace("\n", "\n\t"))
- # Basic variables
- del dataset_path
- del table_name, csv_data_folder, project_folder, scratch_workspace
- # Imports
- del dismap_tools, md, pd, np, warnings
- # Function parameters
- del project_gdb, csv_file
- except KeyboardInterrupt:
- raise SystemExit
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- raise SystemExit
- except SystemExit:
- sys.exit()
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- raise SystemExit
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- raise SystemExit
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- pass
-def update_datecode(csv_file="", project_name=""):
- try:
- #sys.path.append(os.path.abspath('../dev'))
- # Imports
- import dismap_tools
- import pandas as pd
- import warnings
- # Set History and Metadata logs, set serverity and message level
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
- table_name = os.path.basename(csv_file).replace(".csv", "")
- csv_data_folder = os.path.dirname(csv_file)
- # Set basic arcpy.env variables
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- field_csv_dtypes = dismap_tools.dTypesCSV(csv_data_folder, table_name)
- arcpy.AddMessage(f"\tUpdating CSV file: {os.path.basename(csv_file)}")
- #arcpy.AddMessage(f"\t\t{csv_file}")
- # C:\. . .\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\numpy\lib\arraysetops.py:583:
- # FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perform elementwise comparison
- # mask |= (ar1 == a)
- # A fix: https://www.youtube.com/watch?v=TTeElATMpoI
- # TLDR: pandas are Jedi; numpy are the hutts; and python is the galatic empire
- with warnings.catch_warnings():
- warnings.simplefilter(action='ignore', category=FutureWarning)
- # DataFrame
- df = pd.read_csv(csv_file,
- index_col = 0,
- encoding = "utf-8",
- delimiter = ',',
- dtype = field_csv_dtypes,
- )
- old_date_code = df.DateCode.unique()[0]
- arcpy.AddMessage(f"\tOld Date Code: {old_date_code}")
- arcpy.AddMessage(f"\tNew Date Code: {dismap_tools.date_code(project_name)}")
- df = df.replace(regex = old_date_code, value = dismap_tools.date_code(project_name))
- df.to_csv(path_or_buf = f"{csv_file}", sep = ',')
- del df, pd, warnings
- del old_date_code
- arcpy.AddMessage(f"\tCompleted updating CSV file: {os.path.basename(csv_file)}")
- # Declared Variables
- del field_csv_dtypes, table_name, csv_data_folder
- # Imports
- del dismap_tools
- # Function parameters
- del csv_file, project_name
- except KeyboardInterrupt:
- raise SystemExit
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- raise SystemExit
- except SystemExit:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- raise SystemExit
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- raise SystemExit
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- raise SystemExit
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- pass
-def script_tool(project_folder=""):
- """Script code goes below"""
- try:
- from lxml import etree
- from arcpy import metadata as md
- from io import StringIO
- import dismap_tools
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"{'-' * 80}\n")
- # Imports
- #from dev_import_datasets_species_filter_csv_data import worker
- # Set basic arcpy.env variables
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- #project_folder = rf"{os.path.dirname(project_gdb)}"
- project_name = rf"{os.path.basename(project_folder)}"
- project_gdb = rf"{project_folder}\{project_name}.gdb"
- home_folder = rf"{os.path.dirname(project_folder)}"
- csv_data_folder = rf"{project_folder}\CSV_Data"
- datasets_csv = rf"{csv_data_folder}\Datasets.csv"
- species_filter_csv = rf"{csv_data_folder}\Species_Filter.csv"
- survey_metadata_csv = rf"{csv_data_folder}\DisMAP_Survey_Info.csv"
- SpeciesPersistenceIndicatorTrend = rf"{csv_data_folder}\SpeciesPersistenceIndicatorTrend.csv"
- SpeciesPersistenceIndicatorPercentileBin = rf"{csv_data_folder}\SpeciesPersistenceIndicatorPercentileBin.csv"
- arcpy.management.Copy(rf"{home_folder}\Initial Data\Datasets_{dismap_tools.date_code(project_name)}.csv", datasets_csv)
- arcpy.management.Copy(rf"{home_folder}\Initial Data\Species_Filter_{dismap_tools.date_code(project_name)}.csv", species_filter_csv)
- arcpy.management.Copy(rf"{home_folder}\Initial Data\DisMAP_Survey_Info_{dismap_tools.date_code(project_name)}.csv", survey_metadata_csv)
- arcpy.management.Copy(rf"{home_folder}\Initial Data\SpeciesPersistenceIndicatorTrend_{dismap_tools.date_code(project_name)}.csv", SpeciesPersistenceIndicatorTrend)
- arcpy.management.Copy(rf"{home_folder}\Initial Data\SpeciesPersistenceIndicatorPercentileBin_{dismap_tools.date_code(project_name)}.csv", SpeciesPersistenceIndicatorPercentileBin)
- import json
- json_path = rf"{csv_data_folder}\root_dict.json"
- with open(json_path, "r") as json_file:
- root_dict = json.load(json_file)
- del json_file
- del json_path
- del json
- contacts = rf"{home_folder}\Datasets\DisMAP Contacts 2026 02 01.xml"
- datasets = [datasets_csv, species_filter_csv, survey_metadata_csv, SpeciesPersistenceIndicatorTrend, SpeciesPersistenceIndicatorPercentileBin]
- for dataset in datasets:
- arcpy.AddMessage(rf"Metadata for: {os.path.basename(dataset)}")
- dataset_md = md.Metadata(dataset)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- dataset_md.importMetadata(contacts, "ARCGIS_METADATA")
- dataset_md.save()
- dataset_md.synchronize("OVERWRITE")
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- target_tree = etree.parse(StringIO(dataset_md.xml), parser=etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root = target_tree.getroot()
- target_root[:] = sorted(target_root, key=lambda x: root_dict[x.tag]) # noqa: F821
- new_item_name = target_root.find("Esri/DataProperties/itemProps/itemName").text
- #arcpy.AddMessage(new_item_name)
- etree.indent(target_root, space=' ')
- dataset_md.xml = etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- #arcpy.AddMessage(dataset_md.xml)
- del dataset_md
- del dataset
- del datasets
- del csv_data_folder
- #
- UpdateDatecode = True
- if UpdateDatecode:
- # Update DateCode
- #arcpy.AddMessage(datasets_csv)
- arcpy.AddMessage(project_name)
- update_datecode(csv_file=datasets_csv, project_name=project_name)
- del UpdateDatecode
- #
- DatasetsCSVFile = True
- if DatasetsCSVFile:
- worker(project_gdb=project_gdb, csv_file=datasets_csv)
- del DatasetsCSVFile
- #
- SpeciesFilterCSVFile = True
- if SpeciesFilterCSVFile:
- worker(project_gdb=project_gdb, csv_file=species_filter_csv)
- del SpeciesFilterCSVFile
- #
- DisMAPSurveyInfoFile = True
- if DisMAPSurveyInfoFile:
- worker(project_gdb=project_gdb, csv_file=survey_metadata_csv)
- del DisMAPSurveyInfoFile
- #
- SpeciesPersistenceIndicatorPercentileBinFile = True
- if SpeciesPersistenceIndicatorPercentileBinFile:
- worker(project_gdb=project_gdb, csv_file=SpeciesPersistenceIndicatorPercentileBin)
- del SpeciesPersistenceIndicatorPercentileBinFile
- #
- SpeciesPersistenceIndicatorTrendFile = True
- if SpeciesPersistenceIndicatorTrendFile:
- worker(project_gdb=project_gdb, csv_file=SpeciesPersistenceIndicatorTrend)
- del SpeciesPersistenceIndicatorTrendFile
- # # # # # #
- # Declared Varaiables
- del SpeciesPersistenceIndicatorPercentileBin, SpeciesPersistenceIndicatorTrend
- del datasets_csv, species_filter_csv, survey_metadata_csv, home_folder, project_name
- # Declared Variables
- del contacts, target_tree, target_root, new_item_name, root_dict
- # Imports
- del etree, md, StringIO, dismap_tools
- # Function Parameters
- del project_folder
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}\nCompleted: {strftime('%a %b %d %I:%M %p', localtime())}")
- arcpy.AddMessage(u"Elapsed Time {0} (H:M:S)".format(strftime("%H:%M:%S", gmtime(elapse_time))))
- arcpy.AddMessage(f"{'-' * 80}")
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-if __name__ == '__main__':
- try:
-
- project_folder = arcpy.GetParameterAsText(0)
- if not project_folder:
- project_folder = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026")
- else:
- pass
-
- script_tool(project_folder)
-
- arcpy.SetParameterAsText(1, "Result")
-
- del project_folder
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/import_datasets_species_filter_csv_data.~py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/import_datasets_species_filter_csv_data.~py
deleted file mode 100644
index cf7287a..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/import_datasets_species_filter_csv_data.~py
+++ /dev/null
@@ -1,468 +0,0 @@
-"""
-Script documentation
-- Tool parameters are accessed using arcpy.GetParameter() or
- arcpy.GetParameterAsText()
-- Update derived parameter values using arcpy.SetParameter() or
- arcpy.SetParameterAsText()
-"""
-import os
-import sys # built-ins first
-import traceback
-import inspect
-import arcpy
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- filename = sys.path[0] + os.sep + "test.py"
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def get_encoding_index_col(csv_file):
- try:
- # Imports
- import chardet
- import pandas as pd
- # Open the file in binary mode
- with open(csv_file, 'rb') as f:
- # Read the file's content
- data = f.read()
- # Detect the encoding using chardet.detect()
- encoding_result = chardet.detect(data)
- # Retrieve the encoding information
- __encoding = encoding_result['encoding']
- del f, data, encoding_result
- # arcpy.AddMessage the detected encoding
- #arcpy.AddMessage("Detected Encoding:", __encoding)
- dtypes = {}
- # Read the CSV file into a DataFrame
- df = pd.read_csv(csv_file, encoding = __encoding, delimiter = ",",)
- # Analyze the data types and lengths
- for column in df.columns:
- dtypes[column] = df[column].dtype
- del column
- first_column = list(dtypes.keys())[0]
- __index_column = 0 if first_column == "Unnamed: 0" else None
- # Declared Variables
- del df, dtypes, first_column
- # Import
- del chardet, pd
- # Function Parameter
- del csv_file
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- raise SystemExit
- except Exception:
- traceback.print_exc()
- arcpy.AddError(arcpy.GetMessages(2))
- raise SystemExit
- except: # noqa: E722
- traceback.print_exc()
- arcpy.AddError(arcpy.GetMessages(2))
- raise SystemExit
- else:
- return __encoding, __index_column
- finally:
- pass
-
-def worker(project_gdb="", csv_file=""):
- try:
- # Test if passed workspace exists, if not raise SystemExit
- if not arcpy.Exists(project_gdb) or not arcpy.Exists(csv_file):
- raise SystemExit(f"{os.path.basename(project_gdb)} OR {os.path.basename(csv_file)} is missing!!")
- # Imports
- from arcpy import metadata as md
- import dismap_tools
- # Set History and Metadata logs, set serverity and message level
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
- # Set basic workkpace variables
- table_name = os.path.basename(csv_file).replace(".csv", "")
- csv_data_folder = os.path.dirname(csv_file)
- project_folder = os.path.dirname(csv_data_folder)
- scratch_workspace = os.path.join(project_folder, "Scratch\\scratch.gdb")
- # Set basic workkpace variables
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = r"Scratch\\scratch.gdb"
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- #arcpy.AddMessage(table_name)
- #arcpy.AddMessage(csv_data_folder)
- field_csv_dtypes = dismap_tools.dTypesCSV(csv_data_folder, table_name)
- field_gdb_dtypes = dismap_tools.dTypesGDB(csv_data_folder, table_name)
- #arcpy.AddMessage(field_csv_dtypes)
- #arcpy.AddMessage(field_gdb_dtypes)
- arcpy.AddMessage(f"\tCreating Table: {table_name}")
- arcpy.management.CreateTable(project_gdb, f"{table_name}", "", "", table_name.replace("_", " "))
- arcpy.AddMessage("\t{0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- import pandas as pd
- import numpy as np
- import warnings
- arcpy.AddMessage(f"> Importing {table_name} CSV Table")
- #csv_table = f"{table_name}.csv"
- # https://pandas.pydata.org/pandas-docs/stable/getting_started/intro_tutorials/09_timeseries.html?highlight=datetime
- # https://www.tutorialsandyou.com/python/numpy-data-types-66.html
- #df = pd.read_csv('my_file.tsv', sep='\t', header=0) ## not setting the index_col
- #df.set_index(['0'], inplace=True)
- # C:\. . .\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\numpy\lib\arraysetops.py:583:
- # FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perform elementwise comparison
- # mask |= (ar1 == a)
- # A fix: https://www.youtube.com/watch?v=TTeElATMpoI
- # TLDR: pandas are Jedi; numpy are the hutts; and python is the galatic empire
- #encoding, index_column = dismap_tools.get_encoding_index_col(csv_file)
- encoding, index_column = get_encoding_index_col(csv_file)
- with warnings.catch_warnings():
- warnings.simplefilter(action='ignore', category=FutureWarning)
- # DataFrame
- df = pd.read_csv(
- csv_file,
- index_col = index_column,
- encoding = encoding,
- delimiter = ",",
- dtype = field_csv_dtypes,
- )
- del encoding, index_column
- #arcpy.AddMessage(field_csv_dtypes)
- #arcpy.AddMessage(field_gdb_dtypes)
- del field_csv_dtypes
- #arcpy.AddMessage(df)
- # Replace NaN with an empty string. When pandas reads a cell
- # with missing data, it asigns that cell with a Null or nan
- # value. So, we are changing that value to an empty string of ''.
- # https://community.esri.com/t5/python-blog/those-pesky-null-things/ba-p/902664
- # https://community.esri.com/t5/python-blog/numpy-snippets-6-much-ado-about-nothing-nan-stuff/ba-p/893702
- df.fillna('', inplace=True)
- #df.fillna(np.nan)
- #df = df.replace({np.nan: None})
- # Alternatively, apply to all columns at once
- df = df.apply(lambda x: x.str.strip() if x.dtype == "object" else x)
- arcpy.AddMessage(f">-> Creating the {table_name} Geodatabase Table")
- try:
- array = np.array(np.rec.fromrecords(df.values), dtype = field_gdb_dtypes)
- except: # noqa: E722
- traceback.print_exc()
- raise SystemExit
- del df
- del field_gdb_dtypes
- # Temporary table
- tmp_table = rf"memory\{table_name.lower()}_tmp"
- try:
- arcpy.da.NumPyArrayToTable(array, tmp_table)
- del array
- # Captures ArcPy type of error
- except: # noqa: E722
- traceback.print_exc()
- raise SystemExit
- arcpy.AddMessage(f">-> Copying the {table_name} Table from memory to the GDB")
- fields = [f.name for f in arcpy.ListFields(tmp_table) if f.type == "String"]
- for field in fields:
- arcpy.management.CalculateField(tmp_table, field=field, expression=f"'' if !{field}! is None else !{field}!")
- arcpy.AddMessage("Calculate Field:\t{0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- del field
- del fields
- dataset_path = rf"{project_gdb}\{table_name}"
- arcpy.management.CopyRows(tmp_table, dataset_path, "")
- arcpy.AddMessage("Copy Rows:\t{0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- # Remove the temporary table
- arcpy.management.Delete(tmp_table)
- del tmp_table
- #arcpy.conversion.ExportTable(in_table = dataset_path, out_table = rf"{csv_data_folder}\_{table_name}.csv", where_clause="", use_field_alias_as_name = "NOT_USE_ALIAS")
- #arcpy.AddMessage("Export Table:\t{0}\n".format(arcpy.GetMessages().replace("\n", '\n\t')))
- # Alter Fields
- dismap_tools.alter_fields(csv_data_folder, dataset_path)
- dismap_tools.import_metadata(csv_data_folder=csv_data_folder,dataset=dataset_path)
- # Load Metadata
- #dataset_md = md.Metadata(dataset_path)
- #dataset_md.synchronize("ALWAYS")
- #dataset_md.save()
- #del dataset_md
- arcpy.AddMessage(f"Compacting the {os.path.basename(project_gdb)} GDB")
- arcpy.management.Compact(project_gdb)
- arcpy.AddMessage("\t"+arcpy.GetMessages().replace("\n", "\n\t"))
- # Basic variables
- del dataset_path
- del table_name, csv_data_folder, project_folder, scratch_workspace
- # Imports
- del dismap_tools, md, pd, np, warnings
- # Function parameters
- del project_gdb, csv_file
- except KeyboardInterrupt:
- raise SystemExit
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- raise SystemExit
- except SystemExit:
- sys.exit()
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- raise SystemExit
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- raise SystemExit
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- pass
-def update_datecode(csv_file="", project_name=""):
- try:
- #sys.path.append(os.path.abspath('../dev'))
- # Imports
- import dismap_tools
- import pandas as pd
- import warnings
- # Set History and Metadata logs, set serverity and message level
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
- table_name = os.path.basename(csv_file).replace(".csv", "")
- csv_data_folder = os.path.dirname(csv_file)
- # Set basic arcpy.env variables
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- field_csv_dtypes = dismap_tools.dTypesCSV(csv_data_folder, table_name)
- arcpy.AddMessage(f"\tUpdating CSV file: {os.path.basename(csv_file)}")
- #arcpy.AddMessage(f"\t\t{csv_file}")
- # C:\. . .\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\numpy\lib\arraysetops.py:583:
- # FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perform elementwise comparison
- # mask |= (ar1 == a)
- # A fix: https://www.youtube.com/watch?v=TTeElATMpoI
- # TLDR: pandas are Jedi; numpy are the hutts; and python is the galatic empire
- with warnings.catch_warnings():
- warnings.simplefilter(action='ignore', category=FutureWarning)
- # DataFrame
- df = pd.read_csv(csv_file,
- index_col = 0,
- encoding = "utf-8",
- delimiter = ',',
- dtype = field_csv_dtypes,
- )
- old_date_code = df.DateCode.unique()[0]
- arcpy.AddMessage(f"\tOld Date Code: {old_date_code}")
- arcpy.AddMessage(f"\tNew Date Code: {dismap_tools.date_code(project_name)}")
- df = df.replace(regex = old_date_code, value = dismap_tools.date_code(project_name))
- df.to_csv(path_or_buf = f"{csv_file}", sep = ',')
- del df, pd, warnings
- del old_date_code
- arcpy.AddMessage(f"\tCompleted updating CSV file: {os.path.basename(csv_file)}")
- # Declared Variables
- del field_csv_dtypes, table_name, csv_data_folder
- # Imports
- del dismap_tools
- # Function parameters
- del csv_file, project_name
- except KeyboardInterrupt:
- raise SystemExit
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- raise SystemExit
- except SystemExit:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- raise SystemExit
- except Exception:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- raise SystemExit
- except: # noqa: E722
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- raise SystemExit
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- arcpy.AddMessage(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- pass
-def script_tool(project_folder=""):
- """Script code goes below"""
- try:
- from lxml import etree
- from arcpy import metadata as md
- from io import StringIO
- import dismap_tools
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"{'-' * 80}\n")
- # Imports
- #from dev_import_datasets_species_filter_csv_data import worker
- # Set basic arcpy.env variables
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- #project_folder = rf"{os.path.dirname(project_gdb)}"
- project_name = rf"{os.path.basename(project_folder)}"
- project_gdb = rf"{project_folder}\{project_name}.gdb"
- home_folder = rf"{os.path.dirname(project_folder)}"
- csv_data_folder = rf"{project_folder}\CSV_Data"
- datasets_csv = rf"{csv_data_folder}\Datasets.csv"
- species_filter_csv = rf"{csv_data_folder}\Species_Filter.csv"
- survey_metadata_csv = rf"{csv_data_folder}\DisMAP_Survey_Info.csv"
- SpeciesPersistenceIndicatorTrend = rf"{csv_data_folder}\SpeciesPersistenceIndicatorTrend.csv"
- SpeciesPersistenceIndicatorPercentileBin = rf"{csv_data_folder}\SpeciesPersistenceIndicatorPercentileBin.csv"
- arcpy.management.Copy(rf"{home_folder}\Initial Data\Datasets_{dismap_tools.date_code(project_name)}.csv", datasets_csv)
- arcpy.management.Copy(rf"{home_folder}\Initial Data\Species_Filter_{dismap_tools.date_code(project_name)}.csv", species_filter_csv)
- arcpy.management.Copy(rf"{home_folder}\Initial Data\DisMAP_Survey_Info_{dismap_tools.date_code(project_name)}.csv", survey_metadata_csv)
- arcpy.management.Copy(rf"{home_folder}\Initial Data\SpeciesPersistenceIndicatorTrend_{dismap_tools.date_code(project_name)}.csv", SpeciesPersistenceIndicatorTrend)
- arcpy.management.Copy(rf"{home_folder}\Initial Data\SpeciesPersistenceIndicatorPercentileBin_{dismap_tools.date_code(project_name)}.csv", SpeciesPersistenceIndicatorPercentileBin)
- import json
- json_path = rf"{csv_data_folder}\root_dict.json"
- with open(json_path, "r") as json_file:
- root_dict = json.load(json_file)
- del json_file
- del json_path
- del json
- contacts = rf"{home_folder}\Datasets\DisMAP Contacts 2026 02 01.xml"
- datasets = [datasets_csv, species_filter_csv, survey_metadata_csv, SpeciesPersistenceIndicatorTrend, SpeciesPersistenceIndicatorPercentileBin]
- for dataset in datasets:
- arcpy.AddMessage(rf"Metadata for: {os.path.basename(dataset)}")
- dataset_md = md.Metadata(dataset)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- dataset_md.importMetadata(contacts, "ARCGIS_METADATA")
- dataset_md.save()
- dataset_md.synchronize("OVERWRITE")
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- target_tree = etree.parse(StringIO(dataset_md.xml), parser=etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root = target_tree.getroot()
- target_root[:] = sorted(target_root, key=lambda x: root_dict[x.tag]) # noqa: F821
- new_item_name = target_root.find("Esri/DataProperties/itemProps/itemName").text
- #arcpy.AddMessage(new_item_name)
- etree.indent(target_root, space=' ')
- dataset_md.xml = etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- #arcpy.AddMessage(dataset_md.xml)
- del dataset_md
- del dataset
- del datasets
- del csv_data_folder
- #
- UpdateDatecode = True
- if UpdateDatecode:
- # Update DateCode
- #arcpy.AddMessage(datasets_csv)
- arcpy.AddMessage(project_name)
- update_datecode(csv_file=datasets_csv, project_name=project_name)
- del UpdateDatecode
- #
- DatasetsCSVFile = True
- if DatasetsCSVFile:
- worker(project_gdb=project_gdb, csv_file=datasets_csv)
- del DatasetsCSVFile
- #
- SpeciesFilterCSVFile = True
- if SpeciesFilterCSVFile:
- worker(project_gdb=project_gdb, csv_file=species_filter_csv)
- del SpeciesFilterCSVFile
- #
- DisMAPSurveyInfoFile = True
- if DisMAPSurveyInfoFile:
- worker(project_gdb=project_gdb, csv_file=survey_metadata_csv)
- del DisMAPSurveyInfoFile
- #
- SpeciesPersistenceIndicatorPercentileBinFile = True
- if SpeciesPersistenceIndicatorPercentileBinFile:
- worker(project_gdb=project_gdb, csv_file=SpeciesPersistenceIndicatorPercentileBin)
- del SpeciesPersistenceIndicatorPercentileBinFile
- #
- SpeciesPersistenceIndicatorTrendFile = True
- if SpeciesPersistenceIndicatorTrendFile:
- worker(project_gdb=project_gdb, csv_file=SpeciesPersistenceIndicatorTrend)
- del SpeciesPersistenceIndicatorTrendFile
- # # # # # #
- # Declared Varaiables
- del SpeciesPersistenceIndicatorPercentileBin, SpeciesPersistenceIndicatorTrend
- del datasets_csv, species_filter_csv, survey_metadata_csv, home_folder, project_name
- # Declared Variables
- del contacts, target_tree, target_root, new_item_name, root_dict
- # Imports
- del etree, md, StringIO, dismap_tools
- # Function Parameters
- del project_folder
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}\nCompleted: {strftime('%a %b %d %I:%M %p', localtime())}")
- arcpy.AddMessage(u"Elapsed Time {0} (H:M:S)".format(strftime("%H:%M:%S", gmtime(elapse_time))))
- arcpy.AddMessage(f"{'-' * 80}")
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-if __name__ == '__main__':
- try:
-
- project_folder = arcpy.GetParameterAsText(0)
- if not project_folder:
- project_folder = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026")
- else:
- pass
-
- script_tool(project_folder)
-
- arcpy.SetParameterAsText(1, "Result")
-
- del project_folder
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/publish_to_portal_director.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/publish_to_portal_director.py
deleted file mode 100644
index 9a7dba9..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/publish_to_portal_director.py
+++ /dev/null
@@ -1,1324 +0,0 @@
-# -*- coding: utf-8 -*-
-# -------------------------------------------------------------------------------
-# Name: module1
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 03/03/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-# -------------------------------------------------------------------------------
-import os
-import sys
-import traceback
-
-import arcpy # third-parties second
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- #filename = sys.path[0] + os.sep + f"{os.path.basename(__file__)}"
- filename = os.path.basename(__file__)
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def feature_sharing_draft_report(sd_draft=""):
- try:
- import xml.dom.minidom as DOM
-
- docs = DOM.parse(sd_draft)
- key_list = docs.getElementsByTagName("Key")
- value_list = docs.getElementsByTagName("Value")
-
- for i in range(key_list.length):
- value = f"Value: {value_list[i].firstChild.nodeValue}" if value_list[i].firstChild else "Value is missing"
-
- arcpy.AddMessage(f"\t\tKey: {key_list[i].firstChild.nodeValue:<45} {value}")
- # arcpy.AddMessage(f"\t\tKey: {key_list[i].firstChild.nodeValue:<45} {value[:50]}")
- del i, value
-
- del DOM, key_list, value_list, docs
- del sd_draft
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def create_feature_class_layers(project_gdb=""):
- try:
- # Import
- from arcpy import metadata as md
- from dismap_tools import dataset_title_dict, parse_xml_file_format_and_save, clear_folder
-
- # Test if passed workspace exists, if not sys.exit()
- if not arcpy.Exists(project_gdb):
- sys.exit()(f"{os.path.basename(project_gdb)} is missing!!")
-
- # Set History and Metadata logs, set serverity and message level
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(1) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- # Set basic workkpace variables
- project_folder = os.path.dirname(project_gdb)
- project_name = os.path.basename(project_folder)
- csv_data_folder = rf"{project_folder}\CSV_Data"
- scratch_folder = os.path.join(project_folder, "Scratch")
- scratch_workspace = os.path.join(project_folder, "Scratch\\scratch.gdb")
-
- # Clear Scratch Folder
- clear_folder(folder=scratch_folder)
-
- # Create Scratch Workspace for Project
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- if not arcpy.Exists(scratch_folder):
- os.makedirs(scratch_folder)
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- arcpy.management.CreateFileGDB(rf"{scratch_folder}", "scratch")
-
- # Set basic workkpace variables
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- aprx = arcpy.mp.ArcGISProject(rf"{project_folder}\{project_name}.aprx")
-
- del scratch_folder, scratch_workspace
-
- arcpy.AddMessage("Loading the Dataset Title Dictionary. Please wait")
- datasets_dict = dataset_title_dict(project_gdb)
-
- datasets = []
-
- #datasets.extend(arcpy.ListFeatureClasses("AI_IDW_Sample_Locations"))
- datasets.extend(arcpy.ListFeatureClasses("*Sample_Locations"))
- datasets.extend(arcpy.ListFeatureClasses("DisMAP_Regions"))
- datasets.extend(arcpy.ListTables("Indicators"))
- datasets.extend(arcpy.ListTables("Species_Filter"))
- datasets.extend(arcpy.ListTables("DisMAP_Survey_Info"))
- datasets.extend(arcpy.ListTables("SpeciesPersistenceIndicatorPercentileBin"))
- datasets.extend(arcpy.ListTables("SpeciesPersistenceIndicatorTrend"))
-
- for dataset in sorted(datasets):
-
- feature_service_title = datasets_dict[dataset]["Dataset Service Title"]
-
- arcpy.AddMessage(f"Dataset: {dataset}")
- arcpy.AddMessage(f"\tTitle: {feature_service_title}")
-
- desc = arcpy.da.Describe(dataset)
-
- feature_class_path = rf"{project_gdb}\{dataset}"
-
- if desc["dataType"] == "FeatureClass":
-
- arcpy.AddMessage("\tMake Feature Layer")
- feature_class_layer = arcpy.management.MakeFeatureLayer(feature_class_path, feature_service_title)
- feature_class_layer_file = rf"{project_folder}\Layers\{feature_class_layer}.lyrx"
-
- arcpy.AddMessage("\tSave Layer File")
- _result = arcpy.management.SaveToLayerFile(
- in_layer = feature_class_layer,
- out_layer = feature_class_layer_file,
- is_relative_path = "RELATIVE",
- version = "CURRENT"
- )
- del _result
-
- arcpy.management.Delete(feature_class_layer)
- del feature_class_layer
-
- elif desc["dataType"] == "Table":
-
- arcpy.AddMessage("\tMake Table View")
- feature_class_layer = arcpy.management.MakeTableView(
- in_table = feature_class_path,
- out_view = feature_service_title,
- where_clause = "",
- workspace = project_gdb,
- field_info = "OBJECTID OBJECTID VISIBLE NONE;DatasetCode DatasetCode VISIBLE NONE;Region Region VISIBLE NONE;Season Season VISIBLE NONE;DateCode DateCode VISIBLE NONE;Species Species VISIBLE NONE;CommonName CommonName VISIBLE NONE;CoreSpecies CoreSpecies VISIBLE NONE;Year Year VISIBLE NONE;DistributionProjectName DistributionProjectName VISIBLE NONE;DistributionProjectCode DistributionProjectCode VISIBLE NONE;SummaryProduct SummaryProduct VISIBLE NONE;CenterOfGravityLatitude CenterOfGravityLatitude VISIBLE NONE;MinimumLatitude MinimumLatitude VISIBLE NONE;MaximumLatitude MaximumLatitude VISIBLE NONE;OffsetLatitude OffsetLatitude VISIBLE NONE;CenterOfGravityLatitudeSE CenterOfGravityLatitudeSE VISIBLE NONE;CenterOfGravityLongitude CenterOfGravityLongitude VISIBLE NONE;MinimumLongitude MinimumLongitude VISIBLE NONE;MaximumLongitude MaximumLongitude VISIBLE NONE;OffsetLongitude OffsetLongitude VISIBLE NONE;CenterOfGravityLongitudeSE CenterOfGravityLongitudeSE VISIBLE NONE;CenterOfGravityDepth CenterOfGravityDepth VISIBLE NONE;MinimumDepth MinimumDepth VISIBLE NONE;MaximumDepth MaximumDepth VISIBLE NONE;OffsetDepth OffsetDepth VISIBLE NONE;CenterOfGravityDepthSE CenterOfGravityDepthSE VISIBLE NONE"
- )
- feature_class_layer_file = rf"{project_folder}\Layers\{feature_class_layer}.lyrx"
-
- arcpy.AddMessage("\tSave Layer File")
- _result = arcpy.management.SaveToLayerFile(
- in_layer = feature_class_layer,
- out_layer = feature_class_layer_file,
- is_relative_path = "RELATIVE",
- version = "CURRENT"
- )
- del _result
-
- arcpy.management.Delete(feature_class_layer)
- del feature_class_layer
-
- else:
- pass
-
- if [f.name for f in arcpy.ListFields(feature_class_path) if f.name == "StdTime"]:
- arcpy.AddMessage("\tSet Time Enabled if time field is in dataset")
- # Get time information from a layer in a layer file
- layer_file = arcpy.mp.LayerFile(feature_class_layer_file)
- layer = layer_file.listLayers()[0]
- layer.enableTime("StdTime", "StdTime", True)
- layer.time.timeZone = arcpy.mp.ListTimeZones("(UTC) Coordinated Universal Time")[0]
- layer_file.save()
- del layer
-
- for layer in layer_file.listLayers():
- if layer.supports("TIME"):
- if layer.isTimeEnabled:
- lyrTime = layer.time
- startTime = lyrTime.startTime
- endTime = lyrTime.endTime
- timeDelta = endTime - startTime
- startTimeField = lyrTime.startTimeField
- endTimeField = lyrTime.endTimeField
- arcpy.AddMessage(f"\tLayer: {layer.name}")
- arcpy.AddMessage(f"\t\tStart Time Field: {startTimeField}")
- arcpy.AddMessage(f"\t\tEnd Time Field: {endTimeField}")
- arcpy.AddMessage(f"\t\tStart Time: {str(startTime.strftime('%m-%d-%Y'))}")
- arcpy.AddMessage(f"\t\tEnd Time: {str(endTime.strftime('%m-%d-%Y'))}")
- arcpy.AddMessage(f"\t\tTime Extent: {str(timeDelta.days)} days")
- arcpy.AddMessage(f"\t\tTime Zone: {str(layer.time.timeZone)}")
- del lyrTime, startTime, endTime, timeDelta
- del startTimeField, endTimeField
- else:
- arcpy.AddMessage("No time properties have been set on the layer")
- else:
- arcpy.AddMessage("Time is not supported on this layer")
- del layer
- del layer_file
- else:
- arcpy.AddMessage("\tDataset does not have a time field")
-
- layer_file = arcpy.mp.LayerFile(feature_class_layer_file)
-
- # aprx.listBasemaps() to get a list of available basemaps
- #
- # ['Charted Territory Map',
- # 'Colored Pencil Map',
- # 'Community Map',
- # 'Dark Gray Canvas',
- # 'Firefly Imagery Hybrid',
- # 'GEBCO Basemap (NOAA NCEI Visualization)',
- # 'GEBCO Basemap/Contours (NOAA NCEI Visualization)',
- # 'GEBCO Gray Basemap (NOAA NCEI Visualization)',
- # 'GEBCO Gray Basemap/Contours (NOAA NCEI Visualization)',
- # 'Human Geography Dark Map',
- # 'Human Geography Map',
- # 'Imagery',
- # 'Imagery Hybrid',
- # 'Light Gray Canvas',
- # 'Mid-Century Map',
- # 'Modern Antique Map',
- # 'National Geographic Style Map',
- # 'Navigation',
- # 'Navigation (Dark)',
- # 'Newspaper Map',
- # 'NOAA Charts',
- # 'NOAA ENC® Charts',
- # 'Nova Map',
- # 'Oceans',
- # 'OpenStreetMap',
- # 'Streets',
- # 'Streets (Night)',
- # 'Terrain with Labels',
- # 'Topographic']
-
- if aprx.listMaps(feature_service_title):
- aprx.deleteItem(aprx.listMaps(feature_service_title)[0])
- aprx.save()
- else:
- pass
-
- arcpy.AddMessage(f"\tCreating Map: {feature_service_title}")
- aprx.createMap(f"{feature_service_title}", "Map")
- aprx.save()
-
- current_map = aprx.listMaps(feature_service_title)[0]
-
- basemap = "Terrain with Labels"
- current_map.addLayer(layer_file)
- current_map.addBasemap(basemap)
- aprx.save()
- del basemap
-
- arcpy.AddMessage("\t\tCreate map thumbnail and update metadata")
- current_map_view = current_map.defaultView
- current_map_view.exportToPNG(
- rf"{project_folder}\Layers\{feature_service_title}.png",
- width=288,
- height=192,
- resolution=96,
- color_mode="24-BIT_TRUE_COLOR",
- embed_color_profile=True,
- )
- del current_map_view
-
- fc_md = md.Metadata(feature_class_path)
- fc_md.title = feature_service_title
- fc_md.thumbnailUri = (rf"{project_folder}\Layers\{feature_service_title}.png")
- fc_md.save()
- fc_md.reload()
- fc_md.saveAsXML(rf"{project_folder}\Metadata_Export\{feature_service_title}.xml")
- del fc_md
-
- parse_xml_file_format_and_save(csv_data_folder=csv_data_folder, xml_file=rf"{project_folder}\Metadata_Export\{feature_service_title}.xml", sort=True)
- #parse_xml_file_format_and_save(csv_data_folder=csv_data_folder, xml_file="", sort=True)
-
- in_md = md.Metadata(feature_class_path)
- layer_file.metadata.copy(in_md)
- layer_file.metadata.save()
- layer_file.save()
- current_map.metadata.copy(in_md)
- current_map.metadata.save()
- aprx.save()
- del in_md
-
- arcpy.AddMessage(f"\t\tLayer File Path: {layer_file.filePath}")
- arcpy.AddMessage(f"\t\tLayer File Version: {layer_file.version}")
- arcpy.AddMessage("\t\tLayer File Metadata:")
- arcpy.AddMessage(f"\t\t\tLayer File Title: {layer_file.metadata.title}")
- #arcpy.AddMessage(f"\t\t\tLayer File Tags: {layer_file.metadata.tags}")
- #arcpy.AddMessage(f"\t\t\tLayer File Summary: {layer_file.metadata.summary}")
- #arcpy.AddMessage(f"\t\t\tLayer File Description: {layer_file.metadata.description}")
- #arcpy.AddMessage(f"\t\t\tLayer File Credits: {layer_file.metadata.credits}")
- #arcpy.AddMessage(f"\t\t\tLayer File Access Constraints: {layer_file.metadata.accessConstraints}")
-
- arcpy.AddMessage("\t\tList of layers or tables in Layer File:")
- if current_map.listLayers(feature_service_title):
- layer = current_map.listLayers(feature_service_title)[0]
- elif current_map.listTables(feature_service_title):
- layer = current_map.listTables(feature_service_title)[0]
- else:
- arcpy.AddWarning("Something wrong")
-
- in_md = md.Metadata(feature_class_path)
- layer.metadata.copy(in_md)
- layer.metadata.save()
- layer_file.save()
- aprx.save()
- del in_md
-
- arcpy.AddMessage(f"\t\t\tLayer Name: {layer.name}")
- arcpy.AddMessage("\t\t\tLayer Metadata:")
- arcpy.AddMessage(f"\t\t\t\tLayer Title: {layer.metadata.title}")
- #arcpy.AddMessage(f"\t\t\t\tLayer Tags: {layer.metadata.tags}")
- #arcpy.AddMessage(f"\t\t\t\tLayer Summary: {layer.metadata.summary}")
- #arcpy.AddMessage(f"\t\t\t\tLayer Description: {layer.metadata.description}")
- #arcpy.AddMessage(f"\t\t\t\tLayer Credits: {layer.metadata.credits}")
- #arcpy.AddMessage(f"\t\t\t\tLayer Access Constraints: {layer.metadata.accessConstraints}")
- del layer
- del layer_file
- del feature_class_layer_file
- del feature_class_path
-
- aprx.deleteItem(current_map)
- del current_map
- aprx.save()
-
- #del dataset_code, point_feature_type, feature_class_name, region, season
- #del date_code, distribution_project_code
- #del feature_class_path
-
- del desc
- del feature_service_title
- del dataset
-
- del datasets_dict
- del datasets
-
- # Declared Variables set in function
- del aprx
- del csv_data_folder, project_folder, project_name
-
- # Imports
- del dataset_title_dict, parse_xml_file_format_and_save, md
-
- # Function Parameters
- del project_gdb
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def create_feature_class_services(project_gdb=""):
- try:
- # Import
- from arcpy import metadata as md
- from dismap_tools import dataset_title_dict
-
- # Test if passed workspace exists, if not sys.exit()
- if not arcpy.Exists(project_gdb):
- sys.exit()(f"{os.path.basename(project_gdb)} is missing!!")
-
- # Set History and Metadata logs, set serverity and message level
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(1) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- # Set basic workkpace variables
- project_folder = os.path.dirname(project_gdb)
- project_name = os.path.basename(project_folder)
- csv_data_folder = rf"{project_folder}\CSV_Data"
- scratch_folder = os.path.join(project_folder, "Scratch")
- scratch_workspace = os.path.join(project_folder, "Scratch\\scratch.gdb")
-
- # Create Scratch Workspace for Project
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- if not arcpy.Exists(scratch_folder):
- os.makedirs(scratch_folder)
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- arcpy.management.CreateFileGDB(rf"{scratch_folder}", "scratch")
-
- # Set basic workkpace variables
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- aprx = arcpy.mp.ArcGISProject(rf"{project_folder}\{project_name}.aprx")
-
- del scratch_folder, scratch_workspace
-
- arcpy.AddMessage("Loading the Dataset Title Dictionary. Please wait")
- datasets_dict = dataset_title_dict(project_gdb)
-
- datasets = []
-
- #datasets.extend(arcpy.ListFeatureClasses("AI_IDW_Sample_Locations"))
- datasets.extend(arcpy.ListFeatureClasses("*Sample_Locations"))
- datasets.extend(arcpy.ListFeatureClasses("DisMAP_Regions"))
- datasets.extend(arcpy.ListTables("Indicators"))
- datasets.extend(arcpy.ListTables("Species_Filter"))
- datasets.extend(arcpy.ListTables("DisMAP_Survey_Info"))
- datasets.extend(arcpy.ListTables("SpeciesPersistenceIndicatorPercentileBin"))
- datasets.extend(arcpy.ListTables("SpeciesPersistenceIndicatorTrend"))
-
- #LogInAGOL = False
- #if LogInAGOL:
- #try:
- #portal = "https://noaa.maps.arcgis.com/"
- #user = "John.F.Kennedy_noaa"
- # Sign in to portal
- # arcpy.SignInToPortal("https://www.arcgis.com", "MyUserName", "MyPassword")
- # For example: 'http://www.arcgis.com/'
- #arcpy.SignInToPortal(portal)
-
- #arcpy.AddMessage(f"###---> Signed into Portal: {arcpy.GetActivePortalURL()} <---###")
- #del portal, user
- #except:
- #arcpy.AddError(f"###---> Signed into Portal faild <---###")
- #del LogInAGOL
-
- for dataset in sorted(datasets):
-
- feature_service = datasets_dict[dataset]["Dataset Service"]
- feature_service_title = datasets_dict[dataset]["Dataset Service Title"]
-
- arcpy.AddMessage(f"Dataset: {dataset}")
- arcpy.AddMessage(f"\tFS: {feature_service}")
- arcpy.AddMessage(f"\tFST: {feature_service_title}")
-
- feature_class_layer_file = rf"{project_folder}\Layers\{feature_service_title}.lyrx"
-
- layer_file = arcpy.mp.LayerFile(feature_class_layer_file)
-
- del feature_class_layer_file
-
- # aprx.listBasemaps() to get a list of available basemaps
- #
- # ['Charted Territory Map',
- # 'Colored Pencil Map',
- # 'Community Map',
- # 'Dark Gray Canvas',
- # 'Firefly Imagery Hybrid',
- # 'GEBCO Basemap (NOAA NCEI Visualization)',
- # 'GEBCO Basemap/Contours (NOAA NCEI Visualization)',
- # 'GEBCO Gray Basemap (NOAA NCEI Visualization)',
- # 'GEBCO Gray Basemap/Contours (NOAA NCEI Visualization)',
- # 'Human Geography Dark Map',
- # 'Human Geography Map',
- # 'Imagery',
- # 'Imagery Hybrid',
- # 'Light Gray Canvas',
- # 'Mid-Century Map',
- # 'Modern Antique Map',
- # 'National Geographic Style Map',
- # 'Navigation',
- # 'Navigation (Dark)',
- # 'Newspaper Map',
- # 'NOAA Charts',
- # 'NOAA ENC® Charts',
- # 'Nova Map',
- # 'Oceans',
- # 'OpenStreetMap',
- # 'Streets',
- # 'Streets (Night)',
- # 'Terrain with Labels',
- # 'Topographic']
-
- if aprx.listMaps(feature_service_title):
- aprx.deleteItem(aprx.listMaps(feature_service_title)[0])
- aprx.save()
-
- arcpy.AddMessage(f"\tCreating Map: {feature_service_title}")
- aprx.createMap(feature_service_title, "Map")
- aprx.save()
-
- current_map = aprx.listMaps(feature_service_title)[0]
-
- in_md = md.Metadata(rf"{project_gdb}\{dataset}")
- current_map.metadata.copy(in_md)
- current_map.metadata.save()
- aprx.save()
- del in_md
-
- current_map.addLayer(layer_file)
- aprx.save()
-
- del layer_file
-
- arcpy.AddMessage("\t\tList of layers or tables in Layer File:")
- if current_map.listLayers(feature_service_title):
- lyr = current_map.listLayers(feature_service_title)[0]
- elif current_map.listTables(feature_service_title):
- lyr = current_map.listTables(feature_service_title)[0]
- else:
- arcpy.AddWarning("Something wrong")
-
- in_md = md.Metadata(rf"{project_gdb}\{dataset}")
- lyr.metadata.copy(in_md)
- lyr.metadata.save()
- aprx.save()
- del in_md
-
- arcpy.AddMessage("\tGet Web Layer Sharing Draft")
- # Get Web Layer Sharing Draft
- server_type = "HOSTING_SERVER" # FEDERATED_SERVER
- # m.getWebLayerSharingDraft (server_type, service_type, service_name, {layers_and_tables})
- # sddraft = m.getWebLayerSharingDraft(server_type, "FEATURE", service_name, [selected_layer, selected_table])
- # https://pro.arcgis.com/en/pro-app/latest/arcpy/sharing/featuresharingdraft-class.htm#GUID-8E27A3ED-A705-4ACF-8C7D-AA861327AD26
- sddraft = current_map.getWebLayerSharingDraft(server_type=server_type, service_type="FEATURE", service_name=feature_service, layers_and_tables=lyr)
- del server_type
-
- sddraft.allowExporting = False
- sddraft.offline = False
- sddraft.offlineTarget = None
- sddraft.credits = lyr.metadata.credits
- sddraft.description = lyr.metadata.description
- sddraft.summary = lyr.metadata.summary
- sddraft.tags = lyr.metadata.tags
- sddraft.useLimitations = lyr.metadata.accessConstraints
- sddraft.overwriteExistingService = True
- sddraft.portalFolder = f"DisMAP {project_name}"
-
- del lyr
-
- arcpy.AddMessage(f"\t\tAllow Exporting: {sddraft.allowExporting}")
- arcpy.AddMessage(f"\t\tCheck Unique ID Assignment: {sddraft.checkUniqueIDAssignment}")
- arcpy.AddMessage(f"\t\tOffline: {sddraft.offline}")
- arcpy.AddMessage(f"\t\tOffline Target: {sddraft.offlineTarget}")
- arcpy.AddMessage(f"\t\tOverwrite Existing Service: {sddraft.overwriteExistingService}")
- arcpy.AddMessage(f"\t\tPortal Folder: {sddraft.portalFolder}")
- arcpy.AddMessage(f"\t\tServer Type: {sddraft.serverType}")
- arcpy.AddMessage(f"\t\tService Name: {sddraft.serviceName}")
- #arcpy.AddMessage(f"\t\tCredits: {sddraft.credits}")
- #arcpy.AddMessage(f"\t\tDescription: {sddraft.description}")
- #arcpy.AddMessage(f"\t\tSummary: {sddraft.summary}")
- #arcpy.AddMessage(f"\t\tTags: {sddraft.tags}")
- #arcpy.AddMessage(f"\t\tUse Limitations: {sddraft.useLimitations}")
-
- arcpy.AddMessage("\tExport to SD Draft")
- # Create Service Definition Draft file
- sddraft.exportToSDDraft(rf"{project_folder}\Publish\{feature_service}.sddraft")
-
- del sddraft
-
- sd_draft = rf"{project_folder}\Publish\{feature_service}.sddraft"
-
- arcpy.AddMessage("\tModify SD Draft")
- # https://pro.arcgis.com/en/pro-app/latest/arcpy/sharing/featuresharingdraft-class.htm
- # https://www.esri.com/arcgis-blog/products/arcgis-pro/mapping/streamline-your-code-with-new-properties-in-arcpy-sharing
- import xml.dom.minidom as DOM
-
- docs = DOM.parse(sd_draft)
- key_list = docs.getElementsByTagName("Key")
- value_list = docs.getElementsByTagName("Value")
-
- for i in range(key_list.length):
- if key_list[i].firstChild.nodeValue == "maxRecordCount":
- arcpy.AddMessage("\t\tUpdating maxRecordCount from 2000 to 10000")
- value_list[i].firstChild.nodeValue = 2000
- if key_list[i].firstChild.nodeValue == "ServiceTitle":
- arcpy.AddMessage(f"\t\tUpdating ServiceTitle from {value_list[i].firstChild.nodeValue} to {feature_service_title}")
- value_list[i].firstChild.nodeValue = feature_service_title
- # Doesn't work
- #if key_list[i].firstChild.nodeValue == "GeodataServiceName":
- # arcpy.AddMessage(f"\t\tUpdating GeodataServiceName from {value_list[i].firstChild.nodeValue} to {feature_service}")
- # value_list[i].firstChild.nodeValue = feature_service
- del i
-
- # Write to the .sddraft file
- f = open(sd_draft, "w")
- docs.writexml(f)
- f.close()
- del f
-
- del DOM, docs, key_list, value_list
-
- FeatureSharingDraftReport = True
- if FeatureSharingDraftReport:
- arcpy.AddMessage(f"\tReport for {os.path.basename(sd_draft)} SD File")
- feature_sharing_draft_report(sd_draft)
- del FeatureSharingDraftReport
-
- arcpy.AddMessage(f"\tCreate/Stage {os.path.basename(sd_draft)} SD File")
- arcpy.server.StageService(in_service_definition_draft=sd_draft, out_service_definition=sd_draft.replace("sddraft", "sd"), staging_version=5)
-
- UploadServiceDefinition = True
- if UploadServiceDefinition:
- #if project != "April 1 2023":
- arcpy.AddMessage(f"\tUpload {os.path.basename(sd_draft).replace('sddraft', 'sd')} Service Definition")
- arcpy.server.UploadServiceDefinition(
- in_sd_file = sd_draft.replace("sddraft", "sd"),
- in_server = "HOSTING_SERVER", # in_service_name = "", #in_cluster = "",
- in_folder_type = "FROM_SERVICE_DEFINITION", # EXISTING #in_folder = "",
- in_startupType = "STARTED",
- in_override = "OVERRIDE_DEFINITION",
- in_my_contents = "NO_SHARE_ONLINE",
- in_public = "PRIVATE",
- in_organization = "NO_SHARE_ORGANIZATION", # in_groups = ""
- )
- #else:
- # arcpy.AddWarning(f"Project is {project}")
- del UploadServiceDefinition
-
- del sd_draft
-
- #aprx.deleteItem(current_map)
- del current_map
- aprx.save()
-
- del feature_service, feature_service_title
- del dataset
- del datasets
- del datasets_dict
-
- # TODO: Possibly create a dictionary that can be saved to JSON
-
- aprx.save()
-
- current_maps = aprx.listMaps()
-
- if current_maps:
- arcpy.AddMessage("\nCurrent Maps\n")
- for current_map in current_maps:
- arcpy.AddMessage(f"\tProject Map: {current_map.name}")
- del current_map
- else:
- arcpy.AddWarning("No maps in Project")
-
- del current_maps
-
- # Declared Variables set in function for aprx
-
- # Save aprx one more time and then delete
- aprx.save()
- del aprx
-
- # Declared Variables set in function
- del project_folder, project_name, csv_data_folder
-
- # Imports
- del dataset_title_dict, md
-
- # Function Parameters
- del project_gdb
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-##def update_metadata_from_published_md(project_gdb=""):
-## try:
-## # Import
-## import dismap_tools
-##
-## arcpy.env.overwriteOutput = True
-## arcpy.env.parallelProcessingFactor = "100%"
-## arcpy.SetLogMetadata(True)
-## arcpy.SetSeverityLevel(2)
-## arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-##
-## LogInAGOL = False
-## if LogInAGOL:
-## try:
-## portal = "https://noaa.maps.arcgis.com/"
-## user = "John.F.Kennedy_noaa"
-##
-## # Sign in to portal
-## #arcpy.SignInToPortal("https://www.arcgis.com", "MyUserName", "MyPassword")
-## # For example: 'http://www.arcgis.com/'
-## arcpy.SignInToPortal(portal)
-##
-## arcpy.AddMessage(f"###---> Signed into Portal: {arcpy.GetActivePortalURL()} <---###")
-## del portal, user
-## except:
-## arcpy.AddError(f"###---> Signed into Portal faild <---###")
-## del LogInAGOL
-##
-## aprx = arcpy.mp.ArcGISProject(base_project_file)
-## home_folder = aprx.homeFolder
-## del aprx
-##
-## project_gdb = rf"{project_folder}\{project}.gdb"
-##
-##
-##
-## # DatasetCode, CSVFile, TransformUnit, TableName, GeographicArea, CellSize,
-## # PointFeatureType, FeatureClassName, Region, Season, DateCode, Status,
-## # DistributionProjectCode, DistributionProjectName, SummaryProduct,
-## # FilterRegion, FilterSubRegion, FeatureServiceName, FeatureServiceTitle,
-## # MosaicName, MosaicTitle, ImageServiceName, ImageServiceTitle
-##
-## # Get values for table_name from Datasets table
-## #fields = ["FeatureClassName", "FeatureServiceName", "FeatureServiceTitle"]
-## fields = ["DatasetCode", "PointFeatureType", "FeatureClassName", "Region", "Season", "DateCode", "DistributionProjectCode"]
-## datasets = [row for row in arcpy.da.SearchCursor(os.path.join(project_gdb, "Datasets"), fields, where_clause = f"FeatureClassName IS NOT NULL AND DistributionProjectCode NOT IN ('GLMME', 'GFDL')")]
-## #datasets = [row for row in arcpy.da.SearchCursor(os.path.join(project_gdb, "Datasets"), fields, where_clause = f"FeatureClassName IN ('AI_IDW_Sample_Locations', 'DisMAP_Regions')")]
-## del fields
-##
-## for dataset in datasets:
-## dataset_code, point_feature_type, feature_class_name, region_latitude, season, date_code, distribution_project_code = dataset
-##
-## feature_service_name = f"{dataset_code}_{point_feature_type}_{date_code}".replace("None", "").replace(" ", "_").replace("__", "_")
-##
-## if distribution_project_code == "IDW":
-## feature_service_title = f"{region_latitude} {season} {point_feature_type} {date_code}".replace("None", "").replace(" ", " ")
-## #elif distribution_project_code in ["GLMME", "GFDL"]:
-## # feature_service_title = f"{region_latitude} {distribution_project_code} {point_feature_type} {date_code}".replace("None", "").replace(" ", " ")
-## else:
-## feature_service_title = f"{feature_service_name}".replace("_", " ")
-##
-## map_title = feature_service_title.replace("GRID Points", "").replace("Sample Locations", "").replace(" ", " ")
-##
-## feature_class_path = f"{project_gdb}\{feature_class_name}"
-##
-## arcpy.AddMessage(f"Dataset Code: {dataset_code}")
-## arcpy.AddMessage(f"\tFeature Service Name: {feature_service_name}")
-## arcpy.AddMessage(f"\tFeature Service Title: {feature_service_title}")
-## arcpy.AddMessage(f"\tMap Title: {map_title}")
-## arcpy.AddMessage(f"\tLayer Title: {feature_service_title}")
-## arcpy.AddMessage(f"\tFeature Class Name: {feature_class_name}")
-## arcpy.AddMessage(f"\tFeature Class Path: {feature_class_path}")
-##
-## if arcpy.Exists(rf"{project_folder}\Publish\{feature_service_name}.xml"):
-## arcpy.AddMessage(f"\t###--->>> {feature_service_name}.xml Exists <<<---###")
-##
-## from arcpy import metadata as md
-## in_md = md.Metadata(rf"{project_folder}\Publish\{feature_service_name}.xml")
-## fc_md = md.Metadata(feature_class_path)
-## fc_md.copy(in_md)
-## fc_md.save()
-## del in_md, fc_md
-## del md
-##
-## else:
-## arcpy.AddWarning(f"\t###--->>> {feature_service_name}.xml Does Not Exist <<<---###")
-##
-## del dataset_code, point_feature_type, feature_class_name, region_latitude, season
-## del date_code, distribution_project_code
-##
-## del feature_service_name, feature_service_title
-## del map_title, feature_class_path
-## del dataset
-## del datasets
-##
-## arcpy.AddMessage(f"\n{'-' * 90}\n")
-##
-## # Declared Variables set in function
-## del project_gdb
-## del home_folder
-##
-## # Imports
-## del dismap
-##
-## # Function Parameters
-## del base_project_file, project
-##
-## except SystemExit:
-## sys.exit()
-## except:
-## traceback.print_exc()
-## sys.exit()
-## else:
-## try:
-## leave_out_keys = ["leave_out_keys", "remaining_keys", "results"]
-## remaining_keys = [key for key in locals().keys() if not key.startswith('__') and key not in leave_out_keys]
-## if remaining_keys:
-## arcpy.AddWarning(f"Remaining Keys in '{inspect.stack()[0][3]}': ##--> '{', '.join(remaining_keys)}' <--## Line Number: {traceback.extract_stack()[-1].lineno}")
-## del leave_out_keys, remaining_keys
-##
-## return results if "results" in locals().keys() else ["NOTE!! The 'results' variable not yet set!!"]
-##
-## except:
-## traceback.print_exc()
-## finally:
-## try:
-## if "results" in locals().keys(): del results
-## except UnboundLocalError:
-## pass
-
-def create_image_services(project_gdb=""):
- try:
- # Import
-
- # Set History and Metadata logs, set serverity and message level
- arcpy.SetLogHistory(True) # Look in %AppData%\Roaming\Esri\ArcGISPro\ArcToolbox\History
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(1) # 0—A tool will not throw an exception, even if the tool produces an error or warning.
- # 1—If a tool produces a warning or an error, it will throw an exception.
- # 2—If a tool produces an error, it will throw an exception. This is the default.
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- #aprx = arcpy.mp.ArcGISProject(base_project_file) # noqa: F821
- #home_folder = aprx.homeFolder
- #project_gdb = rf"{project_folder}\{project}.gdb" # noqa: F821
-
- # Set basic workkpace variables
- project_folder = os.path.dirname(project_gdb)
- crfs_folder = os.path.join(project_folder, "CRFs")
- scratch_folder = os.path.join(project_folder, "Scratch")
- scratch_workspace = os.path.join(project_folder, "Scratch\\scratch.gdb")
-
- # Create Scratch Workspace for Project
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- if not arcpy.Exists(scratch_folder):
- os.makedirs(scratch_folder)
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- arcpy.management.CreateFileGDB(rf"{scratch_folder}", "scratch")
-
- # Set basic workkpace variables
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = scratch_workspace
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- del scratch_folder, scratch_workspace
-
- arcpy.env.workspace = crfs_folder
-
- for crf in arcpy.ListRasters("*"):
- arcpy.AddMessage(crf)
-
- arcpy.env.workspace = project_gdb
-
-## LogIntoPortal = False
-## if LogIntoPortal:
-## try:
-## portal = "https://noaa.maps.arcgis.com/"
-## user = "John.F.Kennedy_noaa"
-##
-## #portal = "https://maps.fisheries.noaa.gov/portal/home"
-## #portal = "https://maps.fisheries.noaa.gov"
-## #user = "John.F.Kennedy_noaa"
-##
-## # Sign in to portal
-## # arcpy.SignInToPortal("https://www.arcgis.com", "MyUserName", "MyPassword")
-## # For example: 'http://www.arcgis.com/'
-## arcpy.SignInToPortal(portal)
-##
-## arcpy.AddMessage(f"###---> Signed into Portal: {arcpy.GetActivePortalURL()} <---###")
-## del portal, user
-## except: # noqa: E722
-## arcpy.AddError("###---> Signed into Portal faild <---###")
-## sys.exit()
-## del LogIntoPortal
-
- # Publishes an image service to a machine "myserver" from a folder of ortho images
- # this code first author a mosaic dataset from the images, then publish it as an image service.
- # A connection to ArcGIS Server must be established in the Catalog window of ArcMap
- # before running this script
-
- #import time
- #import arceditor # this is required to create a mosaic dataset from images
-
- #
- # Define local variables:
- #ImageSource=r"\\myserver\data\SourceData\Portland" # the folder of input images
- #MyWorkspace=r"\\myserver\Data\DemoData\ArcPyPublishing" # the folder for mosaic dataset and the service defintion draft file
- #GdbName="fgdb1.gdb"
- #GDBpath = os.path.join(MyWorkspace,GdbName) #File geodatabase used to store a mosaic dataset
- #Name = "OrthoImages"
- #Md = os.path.join(GDBpath, Name)
- #Sddraft = os.path.join(MyWorkspace,Name+".sddraft")
- #Sd = os.path.join(MyWorkspace,Name+".sd")
- #con = os.path.join(MyWorkspace, "arcgis on myserver_6080 (admin).ags")
-
- con = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis\\image on maps.fisheries.noaa.gov.ags")
-
- mosiac_name = "SEUS_FAL_Mosaic"
- mosiac_path = rf"{project_gdb}\{mosiac_name}"
- mosiac_sddraft = rf"{project_folder}\Publish\{mosiac_name}.sddraft"
-
-
- # Create service definition draft
- try:
- arcpy.AddMessage("Creating SD draft")
- #arcpy.CreateImageSDDraft(Md, Sddraft, Name, 'ARCGIS_SERVER', con, False, None, "Ortho Images","ortho images,image service")
- arcpy.CreateImageSDDraft(mosiac_path, mosiac_sddraft, mosiac_name, 'ARCGIS_SERVER', con, False, None, "Biomass Rasters", "biomass rasters,image service")
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- import traceback
- traceback.print_exc()
- return False
-## # Analyze the service definition draft
-## analysis = arcpy.mapping.AnalyzeForSD(Sddraft)
-## arcpy.AddMessage("The following information was returned during analysis of the image service:")
-## for key in ('messages', 'warnings', 'errors'):
-## arcpy.AddMessage('----' + key.upper() + '---')
-## vars = analysis[key]
-## for ((message, code), layerlist) in vars.iteritems():
-## arcpy.AddMessage(' ', message, ' (CODE %i)' % code)
-## arcpy.AddMessage(' applies to:'),
-## for layer in layerlist:
-## arcpy.AddMessage(layer.name),
-## arcpy.AddMessage()
-##
-## # Stage and upload the service if the sddraft analysis did not contain errors
-## if analysis['errors'] == {}:
-## try:
-## arcpy.AddMessage("Adding data path to data store to avoid data copy")
-## arcpy.AddDataStoreItem(con, "FOLDER","Images", MyWorkspace, MyWorkspace)
-##
-## arcpy.AddMessage("Staging service to create service definition")
-## arcpy.StageService_server(Sddraft, Sd)
-##
-## arcpy.AddMessage("Uploading the service definition and publishing image service")
-## arcpy.UploadServiceDefinition_server(Sd, con)
-##
-## arcpy.AddMessage("Service successfully published")
-## except:
-## arcpy.AddError(arcpy.GetMessages()+ "\n\n")
-## sys.exit("Failed to stage and upload service")
-## else:
-## arcpy.AddError("Service could not be published because errors were found during analysis.")
-## arcpy.AddError(arcpy.GetMessages(2))
-
- #del project_gdb
-
- # Declared Variables set in function for aprx
- #del home_folder
- # Save aprx one more time and then delete
- #aprx.save()
- #del aprx
-
- # Declared Variables set in function
-
- # Imports
-
- # Function Parameters
- del project_gdb
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except Exception:
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def create_maps(project_gdb=""):
- try:
- # Import
- from arcpy import metadata as md
-
- from dismap_tools import dataset_title_dict
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2)
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
-## # Map Cleanup
-## MapCleanup = False
-## if MapCleanup:
-## map_cleanup(base_project_file)
-## del MapCleanup
-
- base_project_folder = rf"{os.path.dirname(base_project_file)}" # noqa: F821
- base_project_file = rf"{base_project_folder}\DisMAP.aprx"
- project_folder = rf"{base_project_folder}\{project}" # noqa: F821
- project_gdb = rf"{project_folder}\{project}.gdb" # noqa: F821
- metadata_folder = rf"{project_folder}\Export Metadata"
- scratch_folder = rf"{project_folder}\Scratch"
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = os.path.join(scratch_folder, "scratch.gdb")
-
- aprx = arcpy.mp.ArcGISProject(base_project_file)
- home_folder = aprx.homeFolder
-
- #arcpy.AddMessage(f"\n{'-' * 90}\n")
-
- metadata_dictionary = dataset_title_dict(project_gdb)
-
- datasets = list()
-
- walk = arcpy.da.Walk(project_gdb)
-
- for dirpath, dirnames, filenames in walk:
- for filename in filenames:
- datasets.append(os.path.join(dirpath, filename))
- del filename
- del dirpath, dirnames, filenames
- del walk
-
- for dataset_path in sorted(datasets):
- arcpy.AddMessage(dataset_path)
- dataset_name = os.path.basename(dataset_path)
- data_type = arcpy.Describe(dataset_path).dataType
- if data_type == "Table":
- #arcpy.AddMessage(f"Dataset Name: {dataset_name}")
- #arcpy.AddMessage(f"\tData Type: {data_type}")
-
- if "IDW" in dataset_name:
- arcpy.AddMessage(f"Dataset Name: {dataset_name}")
- if "Indicators" in dataset_name:
- arcpy.AddMessage("\tRegion Indicators")
-
- elif "LayerSpeciesYearImageName" in dataset_name:
- arcpy.AddMessage("\tRegion Layer Species Year Image Name")
-
- else:
- arcpy.AddMessage("\tRegion Table")
-
- else:
- arcpy.AddMessage(f"Dataset Name: {dataset_name}")
- if "Indicators" in dataset_name:
- arcpy.AddMessage("\tMain Indicators Table")
-
- elif "LayerSpeciesYearImageName" in dataset_name:
- arcpy.AddMessage("\tLayer Species Year Image Name")
-
- elif "Datasets" in dataset_name:
- arcpy.AddMessage("\tDataset Table")
-
- elif "Species_Filter" in dataset_name:
- arcpy.AddMessage("\tSpecies Filter Table")
-
- else:
- arcpy.AddMessage(f"\tDataset Name: {dataset_name}")
-
- elif data_type == "FeatureClass":
- #arcpy.AddMessage(f"\tData Type: {data_type}")
-
- if "IDW" in dataset_name:
- arcpy.AddMessage(f"Dataset Name: {dataset_name}")
- if dataset_name.endswith("Boundary"):
- arcpy.AddMessage("\tBoundary")
-
- elif dataset_name.endswith("Extent_Points"):
- arcpy.AddMessage("\tExtent_Points")
-
- elif dataset_name.endswith("Fishnet"):
- arcpy.AddMessage("\tFishnet")
-
- elif dataset_name.endswith("Lat_Long"):
- arcpy.AddMessage("\tLat_Long")
-
- elif dataset_name.endswith("Region"):
- arcpy.AddMessage("\tRegion")
-
- elif dataset_name.endswith("Sample_Locations"):
- arcpy.AddMessage("\tSample_Locations")
-
- else:
- pass
-
- elif "DisMAP_Regions" == dataset_name:
- arcpy.AddMessage(f"Dataset Name: {dataset_name}")
- if dataset_name.endswith("Regions"):
- arcpy.AddMessage("\tDisMAP Regions")
-
- else:
- arcpy.AddMessage(f"Else Dataset Name: {dataset_name}")
-
- elif data_type == "RasterDataset":
-
- if "IDW" in dataset_name:
- arcpy.AddMessage(f"Dataset Name: {dataset_name}")
- if dataset_name.endswith("Bathymetry"):
- arcpy.AddMessage("\tBathymetry")
-
- elif dataset_name.endswith("Latitude"):
- arcpy.AddMessage("\tLatitude")
-
- elif dataset_name.endswith("Longitude"):
- arcpy.AddMessage("\tLongitude")
-
- elif dataset_name.endswith("Raster_Mask"):
- arcpy.AddMessage("\tRaster_Mask")
- else:
- pass
-
- elif data_type == "MosaicDataset":
-
- if "IDW" in dataset_name:
- arcpy.AddMessage(f"Dataset Name: {dataset_name}")
- if dataset_name.endswith("Mosaic"):
- arcpy.AddMessage("\tMosaic")
- else:
- pass
-
- elif "CRF" in dataset_name:
- arcpy.AddMessage(f"Dataset Name: {dataset_name}")
- if dataset_name.endswith("CRF"):
- arcpy.AddMessage("\tCRF")
-
- else:
- pass
- else:
- pass
-
- del data_type
-
- del dataset_name, dataset_path
- del datasets
-
- # Declared Variables set in function for aprx
- del home_folder
- # Save aprx one more time and then delete
- aprx.save()
- del aprx
-
- # Declared Variables set in function
- del base_project_folder, metadata_folder
- del project_folder, scratch_folder
- del metadata_dictionary
-
- # Imports
- del dataset_title_dict, md
-
- # Function Parameters
- del project_gdb
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-def script_tool(project_gdb=""):
- try:
- # Imports
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- arcpy.AddMessage(f"{'-' * 80}")
- arcpy.AddMessage(f"Python Script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Location: .. {'/'.join(__file__.split(os.sep)[-4:])}")
- arcpy.AddMessage(f"Python Version: {sys.version}")
- arcpy.AddMessage(f"Environment: {os.path.basename(sys.exec_prefix)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"{'-' * 80}\n")
-
- # Set varaibales
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = rf"{project_folder}\Scratch"
- del project_folder
-
- # Create project scratch workspace, if missing
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- if not arcpy.Exists(scratch_folder):
- os.makedirs(scratch_folder)
- if not arcpy.Exists(os.path.join(scratch_folder, "scratch.gdb")):
- arcpy.management.CreateFileGDB(rf"{scratch_folder}", "scratch")
- del scratch_folder
-
- # Set basic arcpy.env variables
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- try:
-
- CreateFeatureClassLayers = False
- if CreateFeatureClassLayers:
- create_feature_class_layers(project_gdb=project_gdb)
- del CreateFeatureClassLayers
-
- CreateFeaturClasseServices = False
- if CreateFeaturClasseServices:
- create_feature_class_services(project_gdb=project_gdb)
- del CreateFeaturClasseServices
-
- CreateImagesServices = True
- if CreateImagesServices:
- create_image_services(project_gdb=project_gdb)
- del CreateImagesServices
-
- # UpdateMetadataFromPublishedMd = False
- # if UpdateMetadataFromPublishedMd:
- # update_metadata_from_published_md(project_gdb=project_gdb)
- # del UpdateMetadataFromPublishedMd
-
- CreateMaps = False
- if CreateMaps:
- create_maps(project_gdb=project_gdb)
- del CreateMaps
-
-## CreateBasicTemplateXMLFiles = False
-## if CreateBasicTemplateXMLFiles:
-## create_basic_template_xml_files(project_gdb=project_gdb)
-## del CreateBasicTemplateXMLFiles
-##
-## ImportBasicTemplateXmlFiles = False
-## if ImportBasicTemplateXmlFiles:
-## import_basic_template_xml_files(project_gdb=project_gdb)
-## del ImportBasicTemplateXmlFiles
-
- except SystemExit:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- sys.exit()
-
- # Variable created in function
- #
- # Function Parameters
- del project_gdb
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- hours, rem = divmod(end_time-start_time, 3600)
- minutes, seconds = divmod(rem, 60)
- arcpy.AddMessage(f"\n{'-' * 80}")
- arcpy.AddMessage(f"Python script: {os.path.basename(__file__)}")
- arcpy.AddMessage(f"Start Time: {strftime('%a %b %d %I:%M %p', localtime(start_time))}")
- arcpy.AddMessage(f"End Time: {strftime('%a %b %d %I:%M %p', localtime(end_time))}")
- arcpy.AddMessage(f"Elapsed Time {int(hours):0>2}:{int(minutes):0>2}:{seconds:05.2f} (H:M:S)")
- arcpy.AddMessage(f"{'-' * 80}")
- del hours, rem, minutes, seconds
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- return False
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
- return False
- else:
- return True
-
-if __name__ == '__main__':
- try:
- project_gdb = arcpy.GetParameterAsText(0)
-
- if not project_gdb:
- project_gdb = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026\\February 1 2026.gdb")
- else:
- pass
-
- script_tool(project_gdb)
-
- arcpy.SetParameterAsText(1, "Result")
-
- del project_gdb
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/rename files.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/rename files.py
deleted file mode 100644
index e70273d..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/rename files.py
+++ /dev/null
@@ -1,25 +0,0 @@
-#---------------------------------------------------------------------------------------
-# Name: module1
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 17/04/2026
-# Copyright: (c) john.f.kennedy 2026
-# Licence:
-#---------------------------------------------------------------------------------------
-
-def main():
- import os
- cwd = r"C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\Scripts\dismap_tools"
- os.chdir(cwd)
-
- python_baqckup_files = [ f for f in os.listdir(".") if f.endswith(".~py")]
-
- for python_baqckup_file in python_baqckup_files:
- os.rename(python_baqckup_file, python_baqckup_file.replace(".~py", ".py"))
-
-
-
-if __name__ == '__main__':
- main()
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/rename files.~py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/rename files.~py
deleted file mode 100644
index 255fc93..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/rename files.~py
+++ /dev/null
@@ -1,16 +0,0 @@
-#---------------------------------------------------------------------------------------
-# Name: module1
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 17/04/2026
-# Copyright: (c) john.f.kennedy 2026
-# Licence:
-#---------------------------------------------------------------------------------------
-
-def main():
- pass
-
-if __name__ == '__main__':
- main()
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/zip_and_unzip_csv_data.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/zip_and_unzip_csv_data.py
deleted file mode 100644
index 3ebfca5..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/zip_and_unzip_csv_data.py
+++ /dev/null
@@ -1,160 +0,0 @@
-"""
-Script documentation
-- Tool parameters are accessed using arcpy.GetParameter() or
- arcpy.GetParameterAsText()
-- Update derived parameter values using arcpy.SetParameter() or
- arcpy.SetParameterAsText()
-"""
-import os
-import sys
-
-import arcpy
-
-def trace():
- import sys, traceback # noqa: E401
- tb = sys.exc_info()[2]
- tbinfo = traceback.format_tb(tb)[0]
- line = tbinfo.split(", ")[1]
- filename = sys.path[0] + os.sep + "test.py"
- synerror = traceback.format_exc().splitlines()[-1]
- return line, filename, synerror
-
-def script_tool(project_folder, source_zip_file):
- """Script code goes below"""
- try:
- from zipfile import ZipFile
- from arcpy import metadata as md
- from lxml import etree
- from io import StringIO
-
- aprx = arcpy.mp.ArcGISProject("CURRENT")
- #aprx.save()
- project_folder = aprx.homeFolder
- arcpy.AddMessage(project_folder)
- out_data_path = rf"{project_folder}\CSV_Data"
- import json
- json_path = rf"{out_data_path}\root_dict.json"
- with open(json_path, "r") as json_file:
- root_dict = json.load(json_file)
- del json_file
- del json_path
- del json
- arcpy.AddMessage(out_data_path)
- # Change Directory
- os.chdir(out_data_path)
- arcpy.AddMessage(f"Un-Zipping files from {os.path.basename(source_zip_file)}")
- with ZipFile(source_zip_file, mode="r") as archive:
- for file in archive.namelist():
- archive.extract(file, ".")
- del file
- del archive
- arcpy.AddMessage(f"Done Un-Zipping files from {os.path.basename(source_zip_file)}")
- tmp_workspace = arcpy.env.workspace
- arcpy.env.workspace = rf"{out_data_path}\python"
- csv_files = arcpy.ListFiles("*_survey.csv")
- arcpy.AddMessage("Copying CSV Files and renameing the file")
- for csv_file in csv_files:
- arcpy.management.Copy(rf"{out_data_path}\python\{csv_file}", rf"{out_data_path}\{csv_file.replace('_survey', '_IDW')}")
- del csv_file
- del csv_files
- arcpy.env.workspace = tmp_workspace
- del tmp_workspace
- if arcpy.Exists(rf"{out_data_path}\python"):
- arcpy.AddMessage("Removing the extract folder")
- arcpy.management.Delete(rf"{out_data_path}\python")
- else:
- pass
- arcpy.AddMessage(f"Adding metadata to CSV file")
- tmp_workspace = arcpy.env.workspace
- arcpy.env.workspace = out_data_path
- contacts = rf"{os.path.dirname(project_folder)}\Datasets\DisMAP Contacts 2025 08 01.xml"
- csv_files = arcpy.ListFiles("*_IDW.csv")
- for csv_file in csv_files:
- arcpy.AddMessage(f"\t{csv_file}")
- dataset_md = md.Metadata(rf"{out_data_path}\{csv_file}")
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- dataset_md.importMetadata(contacts, "ARCGIS_METADATA")
- dataset_md.save()
- dataset_md.synchronize("OVERWRITE")
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- target_tree = etree.parse(StringIO(dataset_md.xml), parser=etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root = target_tree.getroot()
- target_root[:] = sorted(target_root, key=lambda x: root_dict[x.tag])
- new_item_name = target_root.find("Esri/DataProperties/itemProps/itemName").text
- arcpy.AddMessage(new_item_name)
-## onLineSrcs = target_root.findall("distInfo/distTranOps/onLineSrc")
-## #arcpy.AddMessage(onLineSrcs)
-## for onLineSrc in onLineSrcs:
-## if onLineSrc.find('./protocol').text == "ESRI REST Service":
-## old_linkage_element = onLineSrc.find('./linkage')
-## old_linkage = old_linkage_element.text
-## #arcpy.AddMessage(old_linkage)
-## old_item_name = old_linkage[old_linkage.find("/services/")+len("/services/"):old_linkage.find("/FeatureServer")]
-## new_linkage = old_linkage.replace(old_item_name, new_item_name)
-## #arcpy.AddMessage(new_linkage)
-## old_linkage_element.text = new_linkage
-## #arcpy.AddMessage(old_linkage_element.text)
-## del old_linkage_element
-## del old_item_name, old_linkage, new_linkage
-## onLineSrc.find('./orName').text = f"{new_item_name} Feature Service"
-## del onLineSrcs, new_item_name
- etree.indent(target_root, space=' ')
- dataset_md.xml = etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
-
- del dataset_md
-
- del csv_file
- del csv_files
- arcpy.env.workspace = tmp_workspace
- del tmp_workspace
- del project_folder
- del source_zip_file
- del md
- return out_data_path
-
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- except:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- else:
- pass
- finally:
- pass
- del out_data_path
-if __name__ == "__main__":
- try:
- project_folder = arcpy.GetParameterAsText(0)
- if not project_folder:
- project_folder = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\Projects\\DisMAP\\ArcGIS-Analysis-Python\\February 1 2026"
- else:
- pass
-
- source_zip_file = arcpy.GetParameterAsText(1)
- if not source_zip_file:
- source_zip_file = os.path.join(os.path.expanduser('~'), "Documents\\ArcGIS\Projects\\DisMAP\\ArcGIS-Analysis-Python\\Initial Data\\CSV Data 20260201.zip"
- else:
- pass
-
- script_tool(project_folder, source_zip_file)
- arcpy.SetParameterAsText(2, True)
-
- except arcpy.ExecuteError:
- #Return Geoprocessing tool specific errors
- line, filename, err = trace()
- arcpy.AddError("Geoprocessing error on " + line + " of " + filename + " :")
- for msg in range(0, arcpy.GetMessageCount()):
- if arcpy.GetSeverity(msg) == 2:
- arcpy.AddReturnMessage(msg)
- except: # noqa: E722
- #Gets non-tool errors
- line, filename, err = trace()
- arcpy.AddError("Python error on " + line + " of " + filename)
- arcpy.AddError(err)
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools/zip_and_unzip_shapefile_data.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools/zip_and_unzip_shapefile_data.py
deleted file mode 100644
index ef1d144..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools/zip_and_unzip_shapefile_data.py
+++ /dev/null
@@ -1,62 +0,0 @@
-"""
-Script documentation
-- Tool parameters are accessed using arcpy.GetParameter() or
- arcpy.GetParameterAsText()
-- Update derived parameter values using arcpy.SetParameter() or
- arcpy.SetParameterAsText()
-"""
-import traceback
-
-import arcpy
-
-def script_tool(home_folder="", source_zip_file=""):
- """Script code goes below"""
- try:
- import os
- from zipfile import ZipFile
- #aprx = arcpy.mp.ArcGISProject("CURRENT")
- #aprx.save()
- #home_folder = aprx.homeFolder
- arcpy.AddMessage(home_folder)
- out_data_path = rf"{home_folder}\Dataset_Shapefiles"
- arcpy.AddMessage(out_data_path)
- # Change Directory
- os.chdir(out_data_path)
- arcpy.AddMessage(f"Un-Zipping files from {os.path.basename(source_zip_file)}")
- with ZipFile(source_zip_file, mode="r") as archive:
- for file in archive.namelist():
- archive.extract(file, ".")
- del file
- del archive
- arcpy.AddMessage(f"Done Un-Zipping files from {os.path.basename(source_zip_file)}")
- del home_folder
- del source_zip_file
- return out_data_path
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- except:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- else:
- pass
- finally:
- pass
- #del out_data_path
-if __name__ == "__main__":
- try:
- home_folder = arcpy.GetParameterAsText(0)
- source_zip_file = arcpy.GetParameterAsText(1)
- script_tool(home_folder, source_zip_file)
- arcpy.SetParameterAsText(2, "Result")
- del home_folder, source_zip_file
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- except:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools_dev/__pycache__/dismap_metadata_processing.cpython-313.pyc b/ArcGIS-Analysis-Python/Scripts/dismap_tools_dev/__pycache__/dismap_metadata_processing.cpython-313.pyc
deleted file mode 100644
index 33e5d01..0000000
Binary files a/ArcGIS-Analysis-Python/Scripts/dismap_tools_dev/__pycache__/dismap_metadata_processing.cpython-313.pyc and /dev/null differ
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools_dev/arcpy da Editor.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools_dev/arcpy da Editor.py
deleted file mode 100644
index 18f366b..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools_dev/arcpy da Editor.py
+++ /dev/null
@@ -1,45 +0,0 @@
-#-------------------------------------------------------------------------------
-# Name: module1
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 06/12/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-#-------------------------------------------------------------------------------
-import arcpy
-
-def main():
- try:
- workspace = r"{os.environ['USERPROFILE']}\Documents\ArcGIS\Projects\National Mapper\National Mapper.gdb"
- edit = arcpy.da.Editor(workspace)
- arcpy.AddMessage("edit created")
- edit.startEditing()
- arcpy.AddMessage("edit started")
- edit.startOperation()
- arcpy.AddMessage("operation started")
- # Perform edits
- #with arcpy.da.InsertCursor(fc, fields) as fc_icursor:
- # fc_icursor.insertRow(someNewRow)
- edit.stopOperation()
- arcpy.AddMessage("operation stopped")
- edit.stopEditing(True) ## Stop the edit session with True to save the changes
- arcpy.AddMessage("edit stopped")
- except Exception as err:
- arcpy.AddMessage(err)
- if 'edit' in locals():
- if edit.isEditing:
- edit.stopOperation()
- arcpy.AddMessage("operation stopped in except")
- edit.stopEditing(False) ## Stop the edit session with False to abandon the changes
- arcpy.AddMessage("edit stopped in except")
- except:
- import traceback
- traceback.print_exc()
- finally:
- # Cleanup
- arcpy.management.ClearWorkspaceCache()
-
-if __name__ == '__main__':
- main()
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools_dev/dev_dismap_director.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools_dev/dev_dismap_director.py
deleted file mode 100644
index 713e42a..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools_dev/dev_dismap_director.py
+++ /dev/null
@@ -1,464 +0,0 @@
-# -*- coding: utf-8 -*-
-# -------------------------------------------------------------------------------
-# Name: dismap.py
-# Purpose: Common DisMAP functions
-#
-# Author: john.f.kennedy
-#
-# Created: 12/01/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-# -------------------------------------------------------------------------------
-import os, sys # built-ins first
-import traceback
-import importlib
-import inspect
-
-import arcpy # third-parties second
-
-def main(project_gdb=""):
- try:
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- print(f"{'-' * 80}")
- print(f"Python Script: {os.path.basename(__file__)}")
- print(f"Location: ..\Documents\ArcGIS\Projects\..\{os.path.basename(os.path.dirname(__file__))}\{os.path.basename(__file__)}")
- print(f"Python Version: {sys.version}")
- print(f"Environment: {os.path.basename(sys.exec_prefix)}")
- print(f"{'-' * 80}\n")
-
- # Set varaibales
- project_folder = os.path.dirname(project_gdb)
- project_name = os.path.basename(project_folder)
- base_project_folder = os.path.dirname(project_folder)
-
- #
- # Step 0 - create an ArcGIS Project
- #
-
- # ##########################################################################
- # Step 1 - update ArcGIS Project with the databases and folders for a given
- # ##########################################################################
- # project version
- DisMapProjectSetup = False
- if DisMapProjectSetup:
- import dev_dismap_project_setup
- base_project_file = rf"{base_project_folder}\DisMAP.aprx"
- dev_dismap_project_setup.project_folders(base_project_file, project_name)
- # Declared variables
- del base_project_file
- #Imports
- del dev_dismap_project_setup
- else:
- pass
- del DisMapProjectSetup
- # ##########################################################################
- # Step 2 - zip and unzip the region shapefiles and the CSV data for a given
- # ##########################################################################
- # project version
- ZipAndUnzipCsvData = False
- if ZipAndUnzipCsvData:
- # Imports
- import dev_zip_and_unzip_csv_data
- # If "project" is the same, then an archieve file is created.
- # If different, then the archieve is created and upzipped in the new
- # location
- # In Data Path
- in_data_path = rf"{project_folder}\CSV Data"
- out_data_path = rf"{project_folder}\CSV Data"
- selected_files = ["AI_IDW.csv", "Datasets.csv", "EBS_IDW.csv",
- "ENBS_IDW.csv", "GMEX_IDW.csv",
- "GOA_IDW.csv", "HI_IDW.csv", "NBS_IDW.csv",
- "NEUS_FAL_IDW.csv", "NEUS_SPR_IDW.csv",
- "SEUS_FAL_IDW.csv", "SEUS_SPR_IDW.csv",
- "SEUS_SUM_IDW.csv", "Species_Filter.csv",
- "WC_ANN_IDW.csv", "WC_GLMME.csv",
- "WC_TRI_IDW.csv", "field_definitions.json",
- "metadata_dictionary.json", "table_definitions.json"
- ]
- selected_files = ";".join(selected_files)
- dev_zip_and_unzip_csv_data.main(in_data_path, out_data_path, selected_files)
- # Declared variables
- del in_data_path, out_data_path, selected_files
- # Imports
- del dev_zip_and_unzip_csv_data
- else:
- pass
- del ZipAndUnzipCsvData
-
- ZipAndUnzipShapefileData = False
- if ZipAndUnzipShapefileData:
- # Imports
- import dev_zip_and_unzip_shapefile_data
- # If "project_name" is the same, then an archieve file is created.
- # If different, then the archieve is created and upzipped in the new
- # location
- in_data_path = rf"{project_folder}\Dataset_Shapefiles"
- out_data_path = rf"{project_folder}\Dataset_Shapefiles"
- selected_files = ['AI_IDW_Region.shp', 'EBS_IDW_Region.shp',
- 'ENBS_IDW_Region.shp', 'GMEX_IDW_Region.shp',
- 'GOA_IDW_Region.shp', 'HI_IDW_Region.shp',
- 'NBS_IDW_Region.shp', 'NEUS_FAL_IDW_Region.shp',
- 'NEUS_SPR_IDW_Region.shp', 'SEUS_FAL_IDW_Region.shp',
- 'SEUS_SPR_IDW_Region.shp', 'SEUS_SUM_IDW_Region.shp',
- 'WC_ANN_IDW_Region.shp', 'WC_GFDL_Region.shp',
- 'WC_GLMME_Region.shp', 'WC_TRI_IDW_Region.shp',]
- selected_files = ";".join(selected_files)
- dev_zip_and_unzip_shapefile_data.main(in_data_path, out_data_path, selected_files)
- # Declared variables
- del in_data_path, out_data_path, selected_files
- # Imports
- del dev_zip_and_unzip_shapefile_data
- del ZipAndUnzipShapefileData
-
- # ###--->>>
- # Write script that checks CSV file headers and updates as necessary
- # ###--->>>
- # ##########################################################################
- # Step 3 - Create base bathymetry datasets in project folder
- # ##########################################################################
- # ToDo1 CreateBaseBathymetry = False
- CreateBaseBathymetry = False
- if CreateBaseBathymetry:
- # Imports
- from dev_create_base_bathymetry import create_alasaka_bathymetry, create_hawaii_bathymetry, gebco_bathymetry
- # Process base Alasak bathymetry
- create_alasaka_bathymetry(project_gdb)
- # Process base Hawaii bathymetry
- create_hawaii_bathymetry(project_gdb)
- # Process base GEBCO bathymetry
- gebco_bathymetry(project_gdb)
- # Declared variables
- # Imports
- del create_alasaka_bathymetry, create_hawaii_bathymetry, gebco_bathymetry
- else:
- pass
- del CreateBaseBathymetry
- # ##########################################################################
- # Step 4 - import the "Datasets" and the "Species_Filter" table into the
- # ##########################################################################
- # project GDB
- ImportDatasetsSpeciesFilterCsvData = False
- if ImportDatasetsSpeciesFilterCsvData:
- # Imports
- from dev_import_datasets_species_filter_csv_data import update_datecode, worker
- from dev_create_table_and_field_definitions_json import generate_data_dictionary
- datasets_csv = rf"{project_folder}\CSV_Data\Datasets.csv"
- species_filter_csv = rf"{project_folder}\CSV_Data\Species_Filter.csv"
- survey_metadata_csv = rf"{project_folder}\CSV_Data\DisMAP_Survey_Info.csv"
- # Update DateCode
- update_datecode(csv_file=datasets_csv, project_name=project_name)
- # Datasets CSV File
- worker(project_gdb=project_gdb, csv_file=datasets_csv)
- # Species Filter CSV File
- worker(project_gdb=project_gdb, csv_file=species_filter_csv)
- # DisMAP Survey Info CSV File
- worker(project_gdb=project_gdb, csv_file=survey_metadata_csv)
- # Generate Table and Field Definitions JSON
- generate_data_dictionary(project_gdb)
- # Declared variables
- del datasets_csv, species_filter_csv, survey_metadata_csv
- # Imports
- del update_datecode, worker, generate_data_dictionary
- else:
- pass
- del ImportDatasetsSpeciesFilterCsvData
- # ##########################################################################
- # Step 5 - Create regions from shapefiles
- # ##########################################################################
- CreateRegionsFromShapefiles = False
- if CreateRegionsFromShapefiles:
- # Imports
- from dev_create_regions_from_shapefiles_director import director
- Test = False
- if Test:
- director(project_gdb=project_gdb, Sequential=True, table_names=["WC_TRI_IDW", "AI_IDW"])
- elif not Test:
- director(project_gdb=project_gdb, Sequential=False, table_names=[])
- else:
- pass
- del Test
- # Declared variables
- # Imports
- del director
- else:
- pass
- del CreateRegionsFromShapefiles
- # ##########################################################################
- # Step 6 - Create region fishnets
- # ##########################################################################
- CreateRegionFishnets = False
- if CreateRegionFishnets:
- from dev_create_region_fishnets_director import director
- Test = False
- if Test:
- director(project_gdb=project_gdb, Sequential=True, table_names=["WC_TRI_IDW", "AI_IDW"])
- elif not Test:
- director(project_gdb=project_gdb, Sequential=False, table_names=["NBS_IDW", "ENBS_IDW", "HI_IDW", "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["WC_TRI_IDW", "GMEX_IDW", "AI_IDW", "GOA_IDW", "WC_ANN_IDW", "NEUS_FAL_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["NEUS_SPR_IDW", "EBS_IDW"])
- #director(project_gdb=project_gdb, Sequential=False, table_names=[])
- else:
- pass
- del Test
- # Declared variables
- # Imports
- del director
- else:
- pass
- del CreateRegionFishnets
- # ##########################################################################
- # Step 7 - Create Region Bathymetry
- # ##########################################################################
- CreateRegionBathymetry = False
- if CreateRegionBathymetry:
- # Imports
- from dev_create_region_bathymetry_director import director
- Test = False
- if Test:
- director(project_gdb=project_gdb, Sequential=True, table_names=["WC_TRI_IDW", "AI_IDW"])
- elif not Test:
- director(project_gdb=project_gdb, Sequential=False, table_names=["NBS_IDW", "ENBS_IDW", "HI_IDW", "SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["WC_TRI_IDW", "GMEX_IDW", "AI_IDW", "GOA_IDW", "WC_ANN_IDW", "NEUS_FAL_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["NEUS_SPR_IDW", "EBS_IDW"])
- else:
- pass
- del Test
- # Declared variables
- # Imports
- del director
- else:
- pass
- del CreateRegionBathymetry
- # ##########################################################################
- # Step 8 - create_region_sample_locations_director
- # ##########################################################################
- CreateRegionSampleLocations = True
- if CreateRegionSampleLocations:
- # Imports
- from dev_create_region_sample_locations_director import director
-
- Test = False
- if Test:
- director(project_gdb=project_gdb, Sequential=True, table_names=["WC_TRI_IDW", "AI_IDW"])
- elif not Test:
- director(project_gdb=project_gdb, Sequential=False, table_names=["NBS_IDW", "ENBS_IDW", "HI_IDW", "SEUS_FAL_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["SEUS_SPR_IDW", "SEUS_SUM_IDW", "WC_TRI_IDW", "GMEX_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["AI_IDW", "GOA_IDW", "WC_ANN_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["NEUS_FAL_IDW", "NEUS_SPR_IDW", "EBS_IDW"])
- else:
- pass
- del Test
- # Declared variables
- # Imports
- del director
- else:
- pass
- del CreateRegionSampleLocations
-
- # ##########################################################################
- # Step 9 - Create species year image name table
- # ##########################################################################
- CreateSpeciesYearImageNameTable = False
- if CreateSpeciesYearImageNameTable:
- # Imports
- from dev_create_species_year_image_name_table_director import director, process_image_name_tables
-
- Test = False
- if Test:
- # Debug
- director(project_gdb=project_gdb, Sequential=False, table_names=["GMEX_IDW",])
- # Debug
- elif not Test:
- director(project_gdb=project_gdb, Sequential=False, table_names=[])
- else:
- pass
- del Test
- # Combine Image Name Tables
- #process_image_name_tables(project_gdb=project_gdb, project=project_name)
-
- # Declared variables
- # Imports
- del director, process_image_name_tables
- else:
- pass
- del CreateSpeciesYearImageNameTable
-
- # ##########################################################################
- # Step 10 - Create Rasters
- # ##########################################################################
- CreateRasters = False
- if CreateRasters:
- # Imports
- from dev_create_rasters_director import director
-
- Test = False
- if Test:
- # Debug
- director(project_gdb=project_gdb, Sequential=False, table_names=["GMEX_IDW",])
- # Debug
- elif not Test:
- director(project_gdb=project_gdb, Sequential=False, table_names=["NBS_IDW", "ENBS_IDW", "HI_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["SEUS_FAL_IDW", "SEUS_SPR_IDW", "SEUS_SUM_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["WC_TRI_IDW", "AI_IDW", "GMEX_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["GOA_IDW", "WC_ANN_IDW", "NEUS_FAL_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["NEUS_SPR_IDW", "EBS_IDW",])
- else:
- pass
- del Test
- # Declared variables
- # Imports
- del director
- else:
- pass
- del CreateRasters
-
- # ##########################################################################
- # Step 11 - Create Indicators Table
- # ##########################################################################
- CreateIndicatorsTable = False
- if CreateIndicatorsTable:
- # Imports
- from dev_create_indicators_table_director import director, process_indicator_tables
-
- Test = False
- if Test:
- # Debug
- director(project_gdb=project_gdb, Sequential=False, table_names=["GMEX_IDW",])
- # Debug
- elif not Test:
- director(project_gdb=project_gdb, Sequential=False, table_names=["NBS_IDW", "ENBS_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["HI_IDW", "SEUS_FAL_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["SEUS_SPR_IDW", "SEUS_SUM_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["WC_TRI_IDW", "GMEX_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["AI_IDW", "GOA_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["WC_ANN_IDW", "NEUS_FAL_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["NEUS_SPR_IDW", "EBS_IDW",])
-
- # Combine Indicator Tables
- else:
- pass
- del Test
- #process_indicator_tables(project_gdb=project_gdb, project=project)
- # Declared variables
- # Imports
- del director, process_indicator_tables
- else:
- pass
- del CreateIndicatorsTable
-
- # dataset_comparison - rasters
- # dataset_comparison - feature classes
- # dataset_comparison - tables
-
- # Step 12 - Create Species Richness Rasters
- CreateSpeciesRichnessRasters = False
- if CreateSpeciesRichnessRasters:
- # Imports
- from dev_create_species_richness_rasters_director import director
-
- Test = False
- if Test:
- director(project_gdb=project_gdb, Sequential=False, table_names=["GMEX_IDW",])
- elif not Test:
- director(project_gdb=project_gdb, Sequential=False, table_names=["NBS_IDW", "ENBS_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["HI_IDW", "SEUS_FAL_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["SEUS_SPR_IDW", "SEUS_SUM_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["WC_TRI_IDW", "GMEX_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["AI_IDW", "GOA_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["WC_ANN_IDW", "NEUS_FAL_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["NEUS_SPR_IDW", "EBS_IDW",])
- else:
- pass
- del Test
- # Declared variables
- # Imports
- del director
- else:
- pass
- del CreateSpeciesRichnessRasters
-
- # create_mosaics_director
- # Step 12 - Create Mosaics
- CreateMosaics = False
- if CreateMosaics:
- # Imports
- from dev_create_mosaics_director import director
-
- Test = False
- if Test:
- director(project_gdb=project_gdb, Sequential=False, table_names=["GMEX_IDW",])
- elif not Test:
- director(project_gdb=project_gdb, Sequential=False, table_names=["NBS_IDW", "ENBS_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["HI_IDW", "SEUS_FAL_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["SEUS_SPR_IDW", "SEUS_SUM_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["WC_TRI_IDW", "GMEX_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["AI_IDW", "GOA_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["WC_ANN_IDW", "NEUS_FAL_IDW",])
- director(project_gdb=project_gdb, Sequential=False, table_names=["NEUS_SPR_IDW", "EBS_IDW",])
- else:
- pass
- del Test
- # Declared variables
- # Imports
- del director
- else:
- pass
- del CreateMosaics
-
- # publish_to_portal_director
-
- # Declared Varaiables
- del project_name, project_folder
- # Imports
- # Function Parameters
- del project_gdb
-
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- print(f"\n{'-' * 80}")
- print(f"Python script: {os.path.basename(__file__)}\nCompleted: {strftime('%a %b %d %I:%M %p', localtime())}")
- print(u"Elapsed Time {0} (H:M:S)".format(strftime("%H:%M:%S", gmtime(elapse_time))))
- print(f"{'-' * 80}")
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
- except:
- traceback.print_exc()
- raise SystemExit
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-if __name__ == '__main__':
- try:
- # Append the location of this scrip to the System Path
- sys.path.append(os.path.dirname(os.path.dirname(__file__)))
- # Imports
- base_project_folder = rf"{os.path.dirname(os.path.dirname(__file__))}"
- #project = "May 1 2024"
- #project_name = "July 1 2024"
- #project_name = "December 1 2024"
- #project_name = "June 1 2025"
- #for project_name in ["June 1 2025"]:
- for project_name in ["December 1 2024", "June 1 2025"]:
- project_folder = rf"{base_project_folder}"
- project_gdb = rf"{project_folder}\{project_name}\{project_name}.gdb"
- main(project_gdb=project_gdb)
- del project_gdb, project_folder, project_name
- # Decated Variables
- del base_project_folder
- # Imports
- except SystemExit:
- pass
- except:
- traceback.print_exc()
- else:
- pass
- finally:
- pass
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools_dev/dev_dismap_metadata_processing.~py b/ArcGIS-Analysis-Python/Scripts/dismap_tools_dev/dev_dismap_metadata_processing.~py
deleted file mode 100644
index 154026c..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools_dev/dev_dismap_metadata_processing.~py
+++ /dev/null
@@ -1,4381 +0,0 @@
-# -*- coding: utf-8 -*-
-# -------------------------------------------------------------------------------
-# Name: module1
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 03/03/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-# -------------------------------------------------------------------------------
-import os, sys # built-ins first
-import traceback
-import importlib
-import inspect
-
-import arcpy # third-parties second
-
-def new_function():
- try:
- pass
- # Declared Varaiables
- # Imports
- # Function Parameters
- except KeyboardInterrupt:
- raise SystemExit
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def date_code(version):
- try:
- from datetime import datetime
- from time import strftime
-
- _date_code = ""
-
- if version.isdigit():
- # The version value is 'YYYYMMDD' format (20230501)
- # and is converted to 'Month Day and Year' (i.e. May 1 2023)
- _date_code = datetime.strptime(version, "%Y%m%d").strftime("%B %#d %Y")
- elif not version.isdigit():
- # The version value is 'Month Day and Year' (i.e. May 1 2023)
- # and is converted to 'YYYYMMDD' format (20230501)
- _date_code = datetime.strptime(version, "%B %d %Y").strftime("%Y%m%d")
- else:
- _date_code = "error"
- # Imports
- del datetime, strftime
- del version
-
- import copy
- __results = copy.deepcopy(_date_code)
- del _date_code, copy
- except KeyboardInterrupt:
- raise SystemExit
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return __results
- finally:
- if "__results" in locals().keys(): del __results
-
-# #
-# Function: unique_years
-# Gets the unique years in a table
-# @param string table: The name of the layer
-# @return array: a sorted year array so we can go in order.
-# #
-def unique_years(table):
- #print(table)
- arcpy.management.SelectLayerByAttribute( table, "CLEAR_SELECTION" )
- arcpy.management.SelectLayerByAttribute( table, "NEW_SELECTION", "Year IS NOT NULL")
- with arcpy.da.SearchCursor(table, ["Year"]) as cursor:
- return sorted({row[0] for row in cursor})
-
-def xml_tree_merge(source, target):
- import copy
- """Merge two xml trees A and B, so that each recursively found leaf element of B is added to A. If the element
- already exists in A, it is replaced with B's version. Tree structure is created in A as required to reflect the
- position of the leaf element in B.
- Given and , a merge results in
- (order not guaranteed)
- """
- def inner(aparent, bparent):
- for bchild in bparent:
- achild = aparent.xpath('./' + bchild.tag)
- if not achild:
- aparent.append(bchild)
- elif bchild.getchildren():
- inner(achild[0], bchild)
-
- source_copy = copy.deepcopy(source)
- inner(source_copy, target)
- return source_copy
-
-def dataset_title_dict(project_gdb=""):
- try:
- if "Scratch" in project_gdb:
- project = os.path.basename(os.path.dirname(os.path.dirname(project_gdb)))
- else:
- project = os.path.basename(os.path.dirname(project_gdb))
-
- project_folder = os.path.dirname(project_gdb)
- crf_folder = rf"{project_folder}\CRFs"
- _credits = "These data were produced by NMFS OST."
- access_constraints = "***No Warranty*** The user assumes the entire risk related to its use of these data. NMFS is providing these data 'as is' and NMFS disclaims any and all warranties, whether express or implied, including (without limitation) any implied warranties of merchantability or fitness for a particular purpose. No warranty expressed or implied is made regarding the accuracy or utility of the data on any other system or for general or scientific purposes, nor shall the act of distribution constitute any such warranty. It is strongly recommended that careful attention be paid to the contents of the metadata file associated with these data to evaluate dataset limitations, restrictions or intended use. In no event will NMFS be liable to you or to any third party for any direct, indirect, incidental, consequential, special or exemplary damages or lost profit resulting from any use or misuse of these data."
-
- __datasets_dict = {}
-
- dataset_codes = {row[0] : [row[1], row[2], row[3], row[4], row[5]] for row in arcpy.da.SearchCursor(rf"{project_gdb}\Datasets", ["DatasetCode", "PointFeatureType", "DistributionProjectCode", "FilterRegion", "FilterSubRegion", "Season"])}
- for dataset_code in dataset_codes:
- point_feature_type = dataset_codes[dataset_code][0] if dataset_codes[dataset_code][0] else ""
- distribution_project_code = dataset_codes[dataset_code][1] if dataset_codes[dataset_code][1] else ""
- filter_region = dataset_codes[dataset_code][2] if dataset_codes[dataset_code][2] else dataset_code.replace("_", " ")
- filter_sub_region = dataset_codes[dataset_code][3] if dataset_codes[dataset_code][3] else dataset_code.replace("_", " ")
- season = dataset_codes[dataset_code][4] if dataset_codes[dataset_code][4] else ""
-
- tags = f"DisMAP; {filter_region}" if filter_region == filter_sub_region else f"DisMAP; {filter_region}; {filter_sub_region}"
- tags = f"{tags}; {season}" if season else f"{tags}"
- tags = f"{tags}; distribution; seasonal distribution; fish; invertebrates; climate change; fishery-independent surveys; ecological dynamics; oceans; biosphere; earth science; species/population interactions; aquatic sciences; fisheries; range changes"
- summary = "These data were created as part of the DisMAP project to enable visualization and analysis of changes in fish and invertebrate distributions"
-
- #print(f"Dateset Code: {dataset_code}")
- if distribution_project_code:
- if distribution_project_code == "IDW":
-
- #table_name = f"{dataset_code}_{distribution_project_code}_TABLE"
- table_name = f"{dataset_code}_{distribution_project_code}"
- table_name_s = f"{table_name}_{date_code(project)}"
- table_name_st = f"{filter_sub_region} {season} Table {date_code(project)}".replace(' ',' ')
-
- #print(f"\tProcessing: {table_name}")
-
- __datasets_dict[table_name] = {"Dataset Service" : table_name_s,
- "Dataset Service Title" : table_name_st,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"This table represents the CSV Data files in ArcGIS format",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- del table_name, table_name_s, table_name_st
-
- table_name = f"{dataset_code}_{distribution_project_code}"
- sample_locations_fc = f"{table_name}_{point_feature_type.replace(' ', '_')}"
- sample_locations_fcs = f"{table_name}_{point_feature_type.replace(' ', '_')}_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} {point_feature_type} {date_code(project)}"
- sample_locations_fcst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- __datasets_dict[sample_locations_fc] = {"Dataset Service" : sample_locations_fcs,
- "Dataset Service Title" : sample_locations_fcst,
- "Tags" : tags,
- "Summary" : f"{summary}. These layers provide information on the spatial extent/boundaries of the bottom trawl surveys. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Description" : f"This survey points layer provides information on both the locations where species are caught in several NOAA Fisheries surveys and the amount (i.e., biomass weight catch per unit effort, standardized to kg/ha) of each species that was caught at each location. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tSample Locations FC: {sample_locations_fc}")
- #print(f"\tSample Locations FCS: {sample_locations_fcs}")
- #print(f"\tSample Locations FST: {sample_locations_fcst}")
-
- del table_name, sample_locations_fc, sample_locations_fcs, sample_locations_fcst
-
- table_name = f"{dataset_code}"
- sample_locations_fc = f"{table_name}_{point_feature_type.replace(' ', '_')}"
- sample_locations_fcs = f"{table_name}_{point_feature_type.replace(' ', '_')}_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} {point_feature_type} {date_code(project)}"
- sample_locations_fcst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- __datasets_dict[sample_locations_fc] = {"Dataset Service" : sample_locations_fcs,
- "Dataset Service Title" : sample_locations_fcst,
- "Tags" : tags,
- "Summary" : f"{summary}. These layers provide information on the spatial extent/boundaries of the bottom trawl surveys. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Description" : f"This survey points layer provides information on both the locations where species are caught in several NOAA Fisheries surveys and the amount (i.e., biomass weight catch per unit effort, standardized to kg/ha) of each species that was caught at each location. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tSample Locations FC: {sample_locations_fc}")
- #print(f"\tSample Locations FCS: {sample_locations_fcs}")
- #print(f"\tSample Locations FST: {sample_locations_fcst}")
-
- del table_name, sample_locations_fc, sample_locations_fcs, sample_locations_fcst
-
-
- elif distribution_project_code != "IDW":
-
- #table_name = f"{dataset_code}_TABLE"
- table_name = f"{dataset_code}"
- table_name_s = f"{table_name}_{date_code(project)}"
- table_name_st = f"{filter_sub_region} {season} Table {date_code(project)}".replace(' ',' ')
-
- #print(f"\tProcessing: {table_name}")
-
- __datasets_dict[table_name] = {"Dataset Service" : table_name_s,
- "Dataset Service Title" : table_name_st,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"This table represents the CSV Data files in ArcGIS format",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- del table_name, table_name_s, table_name_st
-
- table_name = f"{dataset_code}"
- grid_points_fc = f"{table_name}_{point_feature_type.replace(' ', '_')}"
- grid_points_fcs = f"{table_name}_{point_feature_type.replace(' ', '_')}_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Sample Locations {date_code(project)}"
- grid_points_fcst = f"{dataset_code.replace('_', ' ')} {point_feature_type} {date_code(project)}"
-
- __datasets_dict[grid_points_fc] = {"Dataset Service" : grid_points_fcs,
- "Dataset Service Title" : grid_points_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"This grid points layer provides information on model output amount (i.e., biomass weight catch per unit effort, standardized to kg/ha) of each species that was modeled at each location. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tGRID Points FC: {grid_points_fc}")
- #print(f"\tGRID Points FCS: {grid_points_fcs}")
- #print(f"\tGRID Points FCST: {grid_points_fcst}")
-
- del table_name, grid_points_fc, grid_points_fcs, grid_points_fcst
-
- dataset_code = f"{dataset_code}_{distribution_project_code}" if distribution_project_code not in dataset_code else dataset_code
-
- # Bathymetry
- bathymetry_r = f"{dataset_code}_Bathymetry"
- bathymetry_rs = f"{dataset_code}_Bathymetry_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Bathymetry {date_code(project)}"
- bathymetry_rst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {bathymetry_r}")
-
- __datasets_dict[bathymetry_r] = {"Dataset Service" : bathymetry_rs,
- "Dataset Service Title" : bathymetry_rst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"The bathymetry dataset represents the ocean depth at that grid cell.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tBathymetry R: {bathymetry_r}")
- #print(f"\tBathymetry RS: {bathymetry_rs}")
- #print(f"\tBathymetry RST: {bathymetry_rst}")
-
- del bathymetry_r, bathymetry_rs, bathymetry_rst
-
- # Boundary
- boundary_fc = f"{dataset_code}_Boundary"
- boundary_fcs = f"{dataset_code}_Boundary_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Boundary {date_code(project)}"
- boundary_fcst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {boundary_fc}")
-
- __datasets_dict[boundary_fc] = {"Dataset Service" : boundary_fcs,
- "Dataset Service Title" : boundary_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"These files contain the spatial boundaries of the NOAA Fisheries Bottom-trawl surveys. This data set covers 8 regions of the United States: Northeast, Southeast, Gulf of Mexico, West Coast, Eastern Bering Sea, Aleutian Islands, Gulf of Alaska, and Hawai'i Islands.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tBoundary FC: {boundary_fc}")
- #print(f"\tBoundary FCS: {boundary_fcs}")
- #print(f"\tBoundary FCST: {boundary_fcst}")
-
- del boundary_fc, boundary_fcs, boundary_fcst
-
- # Boundary
- boundary_line_fc = f"{dataset_code}_Boundary_Line"
- boundary_line_fcs = f"{dataset_code}_Boundary_Line_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Boundary Line {date_code(project)}"
- boundary_line_fcst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {boundary_line_fc}")
-
- __datasets_dict[boundary_line_fc] = {"Dataset Service" : boundary_line_fcs,
- "Dataset Service Title" : boundary_line_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"These files contain the spatial boundaries of the NOAA Fisheries Bottom-trawl surveys. This data set covers 8 regions of the United States: Northeast, Southeast, Gulf of Mexico, West Coast, Eastern Bering Sea, Aleutian Islands, Gulf of Alaska, and Hawai'i Islands.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tBoundary FC: {boundary_line_fc}")
- #print(f"\tBoundary FCS: {boundary_line_fcs}")
- #print(f"\tBoundary FCST: {boundary_line_fcst}")
-
- del boundary_line_fc, boundary_line_fcs, boundary_line_fcst
-
- # CRF
- crf_r = f"{dataset_code}_CRF"
- crf_rs = f"{dataset_code}_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} {dataset_code[dataset_code.rfind('_')+1:]} {date_code(project)}"
- crf_rst = f"{feature_service_title.replace(' ',' ')}"
- #del feature_service_title
-
- #print(f"Processing: {crf_r}")
- #print(f"\t{crf_rs}")
- #print(f"\t{feature_service_title}")
- #print(f"\t{crf_rst}")
-
- __datasets_dict[crf_r] = {"Dataset Service" : crf_rs,
- "Dataset Service Title" : crf_rst,
- "Tags" : tags,
- "Summary" : f"{summary}. These interpolated biomass layers provide information on the spatial distribution of species caught in the NOAA Fisheries fisheries-independent surveys. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Description" : f"NOAA Fisheries and its partners conduct fisheries-independent surveys in 8 regions in the US (Northeast, Southeast, Gulf of Mexico, West Coast, Gulf of Alaska, Bering Sea, Aleutian Islands, Hawai’i Islands). These surveys are designed to collect information on the seasonal distribution, relative abundance, and biodiversity of fish and invertebrate species found in U.S. waters. Over 400 species of fish and invertebrates have been identified in these surveys.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tCRF R: {crf_r}")
- #print(f"\tCRF RS: {crf_rs}")
- #print(f"\tCRF RST: {crf_rst}")
-
- del crf_r, crf_rs, crf_rst
-
- # Extent Points
- extent_points_fc = f"{dataset_code}_Extent_Points"
- extent_points_fcs = f"{dataset_code}_Extent_Points_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Extent Points {date_code(project)}"
- extent_points_fcst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {extent_points_fc}")
-
- __datasets_dict[extent_points_fc] = {"Dataset Service" : extent_points_fcs,
- "Dataset Service Title" : extent_points_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"The Extent Points layer represents the extent of the model region.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tExtent Points FC: {extent_points_fc}")
- #print(f"\tExtent Points FCS: {extent_points_fcs}")
- #print(f"\tExtent Points FCST: {extent_points_fcst}")
-
- del extent_points_fc, extent_points_fcs, extent_points_fcst
-
- # Extent Points
- points_fc = f"{dataset_code}_Points"
- points_fcs = f"{dataset_code}_Points_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Extent Points {date_code(project)}"
- points_fcst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {points_fc}")
-
- __datasets_dict[points_fc] = {"Dataset Service" : points_fcs,
- "Dataset Service Title" : points_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"The Points layer represents the extent of the model region.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tExtent Points FC: {points_fc}")
- #print(f"\tExtent Points FCS: {points_fcs}")
- #print(f"\tExtent Points FCST: {points_fcst}")
-
- del points_fc, points_fcs, points_fcst
-
- fishnet_fc = f"{dataset_code}_Fishnet"
- fishnet_fcs = f"{dataset_code}_Fishnet_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Fishnet {date_code(project)}"
- fishnet_fcst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {fishnet_fc}")
-
- __datasets_dict[fishnet_fc] = {"Dataset Service" : fishnet_fcs,
- "Dataset Service Title" : fishnet_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"The Fishnet is used to create the latitude and longitude rasters.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tFishnet FC: {fishnet_fc}")
- #print(f"\tFishnet FCS: {fishnet_fcs}")
- #print(f"\tFishnet FCST: {fishnet_fcst}")
-
- del fishnet_fc, fishnet_fcs, fishnet_fcst
-
- indicators_tb = f"{dataset_code}_Indicators"
- indicators_tbs = f"{dataset_code}_Indicators_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Indicators Table {date_code(project)}"
- indicators_tbst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {indicators_t}")
-
- __datasets_dict[indicators_tb] = {"Dataset Service" : indicators_tbs,
- "Dataset Service Title" : indicators_tbst,
- "Tags" : tags,
- "Summary" : f"{summary}. This table provides the key metrics used to evaluate a species distribution shift. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Description" : f"These data contain the key distribution metrics of center of gravity, range limits, and depth for each species in the portal. This data set covers 8 regions of the United States: Northeast, Southeast, Gulf of Mexico, West Coast, Bering Sea, Aleutian Islands, Gulf of Alaska, and Hawai'i Islands.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tIndicators T: {indicators_t}")
- #print(f"\tIndicators TS: {indicators_ts}")
- #print(f"\tIndicators TST: {indicators_tst}")
-
- del indicators_tb, indicators_tbs, indicators_tbst
-
- lat_long_fc = f"{dataset_code}_Lat_Long"
- lat_long_fcs = f"{dataset_code}_Lat_Long_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Lat Long {date_code(project)}"
- lat_long_fcst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {lat_long_fc}")
-
- __datasets_dict[lat_long_fc] = {"Dataset Service" : lat_long_fcs,
- "Dataset Service Title" : lat_long_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"The lat_long layer is used to get the latitude & longitude values to create these rasters",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tLat Long FC: {lat_long_fc}")
- #print(f"\tLat Long FCS: {lat_long_fcs}")
- #print(f"\tLat Long FCST: {lat_long_fcst}")
-
- del lat_long_fc, lat_long_fcs, lat_long_fcst
-
- latitude_r = f"{dataset_code}_Latitude"
- latitude_rs = f"{dataset_code}_Latitude_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Latitude {date_code(project)}"
- latitude_rst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {latitude_r}")
-
- __datasets_dict[latitude_r] = {"Dataset Service" : latitude_rs,
- "Dataset Service Title" : latitude_rst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"The Latitude raster",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tLatitude R: {latitude_r}")
- #print(f"\tLatitude RS: {latitude_rs}")
- #print(f"\tLatitude RST: {latitude_rst}")
-
- del latitude_r, latitude_rs, latitude_rst
-
- layer_species_year_image_name_tb = f"{dataset_code}_LayerSpeciesYearImageName"
- layer_species_year_image_name_tbs = f"{dataset_code}_LayerSpeciesYearImageName_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Layer Species Year Image Name Table {date_code(project)}"
- layer_species_year_image_name_tbst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {layer_species_year_image_name_tb}")
-
- __datasets_dict[layer_species_year_image_name_tb] = {"Dataset Service" : layer_species_year_image_name_tbs,
- "Dataset Service Title" : layer_species_year_image_name_tbst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"Layer Species Year Image Name Table",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tLayerSpeciesYearImageName T: {layer_species_year_image_name_tb}")
- #print(f"\tLayerSpeciesYearImageName TS: {layer_species_year_image_name_tbs}")
- #print(f"\tLayerSpeciesYearImageName TST: {layer_species_year_image_name_tbst}")
-
- del layer_species_year_image_name_tb, layer_species_year_image_name_tbs, layer_species_year_image_name_tbst
-
- longitude_r = f"{dataset_code}_Longitude"
- longitude_rs = f"{dataset_code}_Longitude_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Longitude {date_code(project)}"
- longitude_rst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {longitude_r}")
-
- __datasets_dict[longitude_r] = {"Dataset Service" : longitude_rs,
- "Dataset Service Title" : longitude_rst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"The Longitude raster",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tLongitude R: {longitude_r}")
- #print(f"\tLongitude RS: {longitude_rs}")
- #print(f"\tLongitude RST: {longitude_rst}")
-
- del longitude_r, longitude_rs, longitude_rst
-
- mosaic_r = f"{dataset_code}_Mosaic"
- mosaic_rs = f"{dataset_code}_Mosaic_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} {dataset_code[dataset_code.rfind('_')+1:]} Mosaic {date_code(project)}"
- mosaic_rst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {mosaic_r}")
-
- __datasets_dict[mosaic_r] = {"Dataset Service" : mosaic_rs,
- "Dataset Service Title" : mosaic_rst,
- #"Tags" : _tags,
- "Tags" : tags,
- "Summary" : f"{summary}. These interpolated biomass layers provide information on the spatial distribution of species caught in the NOAA Fisheries fisheries-independent surveys. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Description" : f"NOAA Fisheries and its partners conduct fisheries-independent surveys in 8 regions in the US (Northeast, Southeast, Gulf of Mexico, West Coast, Gulf of Alaska, Bering Sea, Aleutian Islands, Hawai’i Islands). These surveys are designed to collect information on the seasonal distribution, relative abundance, and biodiversity of fish and invertebrate species found in U.S. waters. Over 400 species of fish and invertebrates have been identified in these surveys.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tMosaic R: {mosaic_r}")
- #print(f"\tMosaic RS: {mosaic_rs}")
- #print(f"\tMosaic RST: {mosaic_rst}")
-
- del mosaic_r, mosaic_rs, mosaic_rst
-
- crf_r = f"{dataset_code}.crf"
- crf_rs = f"{dataset_code}_CRF_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} {dataset_code[dataset_code.rfind('_')+1:]} C {date_code(project)}"
- crf_rst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {mosaic_r}")
-
- __datasets_dict[crf_r] = {"Dataset Service" : crf_rs,
- "Dataset Service Title" : crf_rst,
- #"Tags" : _tags,
- "Tags" : tags,
- "Summary" : f"{summary}. These interpolated biomass layers provide information on the spatial distribution of species caught in the NOAA Fisheries fisheries-independent surveys. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Description" : f"NOAA Fisheries and its partners conduct fisheries-independent surveys in 8 regions in the US (Northeast, Southeast, Gulf of Mexico, West Coast, Gulf of Alaska, Bering Sea, Aleutian Islands, Hawai’i Islands). These surveys are designed to collect information on the seasonal distribution, relative abundance, and biodiversity of fish and invertebrate species found in U.S. waters. Over 400 species of fish and invertebrates have been identified in these surveys.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tCFR R: {crf_r}")
- #print(f"\tCFR RS: {crf_rs}")
- #print(f"\tCFR RST: {crf_rst}")
-
- del crf_r, crf_rs, crf_rst
-
- raster_mask_r = f"{dataset_code}_Raster_Mask"
- raster_mask_rs = f"{dataset_code}_Raster_Mask_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Raster Mask {date_code(project)}"
- raster_mask_rst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {raster_mask_r}")
-
- __datasets_dict[raster_mask_r] = {"Dataset Service" : raster_mask_rs,
- "Dataset Service Title" : raster_mask_rst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"Raster Mask is used for image production",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tRaster_Mask R: {raster_mask_r}")
- #print(f"\tRaster_Mask RS: {raster_mask_rs}")
- #print(f"\tRaster_Mask RST: {raster_mask_rst}")
-
- del raster_mask_r, raster_mask_rs, raster_mask_rst
-
- region_fc = f"{dataset_code}_Region"
- region_fcs = f"{dataset_code}_Region_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Region {date_code(project)}"
- region_fcst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {region_fc}")
-
- __datasets_dict[region_fc] = {"Dataset Service" : region_fcs,
- "Dataset Service Title" : region_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"These files contain the spatial boundaries of the NOAA Fisheries Bottom-trawl surveys. This data set covers 8 regions of the United States: Northeast, Southeast, Gulf of Mexico, West Coast, Bering Sea, Aleutian Islands, Gulf of Alaska, and Hawai'i Islands.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tRegion FC: {region_fc}")
- #print(f"\tRegion FCS: {region_fcs}")
- #print(f"\tRegion FCST: {region_fcst}")
-
- del region_fc, region_fcs, region_fcst
-
- survey_area_fc = f"{dataset_code}_Survey_Area"
- survey_area_fcs = f"{dataset_code}_Region_{date_code(project)}"
- feature_service_title = f"{filter_sub_region} {season} Region {date_code(project)}"
- survey_area_fcst = f"{feature_service_title.replace(' ',' ')}"
- del feature_service_title
-
- #print(f"\tProcessing: {survey_area_fc}")
-
- __datasets_dict[survey_area_fc] = {"Dataset Service" : survey_area_fcs,
- "Dataset Service Title" : survey_area_fcst,
- "Tags" : tags,
- "Summary" : summary,
- "Description" : f"These files contain the spatial boundaries of the NOAA Fisheries Bottom-trawl surveys. This data set covers 8 regions of the United States: Northeast, Southeast, Gulf of Mexico, West Coast, Bering Sea, Aleutian Islands, Gulf of Alaska, and Hawai'i Islands.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tRegion FC: {survey_area_fc}")
- #print(f"\tRegion FCS: {survey_area_fcs}")
- #print(f"\tRegion FCST: {survey_area_fcst}")
-
- del survey_area_fc, survey_area_fcs, survey_area_fcst
-
-
- del tags
-
- if not distribution_project_code:
-
- if "Datasets" == dataset_code:
-
- #print(f"\tProcessing: Datasets")
-
- datasets_tb = dataset_code
- datasets_tbs = f"{dataset_code}_{date_code(project)}"
- datasets_tbst = f"{dataset_code} {date_code(project)}"
-
- __datasets_dict[datasets_tb] = {"Dataset Service" : datasets_tbs,
- "Dataset Service Title" : datasets_tbst,
- "Tags" : "DisMAP, Datasets",
- "Summary" : summary,
- "Description" : "This table functions as a look-up table of vales",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- del datasets_tb, datasets_tbs, datasets_tbst
-
- elif "DisMAP_Regions" == dataset_code:
-
- #print(f"\tProcessing: DisMAP_Regions")
-
- regions_fc = dataset_code
- regions_fcs = f"{dataset_code}_{date_code(project)}"
- regions_fcst = f"DisMAP Regions {date_code(project)}"
-
- __datasets_dict[regions_fc] = {"Dataset Service" : regions_fcs,
- "Dataset Service Title" : regions_fcst,
- "Tags" : "DisMAP Regions",
- "Summary" : summary,
- "Description" : "These files contain the spatial boundaries of the NOAA Fisheries Bottom-trawl surveys. This data set covers 8 regions of the United States: Northeast, Southeast, Gulf of Mexico, West Coast, Eastern Bering Sea, Aleutian Islands, Gulf of Alaska, and Hawai'i Islands.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- del regions_fc, regions_fcs, regions_fcst
-
- elif "Indicators" == dataset_code:
-
- #print(f"\tProcessing: Indicators")
-
- indicators_tb = f"{dataset_code}"
- indicators_tbs = f"{dataset_code}_{date_code(project)}"
- indicators_tbst = f"{dataset_code} {date_code(project)}"
-
- __datasets_dict[indicators_tb] = {"Dataset Service" : indicators_tbs,
- "Dataset Service Title" : indicators_tbst,
- "Tags" : "DisMAP, Indicators",
- "Summary" : f"{summary}. This table provides the key metrics used to evaluate a species distribution shift. Information on species distributions is of paramount importance for understanding and preparing for climate-change impacts, and plays a key role in climate-ready fisheries management.",
- "Description" : f"These data contain the key distribution metrics of center of gravity, range limits, and depth for each species in the portal. This data set covers 8 regions of the United States: Northeast, Southeast, Gulf of Mexico, West Coast, Bering Sea, Aleutian Islands, Gulf of Alaska, and Hawai'i Islands.",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- del indicators_tb, indicators_tbs, indicators_tbst
-
- elif "LayerSpeciesYearImageName" == dataset_code:
-
- #print(f"\tProcessing: LayerSpeciesYearImageName")
-
- layer_species_year_image_name_tb = dataset_code
- layer_species_year_image_name_tbs = f"{dataset_code}_{date_code(project)}"
- layer_species_year_image_name_tbst = f"Layer Species Year Image Name Table {date_code(project)}"
-
- #print(f"\tProcessing: {layer_species_year_image_name_tb}")
-
- __datasets_dict[layer_species_year_image_name_tb] = {"Dataset Service" : layer_species_year_image_name_tbs,
- "Dataset Service Title" : layer_species_year_image_name_tbst,
- "Tags" : "DisMAP, Layer Species Year Image Name Table",
- "Summary" : summary,
- "Description" : "This table functions as a look-up table of values",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tLayerSpeciesYearImageName T: {layer_species_year_image_name_tb}")
- #print(f"\tLayerSpeciesYearImageName TS: {layer_species_year_image_name_tbs}")
- #print(f"\tLayerSpeciesYearImageName TST: {layer_species_year_image_name_tbst}")
-
- del layer_species_year_image_name_tb, layer_species_year_image_name_tbs, layer_species_year_image_name_tbst
-
- elif "Species_Filter" == dataset_code:
-
- #print(f"\tProcessing: Species_Filter")
-
- species_filter_tb = dataset_code
- species_filter_tbs = f"{dataset_code}_{date_code(project)}"
- species_filter_tbst = f"Species Filter Table {date_code(project)}"
-
- __datasets_dict[species_filter_tb] = {"Dataset Service" : species_filter_tbs,
- "Dataset Service Title" : species_filter_tbst,
- "Tags" : "DisMAP, Species Filter Table",
- "Summary" : summary,
- "Description" : "This table functions as a look-up table of values",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tLayerSpeciesYearImageName T: {species_filter_tb}")
- #print(f"\tLayerSpeciesYearImageName TS: {species_filter_tbs}")
- #print(f"\tLayerSpeciesYearImageName TST: {species_filter_tbst}")
-
- del species_filter_tb, species_filter_tbs, species_filter_tbst
-
- elif "DisMAP_Survey_Info" == dataset_code:
-
- #print(f"\tProcessing: DisMAP_Survey_Info")
-
- tb = dataset_code
- tbs = f"{dataset_code}_{date_code(project)}"
- tbst = f"DisMAP Survey Info Table {date_code(project)}"
-
- __datasets_dict[tb] = {"Dataset Service" : tbs,
- "Dataset Service Title" : tbst,
- "Tags" : "DisMAP; DisMAP Survey Info Table",
- "Summary" : summary,
- "Description" : "This table functions as a look-up table of values",
- "Credits" : _credits,
- "Access Constraints" : access_constraints}
-
- #print(f"\tLayerSpeciesYearImageName T: {tb}")
- #print(f"\tLayerSpeciesYearImageName TS: {tbs}")
- #print(f"\tLayerSpeciesYearImageName TST: {tbst}")
-
- del tb, tbs, tbst
-
- else:
- #print(f"\tProcessing: {dataset_code}")
-
- #table = dataset_code
- #table_s = f"{dataset_code}_{date_code(project)}"
- #table_st = f"{table_s.replace('_',' ')} {date_code(project)}"
- #print(f"\tProcessing: {table_s}")
- #__datasets_dict[table] = {"Dataset Service" : table_s,
- # "Dataset Service Title" : table_st,
- # "Tags" : f"DisMAP, {table}",
- # "Summary" : summary,
- # "Description" : "Unknown table",
- # "Credits" : _credits,
- # "Access Constraints" : access_constraints}
-
- #print(f"\tTable: {table}")
- #print(f"\tTable TS: {table_s}")
- #print(f"\tTable TST: {table_st}")
-
- #del table, table_s, table_st
-
- raise Exception(f"{dataset_code} is missing")
-
- else:
- pass
-
- del summary
- del point_feature_type, distribution_project_code
- del filter_region, filter_sub_region, season
- del dataset_code
-
- del _credits, access_constraints
-
- del dataset_codes
- del project_folder, crf_folder
- del project, project_gdb
- except KeyboardInterrupt:
- raise SystemExit
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return __datasets_dict
- finally:
- if "__datasets_dict" in locals().keys(): del __datasets_dict
-
-def import_basic_template_xml(dataset_path=""):
- try:
- # Import
- from lxml import etree
- from io import StringIO, BytesIO
- from arcpy import metadata as md
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- project_gdb = os.path.dirname(dataset_path)
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = rf"{project_folder}\Scratch"
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = rf"{scratch_folder}\scratch.gdb"
-
- import json
- json_path = rf"{project_folder}\root_dict.json"
- with open(json_path, "r") as json_file:
- root_dict = json.load(json_file)
- del json_file
- del json_path
- del json
-
-## #print("Creating the Metadata Dictionary. Please wait!!")
-## metadata_dictionary = dataset_title_dict(project_gdb)
-## #print("Creating the Metadata Dictionary. Completed")
-
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
-
- print(f"Dataset: {dataset_name}")
-
-## xml_file = '''
-##
-##
-##
-##
-## Timothy J Haverland
-##
-##
-## tim.haverland@noaa.gov
-##
-##
-## https://www.fisheries.noaa.gov/about/office-science-and-technology
-##
-##
-##
-##
-##
-##
-##
-##
-## Melissa Ann Karp
-##
-##
-## melissa.karp@noaa.gov
-##
-##
-## https://www.fisheries.noaa.gov/about/office-science-and-technology
-##
-##
-##
-##
-##
-##
-##
-##
-##
-##
-## NMFS Office of Science and Technology
-##
-##
-## tim.haverland@noaa.gov
-##
-##
-## https://www.fisheries.noaa.gov/about/office-science-and-technology
-##
-##
-##
-##
-##
-##
-##
-##
-##
-## John F Kennedy
-##
-##
-## john.f.kennedy@noaa.gov
-##
-##
-## https://www.fisheries.noaa.gov/about/office-science-and-technology
-##
-##
-##
-##
-##
-##
-## '''
-
-## xml_file = '''
-##
-##
-## John F Kennedy
-##
-##
-## john.f.kennedy@noaa.gov
-##
-##
-## https://www.fisheries.noaa.gov/about/office-science-and-technology
-##
-##
-##
-##
-##
-##
-## '''
-
-## # Parse the XML
-## dataset_md = md.Metadata(dataset_path)
-## #dataset_md.synchronize('ALWAYS')
-## #dataset_md.save()
-## in_md = md.Metadata(rf"C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMap\ArcGIS-Analysis-Python\December 1 2024\Export\WC_TRI_IDW.xml")
-## dataset_md.copy(in_md)
-## #dataset_md.importMetadata(rf"C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMap\ArcGIS-Analysis-Python\December 1 2024\Export\WC_TRI_IDW.xml", "ARCGIS_METADATA")
-## #dataset_md.importMetadata(xml_file, "ARCGIS_METADATA")
-## dataset_md.save()
-## dataset_md.synchronize("OVERWRITE")
-## dataset_md.save()
-## #dataset_md.reload()
-## #dataset_md.synchronize("ALWAYS")
-## #dataset_md.save()
-## #dataset_md.reload()
-## del in_md
-## del dataset_md
-## del xml_file
-##
-## tags = "DisMap;"
-## summary = "These data were created as part of the DisMAP project to enable visualization and analysis of changes in fish and invertebrate distributions"
-## description = ""
-## project_credits = "These data were produced by NMFS OST."
-## access_constraints = "***No Warranty*** The user assumes the entire risk related to its use of these data. NMFS is providing these data 'as is' and NMFS disclaims any and all warranties, whether express or implied, including (without limitation) any implied warranties of merchantability or fitness for a particular purpose. No warranty expressed or implied is made regarding the accuracy or utility of the data on any other system or for general or scientific purposes, nor shall the act of distribution constitute any such warranty. It is strongly recommended that careful attention be paid to the contents of the metadata file associated with these data to evaluate dataset limitations, restrictions or intended use. In no event will NMFS be liable to you or to any third party for any direct, indirect, incidental, consequential, special or exemplary damages or lost profit resulting from any use or misuse of these data."
-##
-## dataset_md = md.Metadata(dataset_path)
-## dataset_md.title = f"{dataset_name.replace('_', ' ')}"
-## dataset_md.tags = f"{tags}{dataset_name.replace('_', ' ')};"
-## dataset_md.summary = summary
-## dataset_md.description = f"{description}{dataset_name.replace('_', ' ')}"
-## dataset_md.credits = project_credits
-## dataset_md.accessConstraints = access_constraints
-## dataset_md.save()
-## dataset_md.synchronize("ALWAYS")
-## dataset_md.save()
-## del dataset_md
-##
-## del tags, summary, description, project_credits, access_constraints
-
-
- # Option #1
- #empty_md = md.Metadata()
- #dataset_md = md.Metadata(dataset_path)
- #dataset_md.copy(empty_md)
- #dataset_md.save()
- #del empty_md
- # Option #2
- #empty_md = md.Metadata(xml_file)
- #dataset_md = md.Metadata(dataset_path)
- #dataset_md.copy(empty_md)
- #dataset_md.save()
- #del empty_md
- # Option #3
- #
- #dataset_md = md.Metadata(dataset_path)
- #dataset_md.copy(in_md)
- #dataset_md.save()
- #del in_md
- # Option #4
- dataset_md = md.Metadata(dataset_path)
- dataset_md.importMetadata(rf"{project_folder}\metadata_template.xml")
- dataset_md.save()
- del dataset_md
-
- tags = "DisMap;"
- summary = "These data were created as part of the DisMAP project to enable visualization and analysis of changes in fish and invertebrate distributions"
- description = ""
- project_credits = "These data were produced by NMFS OST."
- access_constraints = "***No Warranty*** The user assumes the entire risk related to its use of these data. NMFS is providing these data 'as is' and NMFS disclaims any and all warranties, whether express or implied, including (without limitation) any implied warranties of merchantability or fitness for a particular purpose. No warranty expressed or implied is made regarding the accuracy or utility of the data on any other system or for general or scientific purposes, nor shall the act of distribution constitute any such warranty. It is strongly recommended that careful attention be paid to the contents of the metadata file associated with these data to evaluate dataset limitations, restrictions or intended use. In no event will NMFS be liable to you or to any third party for any direct, indirect, incidental, consequential, special or exemplary damages or lost profit resulting from any use or misuse of these data."
-
- dataset_md = md.Metadata(dataset_path)
- dataset_md.title = f"{dataset_name.replace('_', ' ')}"
- dataset_md.tags = f"{tags}{dataset_name.replace('_', ' ')};"
- dataset_md.summary = summary
- dataset_md.description = f"{description}{dataset_name.replace('_', ' ')}"
- dataset_md.credits = project_credits
- dataset_md.accessConstraints = access_constraints
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- dataset_md.reload()
- export_folder = rf"{os.path.dirname(os.path.dirname(dataset_path))}\Export"
- dataset_md.saveAsXML(rf"{export_folder}\{os.path.basename(dataset_path)}.xml", "REMOVE_ALL_SENSITIVE_INFO")
- # To parse from a string, use the fromstring() function instead.
- _tree = etree.parse(rf"{export_folder}\{os.path.basename(dataset_path)}.xml", parser=etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- _root = _tree.getroot()
- _root[:] = sorted(_root, key=lambda x: root_dict[x.tag])
- del _root
- etree.indent(_tree, space='\t')
- _tree.write(rf"{export_folder}\{os.path.basename(dataset_path)}.xml", encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
- del _tree
- del export_folder
- del dataset_md
-
- del tags, summary, description, project_credits, access_constraints
-
-
- # Parse the XML
- dataset_md = md.Metadata(dataset_path)
- parser = etree.XMLParser(encoding='UTF-8', remove_blank_text=True)
- target_tree = etree.parse(StringIO(dataset_md.xml), parser=parser)
- #target_tree = etree.parse(xml_file, parser=parser)
- target_root = target_tree.getroot()
- target_root[:] = sorted(target_root, key=lambda x: root_dict[x.tag])
- etree.indent(target_tree, space='\t')
- print(etree.tostring(target_tree, encoding='UTF-8', method='xml', pretty_print=True).decode())
- del parser, dataset_md
-
- del target_tree, target_root
-
-
-
-## _tree = etree.parse(BytesIO(xml_file), etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## _root = _tree.getroot()
-## distributor = target_root.xpath(f"./distInfo/distributor")
-## if len(distributor) == 0:
-## target_root.xpath(f"./distInfo")[0].insert(distInfo_dict["distributor"], _root)
-## elif len(distributor) == 1:
-## distributor[0].getparent().replace(distributor[0], _root)
-## else:
-## pass
-## del _root, _tree, xml_file
-## #print(f"\n\t{etree.tostring(target_root.xpath(f'./distInfo/distributor')[0], encoding='UTF-8', method='xml', pretty_print=True).decode()}\n")
-## del distributor
-
-
-## mdFileID = target_root.xpath(f"//mdFileID")
-## if mdFileID is not None and len(mdFileID) == 0:
-## _xml = 'gov.noaa.nmfs.inport:'
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## target_root.insert(root_dict['mdFileID'], _root)
-## del _root, _xml
-## elif mdFileID is not None and len(mdFileID) and len(mdFileID[0]) == 0:
-## mdFileID[0].text = "gov.noaa.nmfs.inport:"
-## elif mdFileID is not None and len(mdFileID) and len(mdFileID[0]) == 1:
-## pass
-## #print(etree.tostring(mdFileID[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del mdFileID
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## mdMaint = target_root.xpath(f"//mdMaint")
-## if mdMaint is not None and len(mdMaint) == 0:
-## _xml = ''
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## target_root.insert(root_dict['mdMaint'], _root)
-## del _root, _xml
-## elif mdMaint is not None and len(mdMaint) and len(mdMaint[0]) == 0:
-## target_root.xpath("./mdMaint/maintFreq/MaintFreqCd")[0].attrib["value"] = "009"
-## elif mdMaint is not None and len(mdMaint) and len(mdMaint[0]) == 1:
-## pass #print(etree.tostring(mdMaint[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## else:
-## pass
-## #print(etree.tostring(mdMaint[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del mdMaint
-##
-## # No changes needed below
-## #print(etree.tostring(target_tree, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## etree.indent(target_root, space=' ')
-## dataset_md_xml = etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
-##
-## SaveBackXml = False
-## if SaveBackXml:
-## dataset_md = md.Metadata(dataset_path)
-## dataset_md.xml = dataset_md_xml
-## dataset_md.save()
-## dataset_md.synchronize("ALWAYS")
-## dataset_md.save()
-## #dataset_md.reload()
-## del dataset_md
-## else:
-## pass
-## del SaveBackXml
-## del dataset_md_xml
-
- # Declared Variables
- del root_dict
- #del target_tree, target_root
- #del metadata_dictionary,
- del dataset_name
- del project_gdb, project_folder, scratch_folder
- # Imports
- del md
- del etree, StringIO, BytesIO
- # Function Parameters
- del dataset_path
- except KeyboardInterrupt:
- raise SystemExit
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- raise SystemExit
- except arcpy.ExecuteError:
- #traceback.print_exc()
- arcpy.AddError(arcpy.GetMessages(2))
- raise SystemExit
- except:
- traceback.print_exc()
- raise SystemExit
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def update_eainfo_xml_elements(dataset_path=""):
- try:
- # Imports
- from lxml import etree
- from io import StringIO, BytesIO
- #import copy
- from arcpy import metadata as md
- # Project modules
- #from src.project_tools import pretty_format_xml_file
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- project_gdb = os.path.dirname(dataset_path)
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = rf"{project_folder}\Scratch"
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = rf"{scratch_folder}\scratch.gdb"
-
- import json
- json_path = rf"{project_folder}\root_dict.json"
- with open(json_path, "r") as json_file:
- root_dict = json.load(json_file)
- del json_file
- del json_path
- del json
-
- dataset_md = md.Metadata(dataset_path)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- dataset_md.reload()
- dataset_md_xml = dataset_md.xml
- del dataset_md
-
- # Parse the XML
- parser = etree.XMLParser(encoding='UTF-8', remove_blank_text=True)
- target_tree = etree.parse(StringIO(dataset_md_xml), parser=parser)
- target_root = target_tree.getroot()
- del parser, dataset_md_xml
-
- dataset_name = os.path.basename(dataset_path)
- print(f"Processing Entity Attributes for dataset: '{dataset_name}'")
-
- # Root
- mdTimeSt = target_root.find("./mdTimeSt")
- #print(mdTimeSt)
- if mdTimeSt is not None:
- mdTimeSt.getparent().remove(mdTimeSt)
- else:
- pass
- del mdTimeSt
-
- enttyp = target_root.find("enttyp")
- if enttyp is not None:
- enttypd = enttyp.find("enttypd")
- enttypds = enttyp.find("enttypds")
- if enttypd is None:
- _xml = "A collection of geographic features with the same geometry type."
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- enttyp.insert(0, _root)
- del _root, _xml
- else:
- pass
- if enttypds is None:
- _xml = "Esri"
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- enttyp.insert(0, _root)
- del _root, _xml
- else:
- pass
- del enttypds, enttypd
- else:
- pass
- del enttyp
-
- # Create a list of fields using the ListFields function
- fields = [f for f in arcpy.ListFields(dataset_path) if f.type not in ["Geometry", "OID"] and f.name not in ["Shape_Area", "Shape_Length"]]
- for field in fields:
- attributes = target_root.xpath(f".//attrlabl[text()='{field.name}']/..")
- if attributes is not None and len(attributes) > 0:
- for attribute in attributes:
- #print(attribute)
- #print(etree.tostring(attribute, encoding='UTF-8', method='xml', pretty_print=True).decode())
- attrdef = attribute.find("./attrdef/..")
- if attrdef is None:
- _xml = f"Definition for: {field.name}"
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- attribute.insert(7, _root)
- del _root, _xml
- else:
- pass
- attrdefs = attribute.find("./attrdefs/..")
- if attrdefs is None:
- _xml = "NMFS OST DisMAP 2025"
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- attribute.insert(8, _root)
- del _root, _xml
- else:
- pass
- attrdomv = attribute.find("./attrdomv/..")
- if attrdomv is None:
- _xml = "None"
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- attribute.insert(8, _root)
- del _root, _xml
- else:
- pass
- del attrdef, attrdefs, attrdomv
- del attribute
- else:
- pass
- del attributes
- del field
-
- attributes = target_root.xpath(f".//attr")
- for attribute in attributes:
- #print(etree.tostring(attribute, encoding='UTF-8', method='xml', pretty_print=True).decode())
- del attribute
- del attributes
- del fields
-
- # Metadata
- target_root[:] = sorted(target_root, key=lambda x: root_dict[x.tag])
-
- # No changes needed below
- #print(etree.tostring(target_tree, encoding='UTF-8', method='xml', pretty_print=True).decode())
- etree.indent(target_tree, space=' ')
- dataset_md_xml = etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
-
- SaveBackXml = True
- if SaveBackXml:
- dataset_md = md.Metadata(dataset_path)
- dataset_md.xml = dataset_md_xml
- dataset_md.save()
- dataset_md.synchronize("CREATED")
- dataset_md.save()
- #_target_tree = etree.parse(StringIO(dataset_md.xml), parser=etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- #_target_tree.write(rf"{export_folder}\{dataset_name}.xml", pretty_print=True)
- #print(etree.tostring(_target_tree.find("./eainfo"), encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- #del _target_tree
- del dataset_md
- else:
- pass
- del SaveBackXml
- del dataset_md_xml
-
- # Declared Varaiables
- del dataset_name
- del target_tree, target_root
- del project_gdb, project_folder, scratch_folder, root_dict
- # Imports
- del md, etree, StringIO, BytesIO
- # Function Parameters
- del dataset_path
- except KeyboardInterrupt:
- raise SystemExit
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def insert_missing_elements(dataset_path):
- try:
- from lxml import etree
- from arcpy import metadata as md
- from io import BytesIO, StringIO
- import copy
-
- project_gdb = os.path.dirname(dataset_path)
- project_folder = os.path.dirname(project_gdb)
- project = os.path.basename(os.path.dirname(project_gdb))
- export_folder = rf"{project_folder}\Export"
- scratch_folder = rf"{project_folder}\Scratch"
-
- import json
- json_path = rf"{project_folder}\root_dict.json"
- with open(json_path, "r") as json_file:
- root_dict = json.load(json_file)
- json_path = rf"{project_folder}\esri_dict.json"
- with open(json_path, "r") as json_file:
- esri_dict = json.load(json_file)
- json_path = rf"{project_folder}\dataIdInfo_dict.json"
- with open(json_path, "r") as json_file:
- dataIdInfo_dict = json.load(json_file)
- json_path = rf"{project_folder}\contact_dict.json"
- with open(json_path, "r") as json_file:
- contact_dict = json.load(json_file)
- json_path = rf"{project_folder}\dqInfo_dict.json"
- with open(json_path, "r") as json_file:
- dqInfo_dict = json.load(json_file)
- json_path = rf"{project_folder}\distInfo_dict.json"
- with open(json_path, "r") as json_file:
- distInfo_dict = json.load(json_file)
- #json_path = rf"{project_folder}\RoleCd_dict.json"
- #with open(json_path, "r") as json_file:
- # RoleCd_dict = json.load(json_file)
- #json_path = rf"{project_folder}\tpCat_dict.json"
- #with open(json_path, "r") as json_file:
- # tpCat_dict = json.load(json_file)
- del json_file
- del json_path
- del json
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = rf"{scratch_folder}\scratch.gdb"
- del scratch_folder
- del project_folder
- del project_gdb
-
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- # Get contact information
- contacts_xml = rf"{os.environ['USERPROFILE']}\Documents\ArcGIS\Descriptions\contacts.xml"
- contacts_xml_tree = etree.parse(contacts_xml, parser=etree.XMLParser(encoding='UTF-8', remove_blank_text=True)) # To parse from a string, use the fromstring() function instead.
- del contacts_xml
-
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- # Get Prefered contact information
- mdContact_rpIndName = contact_dict["mdContact"][0]["rpIndName"]
- mdContact_eMailAdd = contact_dict["mdContact"][0]["eMailAdd"]
- mdContact_role = contact_dict["mdContact"][0]["role"]
-
- citRespParty_rpIndName = contact_dict["citRespParty"][0]["rpIndName"]
- citRespParty_eMailAdd = contact_dict["citRespParty"][0]["eMailAdd"]
- citRespParty_role = contact_dict["citRespParty"][0]["role"]
-
- idPoC_rpIndName = contact_dict["idPoC"][0]["rpIndName"]
- idPoC_eMailAdd = contact_dict["idPoC"][0]["eMailAdd"]
- idPoC_role = contact_dict["idPoC"][0]["role"]
-
- distorCont_rpIndName = contact_dict["distorCont"][0]["rpIndName"]
- distorCont_eMailAdd = contact_dict["distorCont"][0]["eMailAdd"]
- distorCont_role = contact_dict["distorCont"][0]["role"]
-
- srcCitatn_rpIndName = contact_dict["srcCitatn"][0]["rpIndName"]
- srcCitatn_eMailAdd = contact_dict["srcCitatn"][0]["eMailAdd"]
- srcCitatn_role = contact_dict["srcCitatn"][0]["role"]
-
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- #print(etree.tostring(target_root, encoding='UTF-8', method='xml', pretty_print=True).decode())
-
- dataset_md = md.Metadata(dataset_path)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- dataset_md.reload()
- dataset_md_xml = dataset_md.xml
- del dataset_md
-
- # Parse the XML
- parser = etree.XMLParser(encoding='UTF-8', remove_blank_text=True)
- target_tree = etree.parse(StringIO(dataset_md_xml), parser=parser)
- target_root = target_tree.getroot()
- del parser, dataset_md_xml
-
- CreaDate = target_root.xpath(f"//Esri/CreaDate")[0].text
- CreaTime = target_root.xpath(f"//Esri/CreaTime")[0].text
- #print(CreaDate, CreaTime)
- CreaDateTime = f"{CreaDate[:4]}-{CreaDate[4:6]}-{CreaDate[6:]}T{CreaTime[:2]}:{CreaTime[2:4]}:{CreaTime[4:6]}"
- #print(f"\tCreaDateTime: {CreaDateTime}")
- #del CreaDateTime
- del CreaDate, CreaTime
- ModDate = target_root.xpath(f"//Esri/ModDate")[0].text
- ModTime = target_root.xpath(f"//Esri/ModTime")[0].text
- #print(ModDate, ModTime)
- ModDateTime = f"{ModDate[:4]}-{ModDate[4:6]}-{ModDate[6:]}T{ModTime[:2]}:{ModTime[2:4]}:{ModTime[4:6]}"
- #print(f"\tModDateTime: {ModDateTime}")
- #del ModDateTime
- del ModDate, ModTime
-
- dataset_name = os.path.basename(dataset_path)
- print(f"Processing/Updating elements for dataset: '{dataset_name}'")
-
- xml_file = b'''
-
-
- ISO 19139 Metadata Implementation Specification GML3.2
- ISO19139
-
-
-
-
-
-
- feature class name
- feature class name
- NMFS OST DisMAP
-
-
-
-
-
-
-
-
-
-
- external
- 810ad1c47a347c4bf5c88f2ea5077cd5d7a1bdcb
- Timothy J Haverland
- NMFS Office of Science and Technology
- GIS App Developer
-
-
- 1315 East West Highway
- Silver Spring
- MD
- 20910-3282
- tim.haverland@noaa.gov
-
-
- 301-427-8137
- 301-713-4137
-
- 0700 - 1800 EST/EDT
-
- https://www.fisheries.noaa.gov/about/office-science-and-technology
- REST Service
- NMFS Office of Science and Technology
- NOAA Fisheries Office of Science and Technology
-
-
-
-
-
- Timothy J Haverland
- True
-
-
-
-
-
-
-
-
- Global Change Master Directory (GCMD) Science Keywords
-
-
-
-
-
-
- https://www.fisheries.noaa.gov/inport/help/components/keywords
- REST Service
- GCMD
- Global Change Master Directory (GCMD) Science Keywords
-
-
-
-
-
-
-
-
-
-
-
-
-
- Global Change Master Directory (GCMD) Location Keywords
-
-
-
-
-
-
- https://www.fisheries.noaa.gov/inport/help/components/keywords
- REST Service
- GCMD
- Global Change Master Directory (GCMD) Location Keywords
-
-
-
-
-
-
-
-
-
-
-
-
-
- Global Change Master Directory (GCMD) Temporal Data Resolution Keywords
-
-
-
-
-
-
- https://www.fisheries.noaa.gov/inport/help/components/keywords
- REST Service
- GCMD
- Global Change Master Directory (GCMD) Temporal Data Resolution Keywords
-
-
-
-
-
-
-
-
-
-
-
-
-
- Integrated Taxonomic Information System (ITIS)
-
-
-
-
-
-
- https://www.itits.org
- REST Service
- ITIS
- Integrated Taxonomic Information System (ITIS)
-
-
-
-
-
-
-
-
-
-
- external
- c66ffbb333c48d18d81856ec0e0c37ea752bff1a
- Melissa Ann Karp
- NMFS Office of Science and Technology
- Fisheries Science Coordinator
-
-
- 1315 East West Hwy
- Silver Spring
- MD
- 20910-3282
- melissa.karp@noaa.gov
- US
-
-
- 301-427-8202
- 301-713-4137
-
- 0700 - 1800 EST/EDT
-
- https://www.fisheries.noaa.gov/about/office-science-and-technology
- REST Service
- NMFS Office of Science and Technology
- NOAA Fisheries Office of Science and Technology
-
-
-
-
-
- Melissa Ann Karp
- True
-
-
-
-
-
-
-
-
-
-
-
-
- Data License: CC0-1.0
- Data License URL: https://creativecommons.org/publicdomain/zero/1.0/
- Data License Statement: These data were produced by NOAA and are not subject to copyright protection in the United States. NOAA waives any potential copyright and related rights in these data worldwide through the Creative Commons Zero 1.0 Universal Public Domain Dedication (CC0-1.0).
-
-
-
-
-
- FISMA Low
-
-
- <DIV STYLE="text-align:Left;"><DIV><DIV><P><SPAN>***No Warranty*** The user assumes the entire risk related to its use of these data. NMFS is providing these data 'as is' and NMFS disclaims any and all warranties, whether express or implied, including (without limitation) any implied warranties of merchantability or fitness for a particular purpose. No warranty expressed or implied is made regarding the accuracy or utility of the data on any other system or for general or scientific purposes, nor shall the act of distribution constitute any such warranty. It is strongly recommended that careful attention be paid to the contents of the metadata file associated with these data to evaluate dataset limitations, restrictions or intended use. In no event will NMFS be liable to you or to any third party for any direct, indirect, incidental, consequential, special or exemplary damages or lost profit resulting from any use or misuse of these data.</SPAN></P></DIV></DIV></DIV>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- dataset
-
-
-
- Based on a review from DisMAP Team all necessary features are present.
-
-
-
- Conceptual Consistency Report
-
- NMFS OST DisMAP
-
-
-
-
-
-
- Based on a review from DisMAP Team all necessary features are present.
- 1
-
-
-
-
- Based on a review from DisMAP Team all necessary features are present.
-
-
-
- Completeness Report
-
- NMFS OST DisMAP
-
-
-
-
-
-
- Based on a review from DisMAP Team all necessary features are present.
- 1
-
-
-
-
-
-
- Data for 'region' 'version'
-
-
-
-
- Source Citation for:
-
- NMFS OST DisMAP
-
- https://www.fisheries.noaa.gov/about/office-science-and-technology
- REST Service
- NMFS Office of Science and Technology
- NOAA Fisheries Office of Science and Technology
-
-
-
-
-
-
-
-
-
-
- document
-
-
-
- external
- c66ffbb333c48d18d81856ec0e0c37ea752bff1a
- Melissa Ann Karp
- NMFS Office of Science and Technology
- Fisheries Science Coordinator
-
-
- 1315 East West Hwy
- Silver Spring
- MD
- 20910-3282
- melissa.karp@noaa.gov
- US
-
-
- 301-427-8202
- 301-713-4137
-
- 0700 - 1800 EST/EDT
-
- https://www.fisheries.noaa.gov/about/office-science-and-technology
- REST Service
- NMFS Office of Science and Technology
- NOAA Fisheries Office of Science and Technology
-
-
-
-
-
- Melissa Ann Karp
- True
-
-
-
-
-
-
-
- Geoprocessing Steps for 'region' 'version date'
-
-
- external
- c66ffbb333c48d18d81856ec0e0c37ea752bff1a
- Melissa Ann Karp
- NMFS Office of Science and Technology
- Fisheries Science Coordinator
-
-
- 1315 East West Hwy
- Silver Spring
- MD
- 20910-3282
- melissa.karp@noaa.gov
- US
-
-
- 301-427-8202
- 301-713-4137
-
- 0700 - 1800 EST/EDT
-
- https://www.fisheries.noaa.gov/about/office-science-and-technology
- REST Service
- NMFS Office of Science and Technology
- NOAA Fisheries Office of Science and Technology
-
-
-
-
-
- Melissa Ann Karp
- True
-
-
-
-
-
- external
- b212accd6134b5457de3ed1debca061419d927ce
- John F Kennedy
- NMFS Office of Science and Technology
- GIS Specialist
-
-
- 1315 East West Highway
- Silver Spring
- MD
- 20910-3282
- US
- john.f.kennedy@noaa.gov
-
-
- 301-427-8149
- 301-713-4137
-
- 0930 - 2030 EST/EDT
-
- https://www.fisheries.noaa.gov/about/office-science-and-technology
- REST Service
- NMFS Office of Science and Technology
- NOAA Fisheries Office of Science and Technology
-
-
-
-
-
- John F Kennedy
- True
-
-
-
-
-
- DisMAP
-
-
-
-
-
-
-
- ESRI REST Service
-
- Uncompressed
-
-
-
-
- external
- 579ce2e21b888ac8f6ac1dac30f04cddec7a0d7c
- NMFS Office of Science and Technology
- NMFS Office of Science and Technology
- GIS App Developer
-
-
- 1315 East West Highway
- Silver Spring
- MD
- 20910-3282
- US
- tim.haverland@noaa.gov
-
-
- 301-427-8137
- 301-713-4137
-
- 0700 - 1800 EST/EDT
-
- https://www.fisheries.noaa.gov/about/office-science-and-technology
- REST Service
- NMFS Office of Science and Technology
- NOAA Fisheries Office of Science and Technology
-
-
-
-
-
- NMFS Office of Science and Technology (Distributor)
- True
-
-
-
-
-
-
- MB
- 8
-
- https://services2.arcgis.com/C8EMgrsFcRFL6LrL/arcgis/rest/services/.../FeatureServer
- ESRI REST Service
- NMFS Office of Science and Technology
- Dataset Feature Service
-
-
-
-
-
-
-
- external
- b212accd6134b5457de3ed1debca061419d927ce
- John F Kennedy
- NMFS Office of Science and Technology
- GIS Specialist
-
-
- 1315 East West Highway
- Silver Spring
- MD
- 20910-3282
- US
- john.f.kennedy@noaa.gov
-
-
- 301-427-8149
- 301-713-4137
-
- 0930 - 2030 EST/EDT
-
- https://www.fisheries.noaa.gov/about/office-science-and-technology
- REST Service
- NMFS Office of Science and Technology
- NOAA Fisheries Office of Science and Technology
-
-
-
-
-
- John F Kennedy (Metadata Author)
- True
-
-
-
-
- <.>
- '''
-
- source_tree = etree.parse(BytesIO(xml_file), etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- source_root = source_tree.getroot()
-
- # Merge Target wtih Source
- target_source_merge = xml_tree_merge(target_root, source_root)
- #print(etree.tostring(target_source_merge, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- # Merge Source wtih Target
- source_target_merge = xml_tree_merge(target_source_merge, target_root)
- #print(etree.tostring(source_target_merge, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- del target_source_merge
- del source_tree, source_root, xml_file
-
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- #
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- dataset_md_xml = etree.tostring(source_target_merge, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=False)
-
- SaveBackXml = False
- if SaveBackXml:
- dataset_md = md.Metadata(dataset_path)
- dataset_md.xml = dataset_md_xml
- dataset_md.save()
- dataset_md.synchronize("CREATED")
- dataset_md.save()
- #dataset_md.reload()
- #dataset_md_xml = dataset_md.xml
- del dataset_md
- # Parse the XML
- #_target_tree = etree.parse(StringIO(dataset_md_xml), parser=etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- #del dataset_md_xml
- #print(etree.tostring(_target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- #del _target_tree
- else:
- pass
- del SaveBackXml
- del dataset_md_xml
-
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- #
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-
- dataset_md = md.Metadata(dataset_path)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- dataset_md.reload()
- dataset_md_xml = dataset_md.xml
- del dataset_md
-
- # Parse the XML
- parser = etree.XMLParser(encoding='UTF-8', remove_blank_text=True)
- target_tree = etree.parse(StringIO(dataset_md_xml), parser=parser)
- target_root = target_tree.getroot()
- del parser, dataset_md_xml
-
-## target_root.xpath("./distInfo/distFormat/formatName")[0].set('Sync', "FALSE")
-## target_root.xpath("./dataIdInfo/envirDesc")[0].set('Sync', "TRUE")
-
-## for key in root_dict:
-## #print(key)
-## elem = target_root.find(f"./{key}")
-## if elem is not None and len(elem) > 0:
-## #print(elem.tag)
-## pass
-## del elem
-## del key
-##
-## # Root
-## mdTimeSt = target_root.find("./mdTimeSt")
-## #print(mdTimeSt)
-## if mdTimeSt is not None:
-## mdTimeSt.getparent().remove(mdTimeSt)
-## else:
-## pass
-## del mdTimeSt
-
-## # Metadata
-## target_root[:] = sorted(target_root, key=lambda x: root_dict[x.tag])
-## # Esri
-## Esri = target_root.xpath("./Esri")[0]
-## Esri[:] = sorted(Esri, key=lambda x: esri_dict[x.tag])
-## #print(etree.tostring(Esri, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del Esri
-## # dataIdInfo
-## dataIdInfo = target_root.xpath("./dataIdInfo")[0]
-## dataIdInfo[:] = sorted(dataIdInfo, key=lambda x: dataIdInfo_dict[x.tag])
-## #print(etree.tostring(dataIdInfo, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del dataIdInfo
-## # dqInfo
-## dqInfo = target_root.xpath("./dqInfo")[0]
-## dqInfo[:] = sorted(dqInfo, key=lambda x: dqInfo_dict[x.tag])
-## #print(etree.tostring(dqInfo, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del dqInfo
-## # distInfo
-## distInfo = target_root.xpath("./distInfo")[0]
-## distInfo[:] = sorted(distInfo, key=lambda x: distInfo_dict[x.tag])
-## #print(etree.tostring(distInfo, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del distInfo
- # mdContact
- # mdLang
- # mdHrLv
- # refSysInfo
- # spatRepInfo
- # spdoinfo
- # eainfo
-
-## enttyp = target_root.find("enttyp")
-## if enttyp is not None:
-## enttypd = enttyp.find("enttypd")
-## enttypds = enttyp.find("enttypds")
-## if enttypd is None:
-## _xml = "A collection of geographic features with the same geometry type."
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## enttyp.insert(0, _root)
-## del _root, _xml
-## else:
-## pass
-## if enttypds is None:
-## _xml = "Esri"
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## enttyp.insert(0, _root)
-## del _root, _xml
-## else:
-## pass
-## del enttypds, enttypd
-## else:
-## pass
-## del enttyp
-
- # idCredit completed
- #for idCredit in target_root.xpath("./dataIdInfo/idCredit"):
- # #print(etree.tostring(idCredit, encoding='UTF-8', method='xml', pretty_print=True).decode())
- # #idCredit.text = "NOAA Fisheries. 2025.."
- # del idCredit
- #print(etree.tostring(target_root.xpath("./dataIdInfo/idCredit")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-
-## # resTitle completed
-## resTitle = target_root.xpath("./dataIdInfo/idCitation/resTitle")[0]
-## target_root.xpath("./dqInfo/dataLineage/dataSource/srcCitatn/resTitle")[0].text = resTitle.text
-## #print(f"\tresTitle: {resTitle.text}")
-## #resTitle.text = f""
-## del resTitle
-## resAltTitle = target_root.xpath("./dataIdInfo/idCitation/resAltTitle")[0]
-## target_root.xpath("./dqInfo/dataLineage/dataSource/srcCitatn/resAltTitle")[0].text = resAltTitle.text
-## #print(f"\tresAltTitle: {resAltTitle.text}")
-## #resAltTitle.text = f""
-## del resAltTitle
-## collTitle = target_root.xpath("./dataIdInfo/idCitation/collTitle")[0]
-## #print(f"\tcollTitle: {collTitle.text}")
-## collTitle.text = "NMFS OST DisMAP"
-## target_root.xpath("./dqInfo/dataLineage/dataSource/srcCitatn/collTitle")[0].text = collTitle.text
-## #print(f"\tcollTitle: {collTitle.text}")
-## del collTitle
-
-## resConst = target_root.xpath("./dataIdInfo/resConst")
-## if len(resConst) == 1:
-## xml_file = b'''
-##
-##
-##
-##
-##
-##
-##
-## Data License: CC0-1.0
-##Data License URL: https://creativecommons.org/publicdomain/zero/1.0/
-##Data License Statement: These data were produced by NOAA and are not subject to copyright protection in the United States. NOAA waives any potential copyright and related rights in these data worldwide through the Creative Commons Zero 1.0 Universal Public Domain Dedication (CC0-1.0).
-##
-##
-##
-##
-##
-##
-## FISMA Low
-##
-##
-## <DIV STYLE="text-align:Left;"><DIV><DIV><P><SPAN>***No Warranty*** The user assumes the entire risk related to its use of these data. NMFS is providing these data 'as is' and NMFS disclaims any and all warranties, whether express or implied, including (without limitation) any implied warranties of merchantability or fitness for a particular purpose. No warranty expressed or implied is made regarding the accuracy or utility of the data on any other system or for general or scientific purposes, nor shall the act of distribution constitute any such warranty. It is strongly recommended that careful attention be paid to the contents of the metadata file associated with these data to evaluate dataset limitations, restrictions or intended use. In no event will NMFS be liable to you or to any third party for any direct, indirect, incidental, consequential, special or exemplary damages or lost profit resulting from any use or misuse of these data.</SPAN></P></DIV></DIV></DIV>
-##
-## '''
-## _tree = etree.parse(BytesIO(xml_file), etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## _root = _tree.getroot()
-## resConst[0].getparent().replace(resConst[0], _root)
-## del _root, _tree, xml_file
-## else:
-## pass
-## del resConst
-
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- # discKeys, themeKeys, placeKeys, tempKeys
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- #searchKeys = target_root.xpath("./dataIdInfo/searchKeys")
- #for searchKey in searchKeys:
- # #print(etree.tostring(searchKey, encoding='UTF-8', method='xml', pretty_print=True).decode())
- # del searchKey
- #del searchKeys
-## searchKeys = target_root.xpath("./dataIdInfo/searchKeys")
-## for searchKey in searchKeys:
-## #print(etree.tostring(searchKey, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## for keyword in searchKey.xpath("./keyword"):
-## if isinstance(keyword.text, type(None)):
-## keyword.getparent().remove(keyword)
-## else:
-## pass #print(etree.tostring(keyword, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del searchKey
-## del searchKeys
-## target_root.xpath("./dataIdInfo/searchKeys/keyword")[0].text = f"{species_range_dict[dataset_name]['LISTENTITY']}; ESA; range; NMFS"
-##
-## keywords = target_root.xpath("./dataIdInfo/discKeys/keyword")
-## if keywords is not None and len(keywords) and len(keywords[0]) == 0:
-## keyword = target_root.xpath("./dataIdInfo/discKeys/keyword")[0]
-## keyword.text = f"{species_range_dict[dataset_name]['SCIENAME']}"
-## del keyword
-## #elif keywords is not None and len(keywords) and len(keywords[0]) >= 1:
-## # pass
-## del keywords
-## createDate = target_root.xpath("./dataIdInfo/discKeys/thesaName/date/createDate")
-## if createDate is not None and len(createDate) and len(createDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/discKeys/thesaName/date/createDate")[0].text = CreaDateTime
-## elif createDate is not None and len(createDate) and len(createDate[0]) == 1:
-## pass
-## else:
-## pass
-## del createDate
-## pubDate = target_root.xpath("./dataIdInfo/discKeys/thesaName/date/pubDate")
-## if pubDate is not None and len(pubDate) and len(pubDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/discKeys/thesaName/date/pubDate")[0].text = CreaDateTime
-## elif pubDate is not None and len(pubDate) and len(pubDate[0]) == 1:
-## pass
-## else:
-## pass
-## del pubDate
-## reviseDate = target_root.xpath("./dataIdInfo/discKeys/thesaName/date/reviseDate")
-## if reviseDate is not None and len(reviseDate) and len(reviseDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/discKeys/thesaName/date/reviseDate")[0].text = ModDateTime
-## elif reviseDate is not None and len(reviseDate) and len(reviseDate[0]) == 1:
-## pass
-## else:
-## pass
-## del reviseDate
-## resTitle = target_root.xpath("./dataIdInfo/discKeys/thesaName/resTitle")
-## if resTitle is not None and len(resTitle) and len(resTitle[0]) == 0:
-## target_root.xpath("./dataIdInfo/discKeys/thesaName/resTitle")[0].text = "Integrated Taxonomic Information System (ITIS)"
-## elif resTitle is not None and len(resTitle) and len(resTitle[0]) == 1:
-## pass
-## else:
-## pass
-## del resTitle
-## discKeys = target_root.xpath("./dataIdInfo/discKeys")
-## for i in range(0, len(discKeys)):
-## #print(etree.tostring(discKeys[i], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del i
-## del discKeys
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # themeKeys
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## keywords = target_root.xpath("./dataIdInfo/themeKeys/keyword")
-## if keywords is not None and len(keywords) and len(keywords[0]) == 0:
-## new_item_name = target_root.find("./Esri/DataProperties/itemProps/itemName").text
-## keyword = target_root.xpath("./dataIdInfo/themeKeys/keyword")[0]
-## keyword.text = f"{species_range_dict[dataset_name]['COMNAME'].title()}; {species_range_dict[dataset_name]['SCIENAME']}; Endangered Species; NMFS"
-## del keyword, new_item_name
-## elif keywords is not None and len(keywords) and len(keywords[0]) >= 1:
-## pass
-## del keywords
-## createDate = target_root.xpath("./dataIdInfo/themeKeys/thesaName/date/createDate")
-## if createDate is not None and len(createDate) and len(createDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/themeKeys/thesaName/date/createDate")[0].text = CreaDateTime
-## elif createDate is not None and len(createDate) and len(createDate[0]) == 1:
-## pass
-## else:
-## pass
-## del createDate
-## pubDate = target_root.xpath("./dataIdInfo/themeKeys/thesaName/date/pubDate")
-## if pubDate is not None and len(pubDate) and len(pubDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/themeKeys/thesaName/date/pubDate")[0].text = CreaDateTime
-## elif pubDate is not None and len(pubDate) and len(pubDate[0]) == 1:
-## pass
-## else:
-## pass
-## del pubDate
-## reviseDate = target_root.xpath("./dataIdInfo/themeKeys/thesaName/date/reviseDate")
-## if reviseDate is not None and len(reviseDate) and len(reviseDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/themeKeys/thesaName/date/reviseDate")[0].text = ModDateTime
-## elif reviseDate is not None and len(reviseDate) and len(reviseDate[0]) == 1:
-## pass
-## else:
-## pass
-## del reviseDate
-## resTitle = target_root.xpath("./dataIdInfo/themeKeys/thesaName/resTitle")
-## if resTitle is not None and len(resTitle) and len(resTitle[0]) == 0:
-## target_root.xpath("./dataIdInfo/themeKeys/thesaName/resTitle")[0].text = "Global Change Master Directory (GCMD) Science Keyword"
-## elif resTitle is not None and len(resTitle) and len(resTitle[0]) == 1:
-## pass
-## else:
-## pass
-## del resTitle
-## themeKeys = target_root.xpath("./dataIdInfo/themeKeys")
-## for i in range(0, len(themeKeys)):
-## #print(etree.tostring(themeKeys[i], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del i
-## del themeKeys
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # placeKeys
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## keywords = target_root.xpath("./dataIdInfo/placeKeys/keyword")
-## if keywords is not None and len(keywords) and len(keywords[0]) == 0:
-## new_item_name = target_root.find("./Esri/DataProperties/itemProps/itemName").text
-## keyword = target_root.xpath("./dataIdInfo/placeKeys/keyword")[0]
-## keyword.text = f"Enter place/geography keywords for {new_item_name}, separated by a semicolon"
-## del keyword, new_item_name
-## elif keywords is not None and len(keywords) and len(keywords[0]) >= 1:
-## pass
-## del keywords
-## createDate = target_root.xpath("./dataIdInfo/placeKeys/thesaName/date/createDate")
-## if createDate is not None and len(createDate) and len(createDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/placeKeys/thesaName/date/createDate")[0].text = CreaDateTime
-## elif createDate is not None and len(createDate) and len(createDate[0]) == 1:
-## pass
-## else:
-## pass
-## del createDate
-## pubDate = target_root.xpath("./dataIdInfo/placeKeys/thesaName/date/pubDate")
-## if pubDate is not None and len(pubDate) and len(pubDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/placeKeys/thesaName/date/pubDate")[0].text = CreaDateTime
-## elif pubDate is not None and len(pubDate) and len(pubDate[0]) == 1:
-## pass
-## else:
-## pass
-## del pubDate
-## reviseDate = target_root.xpath("./dataIdInfo/placeKeys/thesaName/date/reviseDate")
-## if reviseDate is not None and len(reviseDate) and len(reviseDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/placeKeys/thesaName/date/reviseDate")[0].text = ModDateTime
-## elif reviseDate is not None and len(reviseDate) and len(reviseDate[0]) == 1:
-## pass
-## else:
-## pass
-## del reviseDate
-## resTitle = target_root.xpath("./dataIdInfo/placeKeys/thesaName/resTitle")
-## if resTitle is not None and len(resTitle) and len(resTitle[0]) == 0:
-## target_root.xpath("./dataIdInfo/placeKeys/thesaName/resTitle")[0].text = "Global Change Master Directory (GCMD) Location Keywords"
-## elif resTitle is not None and len(resTitle) and len(resTitle[0]) == 1:
-## pass
-## else:
-## pass
-## del resTitle
-## placeKeys = target_root.xpath("./dataIdInfo/placeKeys")
-## for i in range(0, len(placeKeys)):
-## #print(etree.tostring(placeKeys[i], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del i
-## del placeKeys
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # tempKeys
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## keywords = target_root.xpath("./dataIdInfo/tempKeys/keyword")
-## if keywords is not None and len(keywords) and len(keywords[0]) == 0:
-## new_item_name = target_root.find("./Esri/DataProperties/itemProps/itemName").text
-## keyword = target_root.xpath("./dataIdInfo/tempKeys/keyword")[0]
-## keyword.text = f"Enter temporal keywords (e.g. year, year range, season, etc.) for {new_item_name}, separated by a semicolon"
-## del keyword, new_item_name
-## elif keywords is not None and len(keywords) and len(keywords[0]) >= 1:
-## pass
-## del keywords
-## createDate = target_root.xpath("./dataIdInfo/tempKeys/thesaName/date/createDate")
-## if createDate is not None and len(createDate) and len(createDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/tempKeys/thesaName/date/createDate")[0].text = CreaDateTime
-## elif createDate is not None and len(createDate) and len(createDate[0]) == 1:
-## pass
-## else:
-## pass
-## del createDate
-## pubDate = target_root.xpath("./dataIdInfo/tempKeys/thesaName/date/pubDate")
-## if pubDate is not None and len(pubDate) and len(pubDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/tempKeys/thesaName/date/pubDate")[0].text = CreaDateTime
-## elif pubDate is not None and len(pubDate) and len(pubDate[0]) == 1:
-## pass
-## else:
-## pass
-## del pubDate
-## reviseDate = target_root.xpath("./dataIdInfo/tempKeys/thesaName/date/reviseDate")
-## if reviseDate is not None and len(reviseDate) and len(reviseDate[0]) == 0:
-## target_root.xpath("./dataIdInfo/tempKeys/thesaName/date/reviseDate")[0].text = ModDateTime
-## elif reviseDate is not None and len(reviseDate) and len(reviseDate[0]) == 1:
-## pass
-## else:
-## pass
-## del reviseDate
-## resTitle = target_root.xpath("./dataIdInfo/tempKeys/thesaName/resTitle")
-## if resTitle is not None and len(resTitle) and len(resTitle[0]) == 0:
-## target_root.xpath("./dataIdInfo/tempKeys/thesaName/resTitle")[0].text = "Global Change Master Directory (GCMD) Temporal Data Resolution Keywords"
-## elif resTitle is not None and len(resTitle) and len(resTitle[0]) == 1:
-## pass
-## else:
-## pass
-## del resTitle
-## tempKeys = target_root.xpath("./dataIdInfo/tempKeys")
-## for i in range(0, len(tempKeys)):
-## #print(etree.tostring(tempKeys[i], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del i
-## del tempKeys
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # Data Extent
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## dataExt = target_root.xpath("./dataIdInfo/dataExt")[0]
-## exDesc = dataExt.xpath("//exDesc")
-## if len(exDesc) == 0:
-## _xml = "[Location extent description]. The data represents an approximate distribution of the listed entity based on the best available information from [date of first source] to [date of final species expert review]."
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## dataExt.insert(0, _root)
-## del _root, _xml
-## elif len(exDesc) == 1:
-## exDesc[0].text = "[Location extent description]. The data represents an approximate distribution of the listed entity based on the best available information from [date of first source] to [date of final species expert review]."
-## else:
-## pass
-## del exDesc
-## tempEle = dataExt.xpath("//tempEle")
-## if len(tempEle) == 0:
-## _xml = f' \
-## {CreaDateTime}{ModDateTime} \
-## {ModDateTime}'
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## dataExt.insert(2, _root)
-## del _root, _xml
-## elif len(tempEle) == 1:
-## _xml = f' \
-## {CreaDateTime}{ModDateTime} \
-## {ModDateTime}'
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## tempEle[0].getparent().replace(tempEle[0], _root)
-## del _root, _xml
-## del tempEle
-## del dataExt
- #dataExt = target_root.xpath("./dataIdInfo/dataExt")
- #for i in range(0, len(dataExt)):
- # #print(etree.tostring(dataExt[i], encoding='UTF-8', method='xml', pretty_print=True).decode())
- # del i
- #del dataExt
- #dataExt = target_root.xpath("./dataIdInfo/dataExt")
- #for i in range(1, len(dataExt)):
- # dataExt[i].getparent().remove(dataExt[i])
- # del i
- #del dataExt
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## #target_root.xpath("./dqInfo/dqScope/scpLvl/ScopeCd")[0].set('value', "005")
-## PresFormCd = target_root.xpath("./dataIdInfo/idCitation/presForm/PresFormCd")[0]
-## fgdcGeoform = target_root.xpath("./dataIdInfo/idCitation/presForm/fgdcGeoform")[0]
-## SpatRepTypCd = target_root.xpath("./dataIdInfo/spatRpType/SpatRepTypCd")[0]
-## PresFormCd.set('Sync', "TRUE")
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # SpatRepTypCd "Empty" "001" (vector) "002" (raster/grid) "003" (tabular)
-## # PresFormCd "005" "003" "011"
-## # fgdcGeoform "vector data" "raster data" "tabular data"
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## datasetSet = target_root.xpath("./dqInfo/dqScope/scpLvlDesc/datasetSet")[0]
-## if SpatRepTypCd.get("value") == "001":
-## PresFormCd.set("value", "005")
-## fgdcGeoform.text = "vector digital data"
-## datasetSet.text = "Vector Digital Data"
-## elif SpatRepTypCd.get("value") == "002":
-## PresFormCd.set("value", "003")
-## fgdcGeoform.text = "raster digital data"
-## datasetSet.text = "Raster Digital Data"
-## elif SpatRepTypCd.get("value") == "003":
-## PresFormCd.set("value", "011")
-## fgdcGeoform.text = "tabular digital data"
-## datasetSet.text = "Tabular Digital Data"
-## else:
-## pass
-## #print("------" * 10)
-## #print(etree.tostring(SpatRepTypCd, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## #print(etree.tostring(target_root.xpath("./dataIdInfo/idCitation/presForm")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## #print(etree.tostring(target_root.xpath("./dqInfo/dqScope")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## #print("------" * 10)
-## del datasetSet, SpatRepTypCd, fgdcGeoform, PresFormCd
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## formatName = target_root.xpath("./distInfo/distFormat/formatName")[0]
-## envirDesc = target_root.xpath("./dataIdInfo/envirDesc")[0]
-## envirDesc.set('Sync', "TRUE")
-## target_root.xpath("./distInfo/distFormat/fileDecmTech")[0].text = "Uncompressed"
-## # # 001 = Vector
-## #''' # 002 = Grid
-## # # 003 = Text Table
-## #'''
-## #format_name_text = ""
-## #try:
-## # GeoObjTypCd = target_root.xpath("./spatRepInfo/VectSpatRep/geometObjs/geoObjTyp/GeoObjTypCd")[0].get("value")
-## # if GeoObjTypCd == "002":
-## # format_name_text = "ESRI File Geodatabase"
-## # del GeoObjTypCd
-## #except:
-## # format_name_text = "ESRI Geodatabase Table"
-## formatName.text = "ESRI REST Service"
-## formatVer_text = str.rstrip(str.lstrip(envirDesc.text))
-## formatVer = target_root.xpath("./distInfo/distFormat/formatVer")[0]
-## formatVer.text = str.rstrip(str.lstrip(formatVer_text))
-## del formatVer_text
-## del envirDesc
-## del formatVer
-## del formatName
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## mdFileID = target_root.xpath(f"//mdFileID")
-## if mdFileID is not None and len(mdFileID) == 0:
-## _xml = 'gov.noaa.nmfs.inport:'
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## target_root.insert(root_dict['mdFileID'], _root)
-## del _root, _xml
-## elif mdFileID is not None and len(mdFileID) and len(mdFileID[0]) == 0:
-## mdFileID[0].text = "gov.noaa.nmfs.inport:"
-## elif mdFileID is not None and len(mdFileID) and len(mdFileID[0]) == 1:
-## pass
-## #print(etree.tostring(mdFileID[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del mdFileID
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## mdMaint = target_root.xpath(f"//mdMaint")
-## if mdMaint is not None and len(mdMaint) == 0:
-## _xml = ''
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## target_root.insert(root_dict['mdMaint'], _root)
-## del _root, _xml
-## elif mdMaint is not None and len(mdMaint) and len(mdMaint[0]) == 0:
-## target_root.xpath("./mdMaint/maintFreq/MaintFreqCd")[0].attrib["value"] = "009"
-## elif mdMaint is not None and len(mdMaint) and len(mdMaint[0]) == 1:
-## pass #print(etree.tostring(mdMaint[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## else:
-## pass
-## #print(etree.tostring(mdMaint[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del mdMaint
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## distorTran = target_root.xpath("//distorTran")
-## for _distorTran in distorTran:
-## _distorTran.tag = "distTranOps"
-## del _distorTran
-## del distorTran
-
-## distTranOps = target_root.xpath("//distTranOps")
-## for i in range(0, len(distTranOps)):
-## if i == 0:
-## xml_file = b'''
-## MB
-## 0
-##
-## https://services2.arcgis.com/C8EMgrsFcRFL6LrL/arcgis/rest/services/.../FeatureServer
-## ESRI REST Service
-## NMFS Office of Science and Technology
-## Dataset Feature Service
-##
-##
-##
-##
-## '''
-## _tree = etree.parse(BytesIO(xml_file), etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## _root = _tree.getroot()
-## distTranOps[i].getparent().replace(distTranOps[i], _root)
-## del _root, _tree, xml_file
-## elif i > 0:
-## distTranOps[i].getparent().remove(distTranOps[i])
-## else:
-## pass
-## del i
-## del distTranOps
- #print(etree.tostring(target_root.xpath("./distInfo")[0], encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- #print(etree.tostring(target_root.xpath("./Esri/DataProperties/itemProps")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## new_item_name = target_root.find("./Esri/DataProperties/itemProps/itemName").text
-## new_item_name = new_item_name.replace("IDW_Sample_Locations", "Sample_Locations") if "Sample_Locations" in new_item_name else new_item_name
-## onLineSrcs = target_root.findall("./distInfo/distTranOps/onLineSrc")
-## for onLineSrc in onLineSrcs:
-## if onLineSrc.find('./protocol').text == "ESRI REST Service":
-## old_linkage_element = onLineSrc.find('./linkage')
-## old_linkage = old_linkage_element.text
-## #print(old_linkage, flush=True)
-## old_item_name = old_linkage[old_linkage.find("/services/")+len("/services/"):old_linkage.find("/FeatureServer")]
-## new_linkage = old_linkage.replace(old_item_name, f"{new_item_name}_{date_code(project)}")
-## #print(new_linkage, flush=True)
-## old_linkage_element.text = new_linkage
-## #print(old_linkage_element.text, flush=True)
-## del old_linkage_element
-## del old_item_name, old_linkage, new_linkage
-## else:
-## pass
-## del onLineSrc
-## del onLineSrcs, new_item_name
-## #print(etree.tostring(target_root.xpath("./distInfo")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-
-## xml_file = b'''
-##
-## external
-## 579ce2e21b888ac8f6ac1dac30f04cddec7a0d7c
-## NMFS Office of Science and Technology
-## NMFS Office of Science and Technology
-## GIS App Developer
-##
-##
-## 1315 East West Highway
-## Silver Spring
-## MD
-## 20910-3282
-## US
-## tim.haverland@noaa.gov
-##
-##
-## 301-427-8137
-## 301-713-4137
-##
-## 0700 - 1800 EST/EDT
-##
-## https://www.fisheries.noaa.gov/about/office-science-and-technology
-## REST Service
-## NMFS Office of Science and Technology
-## NOAA Fisheries Office of Science and Technology
-##
-##
-##
-##
-##
-## NMFS Office of Science and Technology (Distributor)
-## True
-##
-##
-##
-##
-##
-## '''
-## _tree = etree.parse(BytesIO(xml_file), etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## _root = _tree.getroot()
-## distributor = target_root.xpath(f"./distInfo/distributor")[0]
-## distributor.getparent().replace(distributor, _root)
-## del _root, _tree, xml_file
-## #print(f"\n\t{etree.tostring(target_root.xpath(f'./distInfo/distributor')[0], encoding='UTF-8', method='xml', pretty_print=True).decode()}\n")
-## del distributor
-
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- # statement
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## statement = target_root.xpath("./dqInfo/dataLineage/statement")
-## if statement is not None and len(statement) == 0:
-## pass # Need to insert statement
-## elif statement is not None and len(statement) and len(statement[0]) == 0:
-## target_root.xpath("./dqInfo/dataLineage/statement")[0].text = "Need to update datalienage statement"
-## elif statement is not None and len(statement) and len(statement[0]) == 1:
-## pass
-## elif statement is not None and len(statement) and len(statement[0]) >= 1:
-## pass
-## else:
-## pass
-## #print(f"\n\t{etree.tostring(statement[0], encoding='UTF-8', method='xml', pretty_print=True).decode()}\n")
-## del statement
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # srcDesc
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## srcDesc = target_root.xpath("./dqInfo/dataLineage/dataSource/srcDesc")
-## if srcDesc is not None and len(srcDesc) == 0:
-## pass # Need to insert srcDesc
-## elif srcDesc is not None and len(srcDesc) and len(srcDesc[0]) == 0:
-## target_root.xpath("./dqInfo/dataLineage/dataSource/srcDesc")[0].text = "Need to update srcDesc"
-## elif srcDesc is not None and len(srcDesc) and len(srcDesc[0]) == 1:
-## pass
-## elif srcDesc is not None and len(srcDesc) and len(srcDesc[0]) >= 1:
-## pass
-## else:
-## pass
-## #print(f"\n\t{etree.tostring(srcDesc[0], encoding='UTF-8', method='xml', pretty_print=True).decode()}\n")
-## del srcDesc
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- # prcStep
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## stepProcs = target_root.xpath("./dqInfo/dataLineage/prcStep/stepProc")
-## for stepProc in stepProcs:
-## rpIndName = stepProc.find("rpIndName")
-## if rpIndName is None:
-## stepProc.getparent().remove(stepProc)
-## else:
-## pass
-## del rpIndName
-## #print(f"{etree.tostring(stepProc, encoding='UTF-8', method='xml', pretty_print=True).decode()}")
-## del stepProc
-## del stepProcs
-
-## _report = target_root.xpath(f"./dqInfo/report[@type='DQConcConsis']")
-## if len(_report) == 1:
-## _xml = '''
-## Based on a review from DisMAP Team all necessary features are present.
-##
-##
-##
-## Conceptual Consistency Report
-##
-## NMFS OST DisMAP
-##
-##
-##
-##
-##
-##
-## Based on a review from DisMAP Team all necessary features are present.
-## 1
-##
-##
-## '''
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## #print(f"{etree.tostring(_root, encoding='UTF-8', method='xml', pretty_print=True).decode()}")
-## #raise SystemExit
-## _report[0].getparent().replace(_report[0], _root)
-## del _root, _xml
-## else:
-## pass
-## del _report
-##
-## _report = target_root.xpath(f"./dqInfo/report[@type='DQCompOm']")
-## if len(_report) == 1:
-## _xml = '''
-## Based on a review from DisMAP Team all necessary features are present.
-##
-##
-##
-## Completeness Report
-##
-## NMFS OST DisMAP
-##
-##
-##
-##
-##
-##
-## Based on a review from DisMAP Team all necessary features are present.
-## 1
-##
-##
-## '''
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## _report[0].getparent().replace(_report[0], _root)
-## del _root, _xml
-## else:
-## pass
-## del _report
-
-
-## prcStep = target_root.xpath("./dqInfo/dataLineage/prcStep")
-## #print(len(prcStep))
-## if prcStep is not None and len(prcStep) == 0:
-## pass
-## #print("prcStep missing")
-## elif prcStep is not None and len(prcStep) and len(prcStep[0]) == 0:
-## #print("found empty element prcStep. Now adding content.")
-## target_root.xpath("./dqInfo/dataLineage/prcStep")[0].text = "Update Metadata 2025"
-## elif prcStep is not None and len(prcStep) and len(prcStep[0]) >= 1:
-## for i in range(0, len(prcStep)):
-## stepDesc = prcStep[i].xpath("./stepDesc")[0]
-## if stepDesc.text == "pre-Update Metadata 2025":
-## prcStep[i].xpath("./stepDateTm")[0].text = CreaDateTime
-## elif stepDesc.text == "Update Metadata 2025":
-## prcStep[i].xpath("./stepDateTm")[0].text = ModDateTime
-## elif stepDesc.text not in ["pre-Update Metadata 2025", "Update Metadata 2025"]:
-## prcStep[i].xpath("./stepDateTm")[0].text = CreaDateTime
-## del stepDesc
-## del i
-## else:
-## pass
-## del prcStep
-
- #srcDesc = target_root.xpath("./dqInfo/dataLineage/dataSource/srcDesc")
- #for _srcDesc in srcDesc:
- # #print(f"\t{etree.tostring(_srcDesc, encoding='UTF-8', method='xml', pretty_print=True).decode()}")
- # del _srcDesc
- #del srcDesc
- # print(etree.tostring(reports[0].getparent(), encoding='UTF-8', method='xml', pretty_print=True).decode())
- #del dataSources
- #dataLineage = target_root.xpath("./dqInfo/dataLineage")
- #for i in range(0, len(dataLineage)):
- # #print(etree.tostring(dataLineage[i], encoding='UTF-8', method='xml', pretty_print=True).decode())
- # del i
- #del dataLineage
- #distInfo = target_root.xpath("./distInfo")[0]
- #print(etree.tostring(distInfo, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- #del distInfo
-
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # Reorder Elements
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # Metadata
-## target_root[:] = sorted(target_root, key=lambda x: root_dict[x.tag])
-## # Esri
-## Esri = target_root.xpath("./Esri")[0]
-## Esri[:] = sorted(Esri, key=lambda x: esri_dict[x.tag])
-## #print(etree.tostring(Esri, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del Esri
-## # dataIdInfo
-## dataIdInfo = target_root.xpath("./dataIdInfo")[0]
-## dataIdInfo[:] = sorted(dataIdInfo, key=lambda x: dataIdInfo_dict[x.tag])
-## #print(etree.tostring(dataIdInfo, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del dataIdInfo
-## # dqInfo
-## dqInfo = target_root.xpath("./dqInfo")[0]
-## dqInfo[:] = sorted(dqInfo, key=lambda x: dqInfo_dict[x.tag])
-## #print(etree.tostring(dqInfo, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del dqInfo
-## # distInfo
-## distInfo = target_root.xpath("./distInfo")[0]
-## distInfo[:] = sorted(distInfo, key=lambda x: distInfo_dict[x.tag])
-## #print(etree.tostring(distInfo, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## del distInfo
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- #print(etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- etree.indent(target_tree, space=' ')
- dataset_md_xml = etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
-
- SaveBackXml = False
- if SaveBackXml:
- dataset_md = md.Metadata(dataset_path)
- dataset_md.xml = dataset_md_xml
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- #_target_tree = etree.parse(StringIO(dataset_md.xml), parser=etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- #_target_tree.write(rf"{export_folder}\{dataset_name}.xml", pretty_print=True)
- #print(etree.tostring(_target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- #del _target_tree
- del dataset_md
- else:
- pass
- del SaveBackXml
- del dataset_md_xml
-
- # Declared Variables
- del project
- del contacts_xml_tree
- del source_target_merge
- del export_folder
- del mdContact_rpIndName, mdContact_eMailAdd, mdContact_role
- del citRespParty_rpIndName, citRespParty_eMailAdd, citRespParty_role
- del idPoC_rpIndName, idPoC_eMailAdd, idPoC_role
- del distorCont_rpIndName, distorCont_eMailAdd, distorCont_role
- del srcCitatn_rpIndName, srcCitatn_eMailAdd, srcCitatn_role
- del dataset_name
- del CreaDateTime, ModDateTime
- del contact_dict
- #del RoleCd_dict, tpCat_dict,
- del dataIdInfo_dict, dqInfo_dict, distInfo_dict, esri_dict, root_dict
- # Imports
- del etree, md, BytesIO, StringIO, copy
- # Declared variables
- del target_root, target_tree
- # Function Parameters
- del dataset_path
-
- except KeyboardInterrupt:
- raise SystemExit
- except SystemExit:
- raise SystemExit
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def add_update_dates(dataset_path=""):
- try:
- # Imports
- from lxml import etree
- from io import StringIO, BytesIO
- import copy
- from arcpy import metadata as md
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
- print(f"Processing Add/Update Dates for dataset: '{dataset_name}'")
- #print(f"\tDataset Location: {os.path.basename(os.path.dirname(dataset_path))}")
-
- dataset_md = md.Metadata(dataset_path)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- dataset_md.reload()
- dataset_md_xml = dataset_md.xml
- del dataset_md
-
- # Parse the XML
- parser = etree.XMLParser(encoding='UTF-8', remove_blank_text=True)
- target_tree = etree.parse(StringIO(dataset_md_xml), parser=parser)
- target_root = target_tree.getroot()
- del parser, dataset_md_xml
-
- CreaDate = target_root.xpath(f"//Esri/CreaDate")[0].text
- CreaTime = target_root.xpath(f"//Esri/CreaTime")[0].text
- #print(CreaDate, CreaTime)
- CreaDateTime = f"{CreaDate[:4]}-{CreaDate[4:6]}-{CreaDate[6:]}T{CreaTime[:2]}:{CreaTime[2:4]}:{CreaTime[4:6]}"
- #print(f"\tCreaDateTime: {CreaDateTime}")
- #del CreaDateTime
- del CreaDate, CreaTime
- ModDate = target_root.xpath(f"//Esri/ModDate")[0].text
- ModTime = target_root.xpath(f"//Esri/ModTime")[0].text
- #print(ModDate, ModTime)
- ModDateTime = f"{ModDate[:4]}-{ModDate[4:6]}-{ModDate[6:]}T{ModTime[:2]}:{ModTime[2:4]}:{ModTime[4:6]}"
- #print(f"\tModDateTime: {ModDateTime}")
- #del ModDateTime
- del ModDate, ModTime
-
- dates = target_tree.xpath(f"//date")
- count=0
- count_dates = len(dates)
- for date in dates:
- #_date = copy.deepcopy(date)
- count+=1
-
- createDate = date.xpath(f"./createDate")
- #print(f"Element list: '{createDate}'")
- #print(f"Element count: '{len(createDate)}'")
- #print(len(createDate[0].text))
- #print(type(createDate[0].text))
- if not len(createDate):
- _xml = f"{CreaDateTime}"
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- date.insert(0, _root)
- del _root, _xml
- elif len(createDate) and createDate[0].text is not None:
- pass
- #print(f"createDate exists and has content '{createDate[0].text}'")
- #print(etree.tostring(createDate[0], encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- elif len(createDate) and createDate[0].text is None:
- #print(f"createDate exists and but does not have content.")
- createDate[0].text = CreaDateTime
- date.insert(0, createDate[0])
- del createDate
-
- pubDate = date.xpath(f"./pubDate")
- if not len(pubDate):
- _xml = f"{CreaDateTime}"
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- date.insert(0, _root)
- del _root, _xml
- if len(pubDate) and pubDate[0].text is not None:
- pass
- #print(f"pubDate exists and has content '{pubDate[0].text}'")
- #print(etree.tostring(pubDate[0], encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- elif len(pubDate) and pubDate[0].text is None:
- #print(f"pubDate exists and but does not have content.")
- pubDate[0].text = CreaDateTime
- date.insert(1, pubDate[0])
- del pubDate
-
- reviseDate = date.xpath(f"./reviseDate")
- if not len(reviseDate):
- _xml = f"{ModDateTime}"
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- date.insert(0, _root)
- del _root, _xml
- if len(reviseDate) and reviseDate[0].text is not None:
- pass
- #print(f"reviseDate exists and has content '{reviseDate[0].text}'")
- #print(etree.tostring(reviseDate[0], encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- elif len(reviseDate) and reviseDate[0].text is None:
- #print(f"reviseDate exists and but does not have content.")
- reviseDate[0].text = ModDateTime
- date.insert(2, reviseDate[0])
- del reviseDate
-
-## if len(createDate) == 0:
-## _xml = f"{CreaDateTime}"
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## date.insert(0, _root)
-## del _root, _xml
-## elif len(createDate) == 1:
-## if createDate[0].text:
-## createDate[0].text = createDate[0].text
-## elif not createDate[0].text:
-## createDate[0].text = CreaDateTime
-## else:
-## pass
-## else:
-## pass
- #print(etree.tostring(createDate[0], encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
-## pubDate = date.xpath(f"./date/pubDate")
-## if len(pubDate) == 0:
-## _xml = f"{CreaDateTime}"
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## date.insert(0, _root)
-## del _root, _xml
-## elif len(pubDate) == 1:
-## if pubDate[0].text:
-## pubDate[0].text = pubDate[0].text
-## elif not pubDate[0].text:
-## pubDate[0].text = CreaDateTime
-## else:
-## pass
-## else:
-## pass
-## del pubDate
-##
-## try:
-## revisedDate = date.xpath(f"./date/revisedDate")[0]
-## revisedDate.tag = "reviseDate"
-## del revisedDate
-## except:
-## pass
-##
-## reviseDate = date.xpath(f"./date/reviseDate")
-## if len(reviseDate) == 0:
-## _xml = f"{CreaDateTime}"
-## _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
-## date.insert(0, _root)
-## del _root, _xml
-## elif len(reviseDate) == 1:
-## if reviseDate[0].text:
-## reviseDate[0].text = reviseDate[0].text
-## elif not reviseDate[0].text:
-## reviseDate[0].text = ModDateTime
-## else:
-## pass
-## else:
-## pass
-## del reviseDate
-
-## date.getparent().replace(date, _date)
-
- #print(etree.tostring(date, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
-
- del date
- del count, count_dates
- del dates
-
- dates = target_root.xpath(f"//date")
- count=0
- count_dates = len(dates)
- for date in dates:
- count+=1
- #print(f"\tDate: {count} of {count_dates}")
- #print(f"\t\tCreaDateTime: {CreaDateTime}")
- #print(f"\t\tModDateTime: {ModDateTime}")
- #print(date.getroottree().getpath(date))
- #print(etree.tostring(date, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- del date
- del count, count_dates
- del dates
-
- # No changes needed below
- #print(etree.tostring(target_tree, encoding='UTF-8', method='xml', pretty_print=True).decode())
- etree.indent(target_root, space=' ')
- dataset_md_xml = etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
-
- SaveBackXml = True
- if SaveBackXml:
- dataset_md = md.Metadata(dataset_path)
- dataset_md.xml = dataset_md_xml
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- #dataset_md.reload()
- del dataset_md
- else:
- pass
- del SaveBackXml
- del dataset_md_xml
-
- del dataset_name, target_tree, target_root
-
- # Declared Variables
- del CreaDateTime, ModDateTime
- # Imports
- del etree, StringIO, BytesIO, copy, md
- # Function Parameters
- del dataset_path
-
- except KeyboardInterrupt:
- raise SystemExit
- except Exception:
- traceback.print_exc()
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def basic_metadata_report(dataset_path=""):
- try:
- # Imports
- from lxml import etree
- from io import StringIO, BytesIO
- import copy
- from arcpy import metadata as md
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- project_gdb = os.path.dirname(dataset_path)
- project_folder = os.path.dirname(project_gdb)
- project = os.path.basename(os.path.dirname(project_gdb))
- export_folder = rf"{project_folder}\Export"
- scratch_folder = rf"{project_folder}\Scratch"
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = rf"{scratch_folder}\scratch.gdb"
- del scratch_folder
- del project_folder
- del project_gdb
-
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
- print(f"Reporting on Basic XML Metadata for dataset: '{dataset_name}'")
- #print(f"\tDataset Location: {os.path.basename(os.path.dirname(dataset_path))}")
-
- dataset_md = md.Metadata(dataset_path)
- #dataset_md.synchronize("ALWAYS")
- #dataset_md.save()
- #dataset_md.reload()
- dataset_md_xml = dataset_md.xml
- del dataset_md
-
- # Parse the XML
- parser = etree.XMLParser(encoding='UTF-8', remove_blank_text=True)
- target_tree = etree.parse(StringIO(dataset_md_xml), parser=parser)
- target_root = target_tree.getroot()
- del parser, dataset_md_xml
-
- dataset_md = md.Metadata(dataset_path)
- print(f"\tTitle: {dataset_md.title}")
- print(f"\tSearch Keys: {dataset_md.tags}")
- print(f"\tSummary: {dataset_md.summary}")
- print(f"\tDescription: {dataset_md.description}")
- print(f"\tCredits: {dataset_md.credits}")
- print(f"\tUse Limits: {dataset_md.accessConstraints}")
- del dataset_md
-
- # No changes needed below
- #print(etree.tostring(target_tree, encoding='UTF-8', method='xml', pretty_print=True).decode())
- etree.indent(target_root, space=' ')
- dataset_md_xml = etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
-
- SaveBackXml = True
- if SaveBackXml:
- dataset_md = md.Metadata(dataset_path)
- dataset_md.xml = dataset_md_xml
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- #dataset_md.reload()
- del dataset_md
- else:
- pass
- del SaveBackXml
- del dataset_md_xml
-
- # Declared Varaiables
- del project, export_folder
- del dataset_name
- del target_tree, target_root
- # Imports
- del etree, StringIO, BytesIO, copy, md
- # Function Parameters
- del dataset_path
- except KeyboardInterrupt:
- raise SystemExit
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def metadata_esri_report(dataset_path=""):
- try:
- # Imports
- from lxml import etree
- from io import StringIO, BytesIO
- import copy
- from arcpy import metadata as md
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
- print(f"Reporting on Esri XML for dataset: '{dataset_name}'")
- #print(f"\tDataset Location: {os.path.basename(os.path.dirname(dataset_path))}")
-
- dataset_md = md.Metadata(dataset_path)
- #dataset_md.synchronize("ALWAYS")
- #dataset_md.save()
- #dataset_md.reload()
- dataset_md_xml = dataset_md.xml
- del dataset_md
-
- # Parse the XML
- parser = etree.XMLParser(encoding='UTF-8', remove_blank_text=True)
- target_tree = etree.parse(StringIO(dataset_md_xml), parser=parser)
- target_root = target_tree.getroot()
- del parser, dataset_md_xml
-
- if target_root.find("Esri") is not None:
- Esri = target_root.xpath("./Esri")[0]
- _xml = '''
- ISO 19139 Metadata Implementation Specification GML3.2
- ISO19139
-
-
-
- '''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- # Merge Target wtih Source
- target_source_merge = xml_tree_merge(Esri, _root)
- #print(etree.tostring(target_source_merge, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- # Merge Source wtih Target
- source_target_merge = xml_tree_merge(target_source_merge, Esri)
- #print(etree.tostring(source_target_merge, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- Esri.getparent().replace(Esri, source_target_merge)
- del target_source_merge, source_target_merge
- del _root, _xml
- #print(etree.tostring(target_root.find("Esri"), encoding='UTF-8', method='xml', pretty_print=True).decode())
- del Esri
- else:
- pass
-
- # No changes needed below
- #print(etree.tostring(target_tree, encoding='UTF-8', method='xml', pretty_print=True).decode())
- etree.indent(target_root, space=' ')
- dataset_md_xml = etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
-
- SaveBackXml = True
- if SaveBackXml:
- dataset_md = md.Metadata(dataset_path)
- dataset_md.xml = dataset_md_xml
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- #dataset_md.reload()
- del dataset_md
- else:
- pass
- del SaveBackXml
- del dataset_md_xml
-
- # Declared Varaiables
- del dataset_name
- del target_tree, target_root
- # Imports
- del etree, StringIO, BytesIO, copy, md
- # Function Parameters
- del dataset_path
- except KeyboardInterrupt:
- raise SystemExit
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def metadata_dataidinfo_report(dataset_path=""):
- try:
- # Imports
- from lxml import etree
- from io import StringIO, BytesIO
- import copy
- from arcpy import metadata as md
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- import json
- json_path = rf"{project_folder}\dataIdInfo_dict.json"
- with open(json_path, "r") as json_file:
- dataIdInfo_dict = json.load(json_file)
- del json_file
- del json_path
- json_path = rf"{project_folder}\root_dict.json"
- with open(json_path, "r") as json_file:
- root_dict = json.load(json_file)
- del json_file
- del json_path
- del json
-
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
- print(f"Reporting on dataIdInfo XML for dataset: '{dataset_name}'")
- #print(f"\tDataset Location: {os.path.basename(os.path.dirname(dataset_path))}")
-
- dataset_md = md.Metadata(dataset_path)
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- dataset_md.reload()
- dataset_md_xml = dataset_md.xml
- del dataset_md
-
- # Parse the XML
- parser = etree.XMLParser(encoding='UTF-8', remove_blank_text=True)
- target_tree = etree.parse(StringIO(dataset_md_xml), parser=parser)
- target_root = target_tree.getroot()
- del parser, dataset_md_xml
-
- #target_root[:] = sorted(target_root, key=lambda x: root_dict[x.tag])
- #for child in target_root:
- # #print(child.tag)
- # #print(etree.tostring(child, encoding='UTF-8', method='xml', pretty_print=True).decode())
- # del child
- # Esri
- # dataIdInfo
- # dqInfo
- # distInfo
- # mdContact
- # mdLang
- # mdChar
- # mdDateSt
- # mdHrLv
- # mdHrLvName
- # mdFileID
- # mdMaint
- # refSysInfo
- # spatRepInfo
- # spdoinfo
- # eainfo
-
- refSysInfo = target_root.xpath("./refSysInfo")
- if len(refSysInfo) == 0:
- pass #print("missing")
- elif len(refSysInfo) == 1:
- pass #print(etree.tostring(target_root.xpath("./refSysInfo")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
- elif len(refSysInfo) > 1:
- pass #print("too many")
- else:
- pass
- del refSysInfo
-
- dqInfo = target_root.xpath("./dqInfo")
- if len(dqInfo) == 0:
- _xml = '''
-
-
-
-
-
- dataset
-
-
-
- '''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root.insert(root_dict["dqInfo"], _root)
- del _root, _xml
- else:
- pass
- del dqInfo
-
- mdHrLv = target_root.xpath("./mdHrLv")
- if len(mdHrLv) == 0:
- _xml = '''
-
-
- '''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root.insert(root_dict["mdHrLv"], _root)
- del _root, _xml
- else:
- pass
- del mdHrLv
-
- mdHrLvName = target_root.xpath("./mdHrLvName")
- if len(mdHrLvName) == 0:
- _xml = '''dataset'''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root.insert(root_dict["mdHrLvName"], _root)
- del _root, _xml
- else:
- pass
- del mdHrLvName
-
- fgdcGeoform = target_root.xpath("./dataIdInfo/idCitation/presForm/fgdcGeoform")
- if len(fgdcGeoform) == 0:
- _xml = '''document'''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root.xpath("./dataIdInfo/idCitation/presForm")[0].insert(dataIdInfo_dict["fgdcGeoform"], _root)
- del _root, _xml
- else:
- pass
- del fgdcGeoform
-
- #print(etree.tostring(target_root.xpath("./distInfo")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-
- distInfo = target_root.xpath("./distInfo")
- if len(distInfo) == 0:
- _xml = '''
-
- ESRI REST Service
-
- Uncompressed
-
-
-
- '''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root.xpath("./dataIdInfo/idCitation/presForm")[0].insert(dataIdInfo_dict["fgdcGeoform"], _root)
- del _root, _xml
- elif len(distInfo) == 1:
- formatVer = distInfo[0].xpath("./distFormat/formatVer")
- if len(formatVer) == 0:
- _xml = ''''''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root.xpath("./distInfo/distFormat")[0].insert(1, _root)
- del _root, _xml
- elif len(formatVer) == 1:
- pass
- elif len(formatVer) > 1:
- for i in range(1, len(formatVer)):
- formatVer[i].getparent().remove(formatVer[i])
- del i
- else:
- pass
- del formatVer
-
- fileDecmTech = distInfo[0].xpath("./distFormat/fileDecmTech")
- if len(fileDecmTech) == 0:
- _xml = ''''''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root.xpath("./distInfo/distFormat")[0].insert(2, _root)
- del _root, _xml
- elif len(fileDecmTech) == 1:
- pass
- elif len(fileDecmTech) > 1:
- for i in range(1, len(fileDecmTech)):
- fileDecmTech[i].getparent().remove(fileDecmTech[i])
- del i
- else:
- pass
- del fileDecmTech
-
- formatInfo = distInfo[0].xpath("./distFormat/formatInfo")
- if len(formatInfo) == 0:
- _xml = ''''''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root.xpath("./distInfo/distFormat")[0].insert(2, _root)
- del _root, _xml
- elif len(formatInfo) == 1:
- pass
- elif len(formatInfo) > 1:
- for i in range(1, len(formatInfo)):
- formatInfo[i].getparent().remove(formatInfo[i])
- del i
- else:
- pass
- del formatInfo
- else:
- pass
- del distInfo
-
- #print(etree.tostring(target_root.xpath("./mdHrLv")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
- #print(etree.tostring(target_root.xpath("./mdHrLvName")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
- #print(etree.tostring(target_root.xpath("./dqInfo/dqScope")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
- #print(etree.tostring(target_root.xpath("./dataIdInfo/idCitation/presForm")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
- #print(etree.tostring(target_root.xpath("./distInfo")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-
- #raise Exception
- mdHrLvName = target_root.xpath("./mdHrLvName")
- if len(mdHrLvName) == 0:
- _xml = '''dataset'''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root.insert(root_dict["mdHrLvName"], _root)
- del _root, _xml
- else:
- pass
- del mdHrLvName
-
- target_root.xpath("./dataIdInfo/envirDesc")[0].set('Sync', "TRUE")
- #target_root.xpath("./dqInfo/dqScope/scpLvl/ScopeCd")[0].set('value', "005")
- #target_root.xpath("./dqInfo/dqScope/scpLvl/ScopeCd")[0].set('Sync', "TRUE")
- mdHrLvName = target_root.xpath("./mdHrLvName")[0]
- ScopeCd = target_root.xpath("./dqInfo/dqScope/scpLvl/ScopeCd")[0]
- PresFormCd = target_root.xpath("./dataIdInfo/idCitation/presForm/PresFormCd")[0]
- fgdcGeoform = target_root.xpath("./dataIdInfo/idCitation/presForm/fgdcGeoform")[0]
- SpatRepTypCd = target_root.xpath("./dataIdInfo/spatRpType/SpatRepTypCd")[0]
- PresFormCd.set('Sync', "TRUE")
- #print("------" * 10)
- #print(etree.tostring(SpatRepTypCd, encoding='UTF-8', method='xml', pretty_print=True).decode())
- #print(etree.tostring(target_root.xpath("./dataIdInfo/idCitation/presForm")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
- #print(etree.tostring(target_root.xpath("./dqInfo/dqScope")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
- #print("------" * 10)
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- # SpatRepTypCd "Empty" "001" (vector) "002" (raster/grid) "003" (tabular)
- # ScopeCd "005" "005" "007"
- # PresFormCd "005" "003" "011"
- # fgdcGeoform "vector data" "raster data" "tabular data"
- # mdHrLvName "vector data" "raster data" "tabular data"
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- datasetSet = target_root.xpath("./dqInfo/dqScope/scpLvlDesc/datasetSet")
- if len(datasetSet) == 0:
- _xml = ''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- target_root.xpath("./dqInfo/dqScope")[0].insert(1, _root)
- del _root, _xml
- else:
- pass
- datasetSet = target_root.xpath("./dqInfo/dqScope/scpLvlDesc/datasetSet")[0]
- if SpatRepTypCd.get("value") == "001":
- ScopeCd.set('value', "005")
- PresFormCd.set("value", "005")
- fgdcGeoform.text = "vector digital data"
- datasetSet.text = "Vector Digital Data"
- mdHrLvName.text = "Vector Digital Data"
- elif SpatRepTypCd.get("value") == "002":
- ScopeCd.set('value', "005")
- PresFormCd.set("value", "003")
- fgdcGeoform.text = "raster digital data"
- datasetSet.text = "Raster Digital Data"
- mdHrLvName.text = "Raster Digital Data"
- elif SpatRepTypCd.get("value") == "003":
- ScopeCd.set('value', "007")
- PresFormCd.set("value", "011")
- fgdcGeoform.text = "tabular digital data"
- datasetSet.text = "Tabular Digital Data"
- mdHrLvName.text = "Tabular Digital Data"
- else:
- pass
- #print("------" * 10)
- #print(etree.tostring(SpatRepTypCd, encoding='UTF-8', method='xml', pretty_print=True).decode())
- #print(etree.tostring(target_root.xpath("./dataIdInfo/idCitation/presForm")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
- #print(etree.tostring(target_root.xpath("./dqInfo/dqScope")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
- #print("------" * 10)
- del datasetSet, SpatRepTypCd, fgdcGeoform, PresFormCd, ScopeCd, mdHrLvName
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- formatName = target_root.xpath("./distInfo/distFormat/formatName")[0]
- envirDesc = target_root.xpath("./dataIdInfo/envirDesc")[0]
- envirDesc.set('Sync', "TRUE")
- target_root.xpath("./distInfo/distFormat/fileDecmTech")[0].text = "Uncompressed"
- formatName.text = "ESRI REST Service"
- formatVer_text = str.rstrip(str.lstrip(envirDesc.text))
- formatVer = target_root.xpath("./distInfo/distFormat/formatVer")[0]
- formatVer.text = str.rstrip(str.lstrip(formatVer_text))
- del formatVer_text
- del envirDesc
- del formatVer
- del formatName
-
- xml_file = b'''
- external
- c66ffbb333c48d18d81856ec0e0c37ea752bff1a
- Melissa Ann Karp
- NMFS Office of Science and Technology
- Fisheries Science Coordinator
-
-
- 1315 East West Hwy
- Silver Spring
- MD
- 20910-3282
- melissa.karp@noaa.gov
- US
-
-
- 301-427-8202
- 301-713-4137
-
- 0700 - 1800 EST/EDT
-
- https://www.fisheries.noaa.gov/about/office-science-and-technology
- REST Service
- NMFS Office of Science and Technology
- NOAA Fisheries Office of Science and Technology
-
-
-
-
-
- Melissa Ann Karp
- True
-
-
-
-
- '''
- _tree = etree.parse(BytesIO(xml_file), etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- _root = _tree.getroot()
- idPoC = target_root.xpath(f"./dataIdInfo/idPoC")
- if len(idPoC) == 0:
- target_root.xpath(f"./dataIdInfo")[0].insert(dataIdInfo_dict["idPoC"], _root)
- elif len(idPoC) == 1:
- idPoC[0].getparent().replace(idPoC[0], _root)
- else:
- pass
- del _root, _tree, xml_file
- #print(f"\n\t{etree.tostring(target_root.xpath(f'./dataIdInfo/idPoC')[0], encoding='UTF-8', method='xml', pretty_print=True).decode()}\n")
- del idPoC
-
- xml_file = b'''
- external
- 579ce2e21b888ac8f6ac1dac30f04cddec7a0d7c
- NMFS Office of Science and Technology
- NMFS Office of Science and Technology
- GIS App Developer
-
-
- 1315 East West Highway
- Silver Spring
- MD
- 20910-3282
- US
- tim.haverland@noaa.gov
-
-
- 301-427-8137
- 301-713-4137
-
- 0700 - 1800 EST/EDT
-
- https://www.fisheries.noaa.gov/about/office-science-and-technology
- REST Service
- NMFS Office of Science and Technology
- NOAA Fisheries Office of Science and Technology
-
-
-
-
-
- NMFS Office of Science and Technology (Distributor)
- True
-
-
-
-
- '''
- _tree = etree.parse(BytesIO(xml_file), etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- _root = _tree.getroot()
- citRespParty = target_root.xpath(f"./dataIdInfo/idCitation/citRespParty")
- if len(citRespParty) == 0:
- target_root.xpath(f"./dataIdInfo/idCitation")[0].insert(dataIdInfo_dict["citRespParty"], _root)
- elif len(citRespParty) == 1:
- citRespParty[0].getparent().replace(citRespParty[0], _root)
- else:
- pass
- del _root, _tree, xml_file
- #print(f"\n\t{etree.tostring(target_root.xpath(f'./dataIdInfo/idCitation/citRespParty')[0], encoding='UTF-8', method='xml', pretty_print=True).decode()}\n")
- del citRespParty
-
- resConst = target_root.xpath("./dataIdInfo/resConst")
- if len(resConst) == 1:
- xml_file = b'''
-
-
-
-
-
-
-
- Data License: CC0-1.0
-Data License URL: https://creativecommons.org/publicdomain/zero/1.0/
-Data License Statement: These data were produced by NOAA and are not subject to copyright protection in the United States. NOAA waives any potential copyright and related rights in these data worldwide through the Creative Commons Zero 1.0 Universal Public Domain Dedication (CC0-1.0).
-
-
-
-
-
-
- FISMA Low
-
-
- <DIV STYLE="text-align:Left;"><DIV><DIV><P><SPAN>***No Warranty*** The user assumes the entire risk related to its use of these data. NMFS is providing these data 'as is' and NMFS disclaims any and all warranties, whether express or implied, including (without limitation) any implied warranties of merchantability or fitness for a particular purpose. No warranty expressed or implied is made regarding the accuracy or utility of the data on any other system or for general or scientific purposes, nor shall the act of distribution constitute any such warranty. It is strongly recommended that careful attention be paid to the contents of the metadata file associated with these data to evaluate dataset limitations, restrictions or intended use. In no event will NMFS be liable to you or to any third party for any direct, indirect, incidental, consequential, special or exemplary damages or lost profit resulting from any use or misuse of these data.</SPAN></P></DIV></DIV></DIV>
-
- '''
- _tree = etree.parse(BytesIO(xml_file), etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- _root = _tree.getroot()
- resConst[0].getparent().replace(resConst[0], _root)
- del _root, _tree, xml_file
- else:
- pass
- del resConst
-
- dataIdInfo = target_root.xpath("./dataIdInfo")
- for data_Id_Info in dataIdInfo:
- data_Id_Info[:] = sorted(data_Id_Info, key=lambda x: dataIdInfo_dict[x.tag])
- #print(etree.tostring(data_Id_Info, encoding='UTF-8', method='xml', pretty_print=True).decode())
- del data_Id_Info
- del dataIdInfo
-
- # No changes needed below
- #print(etree.tostring(target_tree, encoding='UTF-8', method='xml', pretty_print=True).decode())
- etree.indent(target_root, space=' ')
- dataset_md_xml = etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
-
- SaveBackXml = True
- if SaveBackXml:
- dataset_md = md.Metadata(dataset_path)
- dataset_md.xml = dataset_md_xml
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- #dataset_md.reload()
- del dataset_md
- else:
- pass
- del SaveBackXml
- del dataset_md_xml
-
- # Declared Varaiables
- del dataset_name
- del dataIdInfo_dict, root_dict
- del target_tree, target_root
- # Imports
- del etree, StringIO, BytesIO, copy, md
- # Function Parameters
- del dataset_path
- except KeyboardInterrupt:
- raise SystemExit
- except:
- traceback.print_exc()
- raise SystemExit
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk:
- print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##")
- del rk
- return True
- finally:
- pass
-
-def metadata_dq_info_report(dataset_path=""):
- try:
- # Imports
- from lxml import etree
- from io import StringIO, BytesIO
- import copy
- from arcpy import metadata as md
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- import json
- json_path = rf"{project_folder}\dqInfo_dict.json"
- with open(json_path, "r") as json_file:
- dqInfo_dict = json.load(json_file)
- del json_file
- del json_path
- del json
-
- export_folder = rf"{os.path.dirname(os.path.dirname(dataset_path))}\Export"
-
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
- print(f"Reporting on dqInfo XML for dataset: '{dataset_name}'")
- #print(f"\tDataset Location: {os.path.basename(os.path.dirname(dataset_path))}")
-
- dataset_md = md.Metadata(dataset_path)
- #dataset_md.synchronize("ALWAYS")
- #dataset_md.save()
- #dataset_md.reload()
- dataset_md_xml = dataset_md.xml
- del dataset_md
-
- # Parse the XML
- parser = etree.XMLParser(encoding='UTF-8', remove_blank_text=True)
- target_tree = etree.parse(StringIO(dataset_md_xml), parser=parser)
- target_root = target_tree.getroot()
- del parser, dataset_md_xml
-
- # dqInfo
- dqInfo = target_root.xpath("./dqInfo")[0]
- dqInfo[:] = sorted(dqInfo, key=lambda x: dqInfo_dict[x.tag])
- #print(etree.tostring(dqInfo, encoding='UTF-8', method='xml', pretty_print=True).decode())
-
- #target_root[:] = sorted(target_root, key=lambda x: dqInfo_dict[x.tag])
- #for child in target_root:
- # #print(child.tag)
- # #print(etree.tostring(child, encoding='UTF-8', method='xml', pretty_print=True).decode())
- # del child
- # Esri
- # dataIdInfo
- # dqInfo
- # distInfo
- # mdContact
- # mdLang
- # mdChar
- # mdDateSt
- # mdHrLv
- # mdHrLvName
- # mdFileID
- # mdMaint
- # refSysInfo
- # spatRepInfo
- # spdoinfo
- # eainfo
-
- _report = target_root.xpath(f"./dqInfo/report[@type='DQConcConsis']")
- if len(_report) == 1:
- _xml = '''
- Based on a review from DisMAP Team all necessary features are present.
-
-
-
- Conceptual Consistency Report
-
- NMFS OST DisMAP
-
-
-
-
-
-
- Based on a review from DisMAP Team all necessary features are present.
- 1
-
-
- '''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- #print(f"{etree.tostring(_root, encoding='UTF-8', method='xml', pretty_print=True).decode()}")
- #raise SystemExit
- _report[0].getparent().replace(_report[0], _root)
- del _root, _xml
- else:
- pass
- del _report
-
- _report = target_root.xpath(f"./dqInfo/report[@type='DQCompOm']")
- if len(_report) == 1:
- _xml = '''
- Based on a review from DisMAP Team all necessary features are present.
-
-
-
- Completeness Report
-
- NMFS OST DisMAP
-
-
-
-
-
-
- Based on a review from DisMAP Team all necessary features are present.
- 1
-
-
- '''
- _root = etree.XML(_xml, etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- _report[0].getparent().replace(_report[0], _root)
- del _root, _xml
- else:
- pass
- del _report
-
- dqInfo = target_root.xpath("./dqInfo")
- #print(len(dqInfo))
- for dq_Info in dqInfo:
- dq_Info[:] = sorted(dq_Info, key=lambda x: dqInfo_dict[x.tag])
- #print(etree.tostring(dq_Info, encoding='UTF-8', method='xml', pretty_print=True).decode())
- del dq_Info
- del dqInfo
-
- #print(len(target_root.xpath("./dqInfo")))
- for i in range(1, len(target_root.xpath("./dqInfo"))):
- dq_Info = target_root.xpath("./dqInfo")[i] #.write(rf"{export_folder}\{os.path.basename(dataset_path)} dqInfo.xml", encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
- # Writing to a new file
- file = open(rf"{export_folder}\{os.path.basename(dataset_path)} dqInfo.xml", "w")
- file.write(etree.tostring(dq_Info, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- file.close()
- del file
- dq_Info.getparent().remove(dq_Info)
- del dq_Info
- del i
-
- # No changes needed below
- #print(etree.tostring(target_tree, encoding='UTF-8', method='xml', pretty_print=True).decode())
- etree.indent(target_root, space=' ')
- dataset_md_xml = etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
-
- SaveBackXml = True
- if SaveBackXml:
- dataset_md = md.Metadata(dataset_path)
- dataset_md.xml = dataset_md_xml
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- #dataset_md.reload()
- del dataset_md
- else:
- pass
- del SaveBackXml
- del dataset_md_xml
-
- # Declared Varaiables
- del export_folder
- del dataset_name
- del dqInfo_dict
- del target_tree, target_root
- # Imports
- del etree, StringIO, BytesIO, copy, md
- # Function Parameters
- del dataset_path
- except KeyboardInterrupt:
- raise SystemExit
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def metadata_dist_info_report(dataset_path=""):
- try:
- # Imports
- from lxml import etree
- from io import StringIO, BytesIO
- import copy
- from arcpy import metadata as md
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- import json
- json_path = rf"{project_folder}\distInfo_dict.json"
- with open(json_path, "r") as json_file:
- distInfo_dict = json.load(json_file)
- del json_file
- del json_path
- del json
-
- project = os.path.basename(os.path.dirname(os.path.dirname(dataset_path)))
- export_folder = rf"{os.path.dirname(os.path.dirname(dataset_path))}\Export"
-
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
- print(f"Reporting on distInfo XML for dataset: '{dataset_name}'")
- #print(f"\tDataset Location: {os.path.basename(os.path.dirname(dataset_path))}")
-
- dataset_md = md.Metadata(dataset_path)
- #dataset_md.synchronize("ALWAYS")
- #dataset_md.save()
- #dataset_md.reload()
- dataset_md_xml = dataset_md.xml
- del dataset_md
-
- # Parse the XML
- parser = etree.XMLParser(encoding='UTF-8', remove_blank_text=True)
- target_tree = etree.parse(StringIO(dataset_md_xml), parser=parser)
- target_root = target_tree.getroot()
- del parser, dataset_md_xml
-
- #target_root[:] = sorted(target_root, key=lambda x: distInfo_dict[x.tag])
- #for child in target_root:
- # #print(child.tag)
- # #print(etree.tostring(child, encoding='UTF-8', method='xml', pretty_print=True).decode())
- # del child
- # Esri
- # dataIdInfo
- # dqInfo
- # distInfo
- # mdContact
- # mdLang
- # mdChar
- # mdDateSt
- # mdHrLv
- # mdHrLvName
- # mdFileID
- # mdMaint
- # refSysInfo
- # spatRepInfo
- # spdoinfo
- # eainfo
-
- distorTran = target_root.xpath("//distorTran")
- for _distorTran in distorTran:
- _distorTran.tag = "distTranOps"
- del _distorTran
- del distorTran
-
-## target_root.xpath("./distInfo/distFormat/formatName")[0].set('Sync', "FALSE")
-## target_root.xpath("./dataIdInfo/envirDesc")[0].set('Sync', "TRUE")
-## #target_root.xpath("./dqInfo/dqScope/scpLvl/ScopeCd")[0].set('value', "005")
-## PresFormCd = target_root.xpath("./dataIdInfo/idCitation/presForm/PresFormCd")[0]
-## fgdcGeoform = target_root.xpath("./dataIdInfo/idCitation/presForm/fgdcGeoform")[0]
-## SpatRepTypCd = target_root.xpath("./dataIdInfo/spatRpType/SpatRepTypCd")[0]
-## PresFormCd.set('Sync', "TRUE")
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # SpatRepTypCd "Empty" "001" (vector) "002" (raster/grid) "003" (tabular)
-## # PresFormCd "005" "003" "011"
-## # fgdcGeoform "vector data" "raster data" "tabular data"
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## datasetSet = target_root.xpath("./dqInfo/dqScope/scpLvlDesc/datasetSet")[0]
-## if SpatRepTypCd.get("value") == "001":
-## PresFormCd.set("value", "005")
-## fgdcGeoform.text = "vector digital data"
-## datasetSet.text = "Vector Digital Data"
-## elif SpatRepTypCd.get("value") == "002":
-## PresFormCd.set("value", "003")
-## fgdcGeoform.text = "raster digital data"
-## datasetSet.text = "Raster Digital Data"
-## elif SpatRepTypCd.get("value") == "003":
-## PresFormCd.set("value", "011")
-## fgdcGeoform.text = "tabular digital data"
-## datasetSet.text = "Tabular Digital Data"
-## else:
-## pass
-## #print("------" * 10)
-## #print(etree.tostring(SpatRepTypCd, encoding='UTF-8', method='xml', pretty_print=True).decode())
-## #print(etree.tostring(target_root.xpath("./dataIdInfo/idCitation/presForm")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## #print(etree.tostring(target_root.xpath("./dqInfo/dqScope")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-## #print("------" * 10)
-## del datasetSet, SpatRepTypCd, fgdcGeoform, PresFormCd
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-## formatName = target_root.xpath("./distInfo/distFormat/formatName")[0]
-## envirDesc = target_root.xpath("./dataIdInfo/envirDesc")[0]
-## envirDesc.set('Sync', "TRUE")
-## target_root.xpath("./distInfo/distFormat/fileDecmTech")[0].text = "Uncompressed"
-## formatName.text = "ESRI REST Service"
-## formatVer_text = str.rstrip(str.lstrip(envirDesc.text))
-## formatVer = target_root.xpath("./distInfo/distFormat/formatVer")[0]
-## formatVer.text = str.rstrip(str.lstrip(formatVer_text))
-## del formatVer_text
-## del envirDesc
-## del formatVer
-## del formatName
-
- xml_file = b'''
-
- external
- 579ce2e21b888ac8f6ac1dac30f04cddec7a0d7c
- NMFS Office of Science and Technology
- NMFS Office of Science and Technology
- GIS App Developer
-
-
- 1315 East West Highway
- Silver Spring
- MD
- 20910-3282
- US
- tim.haverland@noaa.gov
-
-
- 301-427-8137
- 301-713-4137
-
- 0700 - 1800 EST/EDT
-
- https://www.fisheries.noaa.gov/about/office-science-and-technology
- REST Service
- NMFS Office of Science and Technology
- NOAA Fisheries Office of Science and Technology
-
-
-
-
-
- NMFS Office of Science and Technology (Distributor)
- True
-
-
-
-
-
- '''
- _tree = etree.parse(BytesIO(xml_file), etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- _root = _tree.getroot()
- distributor = target_root.xpath(f"./distInfo/distributor")
- if len(distributor) == 0:
- target_root.xpath(f"./distInfo")[0].insert(distInfo_dict["distributor"], _root)
- elif len(distributor) == 1:
- distributor[0].getparent().replace(distributor[0], _root)
- else:
- pass
- del _root, _tree, xml_file
- #print(f"\n\t{etree.tostring(target_root.xpath(f'./distInfo/distributor')[0], encoding='UTF-8', method='xml', pretty_print=True).decode()}\n")
- del distributor
-
-## new_item_name = target_root.find("./Esri/DataProperties/itemProps/itemName").text
-## new_item_name = new_item_name.replace("IDW_Sample_Locations", "Sample_Locations") if "Sample_Locations" in new_item_name else new_item_name
-## onLineSrcs = target_root.findall("./distInfo/distTranOps/onLineSrc")
-## for onLineSrc in onLineSrcs:
-## if onLineSrc.find('./protocol').text == "ESRI REST Service":
-## old_linkage_element = onLineSrc.find('./linkage')
-## old_linkage = old_linkage_element.text
-## #print(old_linkage, flush=True)
-## old_item_name = old_linkage[old_linkage.find("/services/")+len("/services/"):old_linkage.find("/FeatureServer")]
-## new_linkage = old_linkage.replace(old_item_name, f"{new_item_name}_{date_code(project)}")
-## #print(new_linkage, flush=True)
-## old_linkage_element.text = new_linkage
-## #print(old_linkage_element.text, flush=True)
-## del old_linkage_element
-## del old_item_name, old_linkage, new_linkage
-## else:
-## pass
-## del onLineSrc
-## del onLineSrcs, new_item_name
-## #print(etree.tostring(target_root.xpath("./distInfo")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
-
- new_item_name = target_root.find("./Esri/DataProperties/itemProps/itemName").text
- if "Sample_Locations" in new_item_name:
- _new_item_name = new_item_name.replace("IDW_Sample_Locations", "Sample_Locations") if "Sample_Locations" in new_item_name else new_item_name
- onLineSrcs = target_root.findall("./distInfo/distTranOps/onLineSrc")
- for onLineSrc in onLineSrcs:
- onLineSrc.find('./protocol').text = "ESRI REST Service"
- old_linkage_element = onLineSrc.find('./linkage')
- old_linkage = old_linkage_element.text
- #print(old_linkage, flush=True)
- old_item_name = old_linkage[old_linkage.find("/services/")+len("/services/"):old_linkage.find("/FeatureServer")]
- if old_item_name != f"{_new_item_name}_{date_code(project)}":
- #print('remove')
- onLineSrc.getparent().remove(onLineSrc)
- else:
- pass
- #print(old_item_name, f"{_new_item_name}_{date_code(project)}")
- #new_linkage = old_linkage.replace(old_item_name, f"{_new_item_name}_{date_code(project)}")
- #print(new_linkage, flush=True)
- #old_linkage_element.text = new_linkage
- #print(old_linkage_element.text, flush=True)
- del old_linkage_element
- del old_item_name, old_linkage #, new_linkage
- #print(etree.tostring(onLineSrc, encoding='UTF-8', method='xml', pretty_print=True).decode())
- #if onLineSrc.find('./protocol').text == "ESRI REST Service":
- # old_linkage_element = onLineSrc.find('./linkage')
- # old_linkage = old_linkage_element.text
- # #print(old_linkage, flush=True)
- # old_item_name = old_linkage[old_linkage.find("/services/")+len("/services/"):old_linkage.find("/FeatureServer")]
- # new_linkage = old_linkage.replace(old_item_name, f"{new_item_name}_{date_code(project)}")
- # #print(new_linkage, flush=True)
- # old_linkage_element.text = new_linkage
- # #print(old_linkage_element.text, flush=True)
- # del old_linkage_element
- # del old_item_name, old_linkage, new_linkage
- #else:
- # pass
- del onLineSrc
- #print(_new_item_name)
- del onLineSrcs, _new_item_name
- else:
- pass
- #print(etree.tostring(target_root.xpath("./distInfo")[0], encoding='UTF-8', method='xml', pretty_print=True).decode())
- #print(new_item_name)
- del new_item_name
-
- distInfo = target_root.xpath("./distInfo")
- #print(len(distInfo))
- for dist_Info in distInfo:
- dist_Info[:] = sorted(dist_Info, key=lambda x: distInfo_dict[x.tag])
- #print(etree.tostring(dist_Info, encoding='UTF-8', method='xml', pretty_print=True).decode())
- del dist_Info
- del distInfo
-
- # No changes needed below
- #print(etree.tostring(target_tree, encoding='UTF-8', method='xml', pretty_print=True).decode())
- etree.indent(target_root, space=' ')
- dataset_md_xml = etree.tostring(target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
-
- SaveBackXml = True
- if SaveBackXml:
- dataset_md = md.Metadata(dataset_path)
- dataset_md.xml = dataset_md_xml
- dataset_md.save()
- dataset_md.synchronize("ALWAYS")
- dataset_md.save()
- #dataset_md.reload()
- del dataset_md
- else:
- pass
- del SaveBackXml
- del dataset_md_xml
-
- # Declared Varaiables
- del export_folder, project
- del dataset_name
- del distInfo_dict
- del target_tree, target_root
- # Imports
- del etree, StringIO, BytesIO, copy, md
- # Function Parameters
- del dataset_path
- except KeyboardInterrupt:
- raise SystemExit
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def main(project_gdb=""):
- try:
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- print(f"{'-' * 80}")
- print(f"Python Script: {os.path.basename(__file__)}")
- print(f"Location: ..\Documents\ArcGIS\Projects\..\{os.path.basename(os.path.dirname(__file__))}\{os.path.basename(__file__)}")
- print(f"Python Version: {sys.version}")
- print(f"Environment: {os.path.basename(sys.exec_prefix)}")
- print(f"{'-' * 80}\n")
-
- #Imports
- from lxml import etree
- from io import StringIO, BytesIO
- #import copy
- #import arcpy
- from arcpy import metadata as md
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- # Test if passed workspace exists, if not raise SystemExit
- if not arcpy.Exists(project_gdb):
- print(f"{os.path.basename(project_gdb)} is missing!!")
- print(f"{project_gdb}")
-
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = rf"{project_folder}\Scratch"
- #print(project_folder)
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = rf"{scratch_folder}\scratch.gdb"
-
- #metadata_dictionary = dataset_title_dict(project_gdb)
- #for key in metadata_dictionary:
- # print(key, metadata_dictionary[key])
- # del key
-
- datasets = list()
- walk = arcpy.da.Walk(arcpy.env.workspace)
- for dirpath, dirnames, filenames in walk:
- for filename in filenames:
- datasets.append(os.path.join(dirpath, filename))
- del filename
- del dirpath, dirnames, filenames
- del walk
-
- del scratch_folder, project_folder
-
- print(f"Processing: {os.path.basename(arcpy.env.workspace)} in the '{inspect.stack()[0][3]}' function")
-
- # Points
- #for dataset_path in sorted([ds for ds in datasets if ds.endswith("AI_Sample_Locations") or ds.endswith("AI_IDW_Sample_Locations")]):
- #for dataset_path in sorted([ds for ds in datasets if ds.endswith("_Sample_Locations")]):
- #for dataset_path in sorted([ds for ds in datasets if ds.endswith("EBS_Sample_Locations") or ds.endswith("EBS_IDW_Sample_Locations")]):
- # Polylines
- #for dataset_path in sorted([ds for ds in datasets if ds.endswith("AI_Boundary") or ds.endswith("AI_IDW_Boundary")]):
- # Polygons
- #for dataset_path in sorted([ds for ds in datasets if ds.endswith("AI_Region") or ds.endswith("AI_IDW_Region")]):
- # Table
- #for dataset_path in sorted([ds for ds in datasets if ds.endswith("AI_Indicators") or ds.endswith("AI_IDW_Indicators")]):
- #for dataset_path in sorted([ds for ds in datasets if ds.endswith("Indicators")]):
- # Raster
- #for dataset_path in sorted([ds for ds in datasets if ds.endswith("AI_Bathymetry") or ds.endswith("AI_IDW_Bathymetry")]):
- #for dataset_path in sorted([ds for ds in datasets if ds.endswith("AI_Raster_Mask") or ds.endswith("AI_IDW_Raster_Mask")]):
- #for dataset_path in sorted([ds for ds in datasets if ds.endswith("AI_Raster_Mosaic") or ds.endswith("AI_IDW_Mosaic")]):
- #for dataset_path in sorted([ds for ds in datasets if any (ds.endswith(d) for d in ["Datasets", "AI_IDW_Extent_Points", "AI_IDW_Latitude", "AI_IDW_Raster_Mask"])]):
- #for dataset_path in sorted([ds for ds in datasets if "AI_IDW" in os.path.basename(ds)]):
- #for dataset_path in sorted([ds for ds in datasets if "EBS_IDW" in os.path.basename(ds)]):
- #for dataset_path in sorted([ds for ds in datasets if any (ds.endswith(d) for d in ["Species_Filer", "EBS_IDW_Extent_Points", "EBS_IDW_Latitude", "EBS_IDW_Raster_Mask"])]):
- #for dataset_path in sorted([ds for ds in datasets if any (ds.endswith(d) for d in ['SpeciesPersistenceIndicatorNetWTCPUE', 'SpeciesPersistenceIndicatorPercentileWTCPUE', 'Species_Filter', 'DisMAP_Survey_Info'])]):
- for dataset_path in sorted([ds for ds in datasets if any (ds.endswith(d) for d in ['Species_Filter'])]):
-
- # ALL
- #for dataset_path in sorted(datasets):
- #dataset_name = os.path.basename(dataset_path)
- #print(f"Dataset: '{dataset_name}'\n\tType: '{arcpy.Describe(dataset_path).datasetType}'")
- #del dataset_name
-
- ImportBasicTemplateXml = True
- if ImportBasicTemplateXml:
- import_basic_template_xml(dataset_path)
- else:
- pass
- del ImportBasicTemplateXml
-
- BasicMetadataReport = False # Just a report
- if BasicMetadataReport:
- basic_metadata_report(dataset_path)
- else:
- pass
- del BasicMetadataReport
-
- MetadataEsriReport = False
- if MetadataEsriReport:
- metadata_esri_report(dataset_path)
- else:
- pass
- del MetadataEsriReport
-
- MetadataDataIdInfoReport = False
- if MetadataDataIdInfoReport:
- metadata_dataidinfo_report(dataset_path)
- else:
- pass
- del MetadataDataIdInfoReport
-
- MetadataDqInfoReport = False
- if MetadataDqInfoReport:
- metadata_dq_info_report(dataset_path)
- else:
- pass
- del MetadataDqInfoReport
-
- MetadataDistInfoReport = False
- if MetadataDistInfoReport:
- metadata_dist_info_report(dataset_path)
- else:
- pass
- del MetadataDistInfoReport
-
- UpdateEaInfoXmlElements = False
- if UpdateEaInfoXmlElements:
- update_eainfo_xml_elements(dataset_path)
- else:
- pass
- del UpdateEaInfoXmlElements
-
- AddUpdateDates = False
- if AddUpdateDates:
- add_update_dates(dataset_path)
- else:
- pass
- del AddUpdateDates
-
- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
- # A keeper. Adds entity attribute details, if missing
- InsertMissingElements = False
- if InsertMissingElements:
- insert_missing_elements(dataset_path)
- else:
- pass
- del InsertMissingElements
-
- AddUpdateContacts = False
- if AddUpdateContacts:
- add_update_contacts(dataset_path=dataset_path)
- else:
- pass
- del AddUpdateContacts
-
- CreateFeatureClassLayers = False
- if CreateFeatureClassLayers:
- create_feature_class_layers(dataset_path=dataset_path)
- else:
- pass
- del CreateFeatureClassLayers
-
- PrintTargetTree = False
- if PrintTargetTree:
- dataset_md = md.Metadata(dataset_path)
- #dataset_md.synchronize("ALWAYS")
- #dataset_md.save()
- #dataset_md.reload()
- # Parse the XML
- export_folder = rf"{os.path.dirname(os.path.dirname(dataset_path))}\Export"
- #print(export_folder)
- #_target_tree = etree.parse(StringIO(dataset_md.xml), parser=etree.XMLParser(encoding='UTF-8', remove_blank_text=True))
- #etree.indent(_target_tree, " ")
- #_target_tree.write(rf"{export_folder}\{os.path.basename(dataset_path)}.xml", encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True)
- #print(etree.tostring(_target_tree, encoding='UTF-8', method='xml', xml_declaration=True, pretty_print=True).decode())
- #del _target_tree
- dataset_md.saveAsXML(rf"{export_folder}\{os.path.basename(dataset_path)}.xml", "TEMPLATE")
- del export_folder
- del dataset_md
- else:
- pass
- del PrintTargetTree
- del dataset_path
-
- CompactGDB = False
- if CompactGDB:
- print(f"Compact GDB")
- arcpy.management.Compact(project_gdb)
- print("\t"+arcpy.GetMessages().replace("\n", "\n\t")+"\n")
- else:
- pass
- del CompactGDB
-
- # Declared Varaiables
- del datasets
- # Imports
- del etree, StringIO, BytesIO, md
- # Function Parameters
- del project_gdb
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- print(f"\n{'-' * 80}")
- print(f"Python script: {os.path.basename(__file__)}\nCompleted: {strftime('%a %b %d %I:%M %p', localtime())}")
- print(u"Elapsed Time {0} (H:M:S)".format(strftime("%H:%M:%S", gmtime(elapse_time))))
- print(f"{'-' * 80}")
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
- except KeyboardInterrupt:
- raise SystemExit
- except Exception:
- raise SystemExit
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-if __name__ == '__main__':
- try:
- # Append the location of this scrip to the System Path
- sys.path.append(os.path.dirname(os.path.dirname(__file__)))
- # Imports
- base_project_folder = rf"{os.path.dirname(os.path.dirname(__file__))}"
- #project_name = "April 1 2023"
- #project_name = "July 1 2024"
- project_name = "December 1 2024"
- #project_name = "June 1 2025"
- project_folder = rf"{base_project_folder}\{project_name}"
- project_gdb = rf"{project_folder}\{project_name}.gdb"
-
- main(project_gdb=project_gdb)
-
- # Declared Variables
- #del collective_title
- del project_gdb, project_name, project_folder, base_project_folder
- # Imports
- except:
- traceback.print_exc()
- else:
- pass
- finally:
- pass
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools_dev/dev_export_arcgis_metadata.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools_dev/dev_export_arcgis_metadata.py
deleted file mode 100644
index 86a4184..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools_dev/dev_export_arcgis_metadata.py
+++ /dev/null
@@ -1,180 +0,0 @@
-"""
-This module contains . . .
-
-Requires : Python 3.11
- ArcGIS Pro 3.x
-
-Copyright 2025 NMFS
-Licensed under the Apache License, Version 2.0 (the 'License');
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an 'AS IS' BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-"""
-# Python Built-in's modules are loaded first
-import os, sys
-import traceback, inspect
-
-def export_metadata(project_gdb="", metadata_workspace=""):
- try:
- # Imports
- # Third-party modules are loaded second
- import arcpy
- from arcpy import metadata as md
- import dev_create_folders
-
- # Project modules
- from src.project_tools import pretty_format_xml_file
-
- # Use all of the cores on the machine
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.env.overwriteOutput = True
-
- # Define variables
- project_folder = os.path.dirname(project_gdb)
- scratch_folder = rf"{project_folder}\Scratch"
- scratch_gdb = rf"{scratch_folder}\scratch.gdb"
-
- # Set the workspace environment to local file geodatabase
- arcpy.env.workspace = project_gdb
- # Set the scratchWorkspace environment to local file geodatabase
- arcpy.env.scratchWorkspace = scratch_gdb
-
- # Clean-up variables
- del scratch_folder, scratch_gdb
-
- print(f"\n{'--Start' * 10}--\n")
-
- if not os.path.isdir(rf"{project_folder}\{metadata_workspace}"):
- dev_create_folders.create_folders(project_folder, [metadata_workspace])
-
- fcs = arcpy.ListFeatureClasses()
-
- print(f"Synchronize and export feature classes metadata from Project GDB\n")
- for fc in sorted(fcs):
- print(f"Exporting the metadata record for: '{fc}'")
-
- fc_path = rf"{project_gdb}\{fc}"
-
- export_xml_metadata_path = rf"{project_folder}\{metadata_workspace}\{fc}.xml"
-
- dataset_md = md.Metadata(fc_path)
- dataset_md.synchronize("ALWAYS")
- dataset_md.title = fc
- dataset_md.save()
- dataset_md.reload()
- dataset_md.saveAsXML(export_xml_metadata_path, "REMOVE_ALL_SENSITIVE_INFO")
- #if dataset_md.thumbnailUri:
- # arcpy.management.Copy(dataset_md.thumbnailUri, rf"{metadata_workspace}\{fc} Thumbnail.jpg")
- # arcpy.management.Copy(dataset_md.thumbnailUri, rf"{metadata_workspace}\{fc} Browse Graphic.jpg")
-
- del dataset_md
-
- if os.path.isfile(export_xml_metadata_path):
- pretty_format_xml_file(export_xml_metadata_path)
- else:
- print(F"Problem with '{os.path.basename(export_xml_metadata_path)}'")
-
- del export_xml_metadata_path
- del fc, fc_path
-
- del fcs
- del project_folder
-
- print(f"\n{'--End' * 10}--")
-
- # Imports
- del md, pretty_format_xml_file, dev_create_folders
- # Function parameters
- del project_gdb, metadata_workspace
-
- except:
- traceback.print_exc()
- else:
- # Cleanup
- arcpy.management.ClearWorkspaceCache()
- # Imports
- del arcpy
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-def main(project_gdb="", metadata_workspace=""):
- try:
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- print(f"{'-' * 80}")
- print(f"Python Script: {os.path.basename(__file__)}")
- print(f"Location: {os.path.dirname(__file__)}")
- print(f"Python Version: {sys.version} Environment: {os.path.basename(sys.exec_prefix)}")
- print(f"{'-' * 80}\n")
-
- export_metadata(project_gdb=project_gdb, metadata_workspace=metadata_workspace)
-
- # Declared Variables
-
- # Function parameters
- del project_gdb, metadata_workspace
-
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
- print(f"\n{'-' * 80}")
- print(f"Python script: {os.path.basename(__file__)} successfully completed {strftime('%a %b %d %I:%M %p', localtime())}")
- print(u"Elapsed Time {0} (H:M:S)".format(strftime("%H:%M:%S", gmtime(elapse_time))))
- print(f"{'-' * 80}")
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-if __name__ == '__main__':
- try:
- # Imports
- from datetime import date
-
- # Append the location of this scrip to the System Path
- #sys.path.append(os.path.dirname(__file__))
- sys.path.append(os.path.dirname(os.path.dirname(__file__)))
-
- today = date.today()
- date_string = today.strftime("%Y-%m-%d")
-
- project_folder = rf"{os.path.dirname(os.path.dirname(__file__))}"
- project_name = "National Mapper"
- #project_name = "NMFS_ESA_Range"
- project_gdb = rf"{project_folder}\{project_name}.gdb"
- metadata_workspace = f"Export"
- #metadata_workspace = f"Export {date_string}"
- #metadata_workspace = f"Export 2025-01-27"
-
- main(project_gdb=project_gdb, metadata_workspace=metadata_workspace)
-
- # Declared Variables
- del project_folder, project_name, project_gdb, metadata_workspace
- del today, date_string
- # Imports
- del date
-
- except:
- traceback.print_exc()
- else:
- pass
- finally:
- pass
\ No newline at end of file
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools_dev/dev_zip_and_unzip_csv_data.py b/ArcGIS-Analysis-Python/Scripts/dismap_tools_dev/dev_zip_and_unzip_csv_data.py
deleted file mode 100644
index b94c62b..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools_dev/dev_zip_and_unzip_csv_data.py
+++ /dev/null
@@ -1,207 +0,0 @@
-# -*- coding: utf-8 -*-
-#-------------------------------------------------------------------------------
-# Name: zip_and_unzip_csv_data
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 09/03/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-#-------------------------------------------------------------------------------
-import os, sys # built-ins first
-import traceback
-import importlib
-import inspect
-
-import arcpy # third-parties second
-
-def zip_data(source_folder, selected_files, out_zip_file):
- try:
- # Imports
- import copy
- from zipfile import ZipFile
-
- os.chdir(source_folder)
-
- print(f"Zipping up files into: '{os.path.basename(out_zip_file)}'")
-
- selected_files = selected_files.split(";")
-
- source_files = [f for f in os.listdir(source_folder) if f in selected_files]
- with ZipFile(out_zip_file, mode="w") as archive:
- for source_file in source_files:
- archive.write(source_file)
- del source_file
- del archive
- del source_files
-
- print(f"Done zipping up files into '{os.path.basename(out_zip_file)}'")
-
- __results = copy.deepcopy(out_zip_file)
- del out_zip_file
-
- # Imports
- del ZipFile, copy
- # Function parameters
- del source_folder, selected_files
-
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return __results
- finally:
- if "__results" in locals().keys(): del __results
-
-def un_zip_data(source_zip_file, out_data_path):
- try:
- # Imports
- import copy
- from zipfile import ZipFile
-
- # Change Directory
- os.chdir(out_data_path)
-
- print(f"Un-Zipping files from {os.path.basename(source_zip_file)}")
-
- with ZipFile(source_zip_file, mode="r") as archive:
- for file in archive.namelist():
- #if file.endswith(".csv"):
- # archive.extract(file, ".")
- archive.extract(file, ".")
- del file
- del archive
-
- print(f"Done Un-Zipping files from {os.path.basename(source_zip_file)}")
-
- __results = copy.deepcopy(out_data_path)
- del out_data_path
- # Declared variable
-
- # Imports
- del ZipFile, copy
- # Function Parameters
- del source_zip_file
-
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return __results
- finally:
- if "__results" in locals().keys(): del __results
-
-def main(in_data_path, out_data_path, selected_files):
- try:
- from time import gmtime, localtime, strftime, time
- # Set a start time so that we can see how log things take
- start_time = time()
- print(f"{'-' * 80}")
- print(f"Python Script: {os.path.basename(__file__)}")
- print(f"Location: ..\Documents\ArcGIS\Projects\..\{os.path.basename(os.path.dirname(__file__))}\{os.path.basename(__file__)}")
- print(f"Python Version: {sys.version}")
- print(f"Environment: {os.path.basename(sys.exec_prefix)}")
- print(f"{'-' * 80}\n")
-
- # Imports
- from dev_dismap_tools import date_code
-
- in_project = os.path.basename(os.path.dirname(in_data_path))
- in_version = date_code(in_project)
- in_zip_file = rf"{in_data_path}\CSV Data {in_version}.zip"
-
- out_project = os.path.basename(os.path.dirname(out_data_path))
- out_version = date_code(out_project)
- out_zip_file = rf"{out_data_path}\CSV Data {out_version}.zip"
-
- print(in_project)
- print(os.path.basename(in_zip_file))
- print(os.path.basename(out_zip_file))
-
- outZipFile = zip_data(in_data_path, selected_files, out_zip_file)
- un_zip_data(outZipFile, out_data_path)
-
- del in_project, in_version, in_zip_file
- del out_project, out_version, out_zip_file, outZipFile
- # Imports
- del date_code
- # Function parameters
- del in_data_path, out_data_path, selected_files
-
- # Elapsed time
- end_time = time()
- elapse_time = end_time - start_time
-
- print(f"\n{'-' * 80}")
- print(f"Python script: {os.path.basename(__file__)}\nCompleted: {strftime('%a %b %d %I:%M %p', localtime())}")
- print(u"Elapsed Time {0} (H:M:S)".format(strftime("%H:%M:%S", gmtime(elapse_time))))
- print(f"{'-' * 80}")
- del elapse_time, end_time, start_time
- del gmtime, localtime, strftime, time
-
- except Exception:
- pass
- except:
- traceback.print_exc()
- else:
- # While in development, leave here. For test, move to finally
- rk = [key for key in locals().keys() if not key.startswith('__')]
- if rk: print(f"WARNING!! Remaining Keys in the '{inspect.stack()[0][3]}' function at line number {inspect.stack()[0][2]}\n\t##--> '{', '.join(rk)}' <--##"); del rk
- return True
- finally:
- pass
-
-if __name__ == "__main__":
- try:
- # Append the location of this scrip to the System Path
- #sys.path.append(os.path.dirname(__file__))
- sys.path.append(os.path.dirname(os.path.dirname(__file__)))
-
- # Imports
- import dev_zip_and_unzip_csv_data
- importlib.reload(dev_zip_and_unzip_csv_data)
-
- base_project_folder = rf"{os.path.dirname(os.path.dirname(__file__))}"
-
- #in_project = "July 1 2024"
- in_project = "December 1 2024"
- in_data_path = rf"{base_project_folder}\{in_project}\CSV Data"
- del in_project
-
- #out_project = "December 1 2024"
- out_project = "June 1 2025"
- out_data_path = rf"{base_project_folder}\{out_project}\CSV Data"
- del out_project
-
- selected_files = ["AI_IDW.csv", "Datasets.csv", "DisMAP_Survey_Info.csv",
- "EBS_IDW.csv", "ENBS_IDW.csv", "field_definitions.json",
- "GMEX_IDW.csv", "GOA_IDW.csv", "HI_IDW.csv",
- "metadata_dictionary.json", "NBS_IDW.csv",
- "NEUS_FAL_IDW.csv", "NEUS_SPR_IDW.csv",
- "SEUS_FAL_IDW.csv", "SEUS_SPR_IDW.csv",
- "SEUS_SUM_IDW.csv", "Species_Filter.csv",
- "table_definitions.json", "WC_ANN_IDW.csv",
- "WC_GFDL.csv", "WC_GLMME.csv", "WC_TRI_IDW.csv",
- ]
-
- selected_files = ";".join(selected_files)
-
- main(in_data_path, out_data_path, selected_files)
-
- del in_data_path, out_data_path, selected_files
- del base_project_folder
-
- # Imports
- del dev_zip_and_unzip_csv_data
-
- except:
- traceback.print_exc()
- else:
- pass
- finally:
- pass
diff --git a/ArcGIS-Analysis-Python/Scripts/dismap_tools_dev/dismap_metadata_processing.~py b/ArcGIS-Analysis-Python/Scripts/dismap_tools_dev/dismap_metadata_processing.~py
deleted file mode 100644
index 7ef469c..0000000
--- a/ArcGIS-Analysis-Python/Scripts/dismap_tools_dev/dismap_metadata_processing.~py
+++ /dev/null
@@ -1,2560 +0,0 @@
-# -*- coding: utf-8 -*-
-# -------------------------------------------------------------------------------
-# Name: module1
-# Purpose:
-#
-# Author: john.f.kennedy
-#
-# Created: 03/03/2024
-# Copyright: (c) john.f.kennedy 2024
-# Licence:
-# -------------------------------------------------------------------------------
-import os, sys # built-ins first
-import traceback
-import importlib
-import inspect
-
-import arcpy # third-parties second
-
-sys.path.append(os.path.dirname(__file__))
-
-def line_info(msg):
- f = inspect.currentframe()
- i = inspect.getframeinfo(f.f_back)
- return f"Script: {os.path.basename(i.filename)}\n\tNear Line: {i.lineno}\n\tFunction: {i.function}\n\tMessage: {msg}"
-
-def create_basic_template_xml_files(base_project_file="", project=""):
- try:
- # Import
- from arcpy import metadata as md
-
- import dismap
- importlib.reload(dismap)
- from dismap import dataset_title_dict, pretty_format_xml_file
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2)
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- base_project_folder = rf"{os.path.dirname(base_project_file)}"
- base_project_file = rf"{base_project_folder}\DisMAP.aprx"
- project_folder = rf"{base_project_folder}\{project}"
- project_gdb = rf"{project_folder}\{project}.gdb"
- metadata_folder = rf"{project_folder}\Template Metadata"
- crfs_folder = rf"{project_folder}\CRFs"
- scratch_folder = rf"{project_folder}\Scratch"
-
- metadata_dictionary = dataset_title_dict(project_gdb)
-
- workspaces = [project_gdb, crfs_folder]
-
- for workspace in workspaces:
-
- arcpy.env.workspace = workspace
- arcpy.env.scratchWorkspace = rf"{scratch_folder}\scratch.gdb"
-
- datasets = list()
-
- walk = arcpy.da.Walk(workspace)
-
- for dirpath, dirnames, filenames in walk:
- for filename in filenames:
- datasets.append(os.path.join(dirpath, filename))
- del filename
- del dirpath, dirnames, filenames
- del walk
-
- for dataset_path in sorted(datasets):
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
-
- print(f"Dataset Name: {dataset_name}")
-
- if "Datasets" == dataset_name:
-
- print(f"\tDataset Table")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- datasets_table_template = rf"{metadata_folder}\datasets_table_template.xml"
- dataset_md.saveAsXML(datasets_table_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(datasets_table_template)
- del datasets_table_template
-
- del dataset_md
-
- elif "Species_Filter" == dataset_name:
-
- print(f"\tSpecies Filter Table")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- species_filter_table_template = rf"{metadata_folder}\species_filter_table_template.xml"
- dataset_md.saveAsXML(species_filter_table_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(species_filter_table_template)
- del species_filter_table_template
-
- del dataset_md
-
- elif "Indicators" in dataset_name:
-
- print(f"\tIndicators")
-
- if dataset_name == "Indicators":
- dataset_name = f"{dataset_name}_Table"
- else:
- pass
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- indicators_template = rf"{metadata_folder}\indicators_template.xml"
- dataset_md.saveAsXML(indicators_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(indicators_template)
- del indicators_template
-
- del dataset_md
-
- elif "LayerSpeciesYearImageName" in dataset_name:
-
- print(f"\tLayer Species Year Image Name")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- layer_species_year_image_name_template = rf"{metadata_folder}\layer_species_year_image_name_template.xml"
- dataset_md.saveAsXML(layer_species_year_image_name_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(layer_species_year_image_name_template)
- del layer_species_year_image_name_template
-
- del dataset_md
-
- elif dataset_name.endswith("Boundary"):
-
- print(f"\tBoundary")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- boundary_template = rf"{metadata_folder}\boundary_template.xml"
- dataset_md.saveAsXML(boundary_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(boundary_template)
- del boundary_template
-
- del dataset_md
-
- elif dataset_name.endswith("Extent_Points"):
-
- print(f"\tExtent_Points")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- extent_points_template = rf"{metadata_folder}\extent_points_template.xml"
- dataset_md.saveAsXML(extent_points_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(extent_points_template)
- del extent_points_template
-
- del dataset_md
-
- elif dataset_name.endswith("Fishnet"):
-
- print(f"\tFishnet")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- fishnet_template = rf"{metadata_folder}\fishnet_template.xml"
- dataset_md.saveAsXML(fishnet_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(fishnet_template)
- del fishnet_template
-
- del dataset_md
-
- elif dataset_name.endswith("Lat_Long"):
-
- print(f"\tLat_Long")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- lat_long_template = rf"{metadata_folder}\lat_long_template.xml"
- dataset_md.saveAsXML(lat_long_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(lat_long_template)
- del lat_long_template
-
- del dataset_md
-
- elif dataset_name.endswith("Region"):
-
- print(f"\tRegion")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- region_template = rf"{metadata_folder}\region_template.xml"
- dataset_md.saveAsXML(region_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(region_template)
- del region_template
-
- del dataset_md
-
- elif dataset_name.endswith("Sample_Locations"):
-
- print(f"\tSample_Locations")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- sample_locations_template = rf"{metadata_folder}\sample_locations_template.xml"
- dataset_md.saveAsXML(sample_locations_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(sample_locations_template)
- del sample_locations_template
-
- del dataset_md
-
- elif dataset_name.endswith("GRID_Points"):
-
- print(f"\tGRID_Points")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- grid_points_template = rf"{metadata_folder}\grid_points_template.xml"
- dataset_md.saveAsXML(grid_points_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(grid_points_template)
- del grid_points_template
-
- del dataset_md
-
- elif "DisMAP_Regions" == dataset_name:
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- dismap_regions_template = rf"{metadata_folder}\dismap_regions_template.xml"
- dataset_md.saveAsXML(dismap_regions_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(dismap_regions_template)
- del dismap_regions_template
-
- del dataset_md
-
- elif dataset_name.endswith("Bathymetry"):
-
- print(f"\tBathymetry")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- bathymetry_template = rf"{metadata_folder}\bathymetry_template.xml"
- dataset_md.saveAsXML(bathymetry_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(bathymetry_template)
- del bathymetry_template
-
- del dataset_md
-
- elif dataset_name.endswith("Latitude"):
-
- print(f"\tLatitude")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- latitude_template = rf"{metadata_folder}\latitude_template.xml"
- dataset_md.saveAsXML(latitude_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(latitude_template)
- del latitude_template
-
- del dataset_md
-
- elif dataset_name.endswith("Longitude"):
-
- print(f"\tLongitude")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- longitude_template = rf"{metadata_folder}\longitude_template.xml"
- dataset_md.saveAsXML(longitude_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(longitude_template)
- del longitude_template
-
- del dataset_md
-
- elif dataset_name.endswith("Raster_Mask"):
-
- print(f"\tRaster_Mask")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- raster_mask_template = rf"{metadata_folder}\raster_mask_template.xml"
- dataset_md.saveAsXML(raster_mask_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(raster_mask_template)
- del raster_mask_template
-
- del dataset_md
-
- elif dataset_name.endswith("Mosaic"):
-
- print(f"\tMosaic")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- mosaic_template = rf"{metadata_folder}\mosaic_template.xml"
- dataset_md.saveAsXML(mosaic_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(mosaic_template)
- del mosaic_template
-
- del dataset_md
-
- elif dataset_name.endswith(".crf"):
-
- print(f"\tCRF")
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- crf_template = rf"{metadata_folder}\crf_template.xml"
- dataset_md.saveAsXML(crf_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(crf_template)
- del crf_template
-
- del dataset_md
-
- else:
- print(f"\tRegion Table")
-
- if dataset_name.endswith("IDW"):
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[f"{dataset_name}"]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[f"{dataset_name}"]["Tags"]
- dataset_md.summary = metadata_dictionary[f"{dataset_name}"]["Summary"]
- dataset_md.description = metadata_dictionary[f"{dataset_name}"]["Description"]
- dataset_md.credits = metadata_dictionary[f"{dataset_name}"]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[f"{dataset_name}"]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- idw_region_table_template = rf"{metadata_folder}\idw_region_table_template.xml"
- dataset_md.saveAsXML(idw_region_table_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(idw_region_table_template)
- del idw_region_table_template
-
- del dataset_md
-
- elif dataset_name.endswith("GLMME"):
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- del empty_md
-
- dataset_md.title = metadata_dictionary[f"{dataset_name}"]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[f"{dataset_name}"]["Tags"]
- dataset_md.summary = metadata_dictionary[f"{dataset_name}"]["Summary"]
- dataset_md.description = metadata_dictionary[f"{dataset_name}"]["Description"]
- dataset_md.credits = metadata_dictionary[f"{dataset_name}"]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[f"{dataset_name}"]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- glmme_region_table_template = rf"{metadata_folder}\glmme_region_table_template.xml"
- dataset_md.saveAsXML(glmme_region_table_template, "REMOVE_ALL_SENSITIVE_INFO")
- pretty_format_xml_file(glmme_region_table_template)
- del glmme_region_table_template
-
- del dataset_md
-
- else:
- pass
-
- del dataset_name, dataset_path
-
- del workspace
-
-
- del datasets
-
- # Declared Variables set in function
- del project_gdb, base_project_folder, metadata_folder
- del project_folder, scratch_folder, crfs_folder
- del metadata_dictionary, workspaces
-
- # Imports
- del dismap, dataset_title_dict, pretty_format_xml_file
- del md
-
- # Function Parameters
- del base_project_file, project
-
- except KeyboardInterrupt:
- raise SystemExit
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(str(traceback.print_exc()) + arcpy.GetMessages())
- except arcpy.ExecuteError:
- arcpy.AddError(str(traceback.print_exc()) + arcpy.GetMessages())
- except Exception:
- traceback.print_exc()
- except:
- traceback.print_exc()
- else:
- try:
- leave_out_keys = ["leave_out_keys", "results"]
- remaining_keys = [key for key in locals().keys() if not key.startswith('__') and key not in leave_out_keys]
- if remaining_keys:
- arcpy.AddWarning(f"Remaining Keys in '{inspect.stack()[0][3]}': ##--> '{', '.join(remaining_keys)}' <--## Line Number: {traceback.extract_stack()[-1].lineno}")
- del leave_out_keys, remaining_keys
- return results if "results" in locals().keys() else ["NOTE!! The 'results' variable not yet set!!"]
- except:
- raise Exception(traceback.print_exc())
- finally:
- if "results" in locals().keys(): del results
-
-def import_basic_template_xml_files(base_project_file="", project=""):
- try:
- # Import
- from arcpy import metadata as md
-
- import dismap
- importlib.reload(dismap)
- from dismap import dataset_title_dict, pretty_format_xml_file, unique_years
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2)
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- base_project_folder = rf"{os.path.dirname(base_project_file)}"
- project_folder = rf"{base_project_folder}\{project}"
- project_gdb = rf"{project_folder}\{project}.gdb"
- current_md_folder = rf"{project_folder}\Current Metadata"
- inport_md_folder = rf"{project_folder}\InPort Metadata"
- crfs_folder = rf"{project_folder}\CRFs"
- scratch_folder = rf"{project_folder}\Scratch"
-
- #print("Creating the Metadata Dictionary. Please wait!!")
- metadata_dictionary = dataset_title_dict(project_gdb)
- #print("Creating the Metadata Dictionary. Completed")
-
- workspaces = [project_gdb, crfs_folder]
- #workspaces = [crfs_folder]
-
- for workspace in workspaces:
-
- arcpy.env.workspace = workspace
- arcpy.env.scratchWorkspace = rf"{scratch_folder}\scratch.gdb"
-
- datasets = list()
-
- walk = arcpy.da.Walk(workspace)
-
- for dirpath, dirnames, filenames in walk:
- for filename in filenames:
- datasets.append(os.path.join(dirpath, filename))
- del filename
- del dirpath, dirnames, filenames
- del walk
-
- for dataset_path in sorted(datasets):
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
-
- print(f"Dataset Name: {dataset_name}")
-
- if "Datasets" == dataset_name:
-
- print(f"\tDataset Table")
-
- datasets_table_template = rf"{current_md_folder}\Table\datasets_table_template.xml"
- template_md = md.Metadata(datasets_table_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- #dataset_md.importMetadata(datasets_table_template)
- dataset_md.save()
- #dataset_md.synchronize("SELECTIVE")
-
- del empty_md, template_md, datasets_table_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Table\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif "Species_Filter" == dataset_name:
-
- print(f"\tSpecies Filter Table")
-
- species_filter_table_template = rf"{current_md_folder}\Table\species_filter_table_template.xml"
- template_md = md.Metadata(species_filter_table_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, species_filter_table_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Table\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif "Indicators" in dataset_name:
-
- print(f"\tIndicators")
-
- if dataset_name == "Indicators":
- indicators_template = rf"{current_md_folder}\Table\indicators_template.xml"
- else:
- indicators_template = rf"{current_md_folder}\Table\region_indicators_template.xml"
-
- template_md = md.Metadata(indicators_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, indicators_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path)
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- #print(metadata_dictionary[dataset_name]["Tags"])
- #print(_tags)
-
- if dataset_name == "Indicators":
- dataset_name = f"{dataset_name}_Table"
- else:
- pass
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Table\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- elif "LayerSpeciesYearImageName" in dataset_name:
-
- print(f"\tLayer Species Year Image Name")
-
- layer_species_year_image_name_template = rf"{current_md_folder}\Table\layer_species_year_image_name_template.xml"
- template_md = md.Metadata(layer_species_year_image_name_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, layer_species_year_image_name_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path)
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Table\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- elif dataset_name.endswith("Boundary"):
-
- print(f"\tBoundary")
-
- boundary_template = rf"{current_md_folder}\Boundary\boundary_template.xml"
- template_md = md.Metadata(boundary_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, boundary_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Boundary\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Boundary\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Extent_Points"):
-
- print(f"\tExtent_Points")
-
- extent_points_template = rf"{current_md_folder}\Extent_Points\extent_points_template.xml"
- template_md = md.Metadata(extent_points_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, extent_points_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Extent_Points\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Extent_Points\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Fishnet"):
-
- print(f"\tFishnet")
-
- fishnet_template = rf"{current_md_folder}\Fishnet\fishnet_template.xml"
- template_md = md.Metadata(fishnet_template)
-
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, fishnet_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Fishnet\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Fishnet\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Lat_Long"):
-
- print(f"\tLat_Long")
-
- lat_long_template = rf"{current_md_folder}\Lat_Long\lat_long_template.xml"
- template_md = md.Metadata(lat_long_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, lat_long_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Lat_Long\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Lat_Long\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Region"):
-
- print(f"\tRegion")
-
- region_template = rf"{current_md_folder}\Region\region_template.xml"
- template_md = md.Metadata(region_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, region_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Region\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Region\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Sample_Locations"):
-
- print(f"\tSample_Locations")
-
- sample_locations_template = rf"{current_md_folder}\Sample_Locations\sample_locations_template.xml"
- template_md = md.Metadata(sample_locations_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, sample_locations_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path)
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Sample_Locations\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Sample_Locations\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- elif dataset_name.endswith("GRID_Points"):
-
- print(f"\tGRID_Points")
-
- grid_points_template = rf"{current_md_folder}\GRID_Points\grid_points_template.xml"
- template_md = md.Metadata(grid_points_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, grid_points_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path)
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\GRID_Points\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\GRID_Points\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- elif "DisMAP_Regions" == dataset_name:
-
- print(f"\tDisMAP_Regions")
-
- dismap_regions_template = rf"{current_md_folder}\Region\dismap_regions_template.xml"
- template_md = md.Metadata(dismap_regions_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, dismap_regions_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Region\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Region\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Bathymetry"):
-
- print(f"\tBathymetry")
-
- bathymetry_template = rf"{current_md_folder}\Bathymetry\bathymetry_template.xml"
- template_md = md.Metadata(bathymetry_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, bathymetry_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Bathymetry\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Bathymetry\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Latitude"):
-
- print(f"\tLatitude")
-
- latitude_template = rf"{current_md_folder}\Latitude\latitude_template.xml"
- template_md = md.Metadata(latitude_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, latitude_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Latitude\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Latitude\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Longitude"):
-
- print(f"\tLongitude")
-
- longitude_template = rf"{current_md_folder}\Longitude\longitude_template.xml"
- template_md = md.Metadata(longitude_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, longitude_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Longitude\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Longitude\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Raster_Mask"):
-
- print(f"\tRaster_Mask")
-
- raster_mask_template = rf"{current_md_folder}\Raster_Mask\raster_mask_template.xml"
- template_md = md.Metadata(raster_mask_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, raster_mask_template
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"]
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Raster_Mask\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Raster_Mask\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md
-
- elif dataset_name.endswith("Mosaic"):
-
- print(f"\tMosaic")
-
- mosaic_template = rf"{current_md_folder}\Mosaic\mosaic_template.xml"
- template_md = md.Metadata(mosaic_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, mosaic_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path)
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- dataset_md.title = metadata_dictionary[dataset_name]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[dataset_name]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Mosaic\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Mosaic\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- elif dataset_name.endswith(".crf"):
-
- print(f"\tCRF")
- #print(dataset_name)
- #print(dataset_path)
- #dataset_path = dataset_path.replace(crfs_folder, project_gdb).replace(".crf", "_Mosaic")
- #print(dataset_path)
-
- crf_template = rf"{current_md_folder}\CRF\crf_template.xml"
- template_md = md.Metadata(crf_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, crf_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path.replace(crfs_folder, project_gdb).replace(".crf", "_Mosaic"))
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- dataset_md.title = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Summary"]
- dataset_md.description = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Description"]
- dataset_md.credits = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[dataset_name.replace(".crf", "_CRF")]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\CRF\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\CRF\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- else:
- print(f"\tRegion Table")
-
- if dataset_name.endswith("IDW"):
-
- idw_region_table_template = rf"{current_md_folder}\Table\idw_region_table_template.xml"
- template_md = md.Metadata(idw_region_table_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, idw_region_table_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path)
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- dataset_md.title = metadata_dictionary[f"{dataset_name}"]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[f"{dataset_name}"]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[f"{dataset_name}"]["Summary"]
- dataset_md.description = metadata_dictionary[f"{dataset_name}"]["Description"]
- dataset_md.credits = metadata_dictionary[f"{dataset_name}"]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[f"{dataset_name}"]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Table\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- elif dataset_name.endswith("GLMME"):
-
- glmme_region_table_template = rf"{current_md_folder}\Table\glmme_region_table_template.xml"
- template_md = md.Metadata(glmme_region_table_template)
-
- dataset_md = md.Metadata(dataset_path)
- empty_md = md.Metadata()
- dataset_md.copy(empty_md)
- dataset_md.save()
- dataset_md.copy(template_md)
- dataset_md.save()
- del empty_md, template_md, glmme_region_table_template
-
- # Max-Min Year range table
- years_md = unique_years(dataset_path)
- _tags = f", {min(years_md)} to {max(years_md)}"
- del years_md
-
- dataset_md.title = metadata_dictionary[f"{dataset_name}"]["Dataset Service Title"]
- dataset_md.tags = metadata_dictionary[f"{dataset_name}"]["Tags"] + _tags
- dataset_md.summary = metadata_dictionary[f"{dataset_name}"]["Summary"]
- dataset_md.description = metadata_dictionary[f"{dataset_name}"]["Description"]
- dataset_md.credits = metadata_dictionary[f"{dataset_name}"]["Credits"]
- dataset_md.accessConstraints = metadata_dictionary[f"{dataset_name}"]["Access Constraints"]
- dataset_md.save()
-
- dataset_md.synchronize("ALWAYS")
-
- out_xml = rf"{current_md_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- target_file_path = rf"{inport_md_folder}\Table\{dataset_name}.xml"
- custom_xslt_path = rf"{inport_md_folder}\ArcGIS2InPort.xsl"
-
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- pretty_format_xml_file(target_file_path)
-
- del target_file_path, custom_xslt_path
-
- del dataset_md, _tags
-
- else:
- pass
-
- del dataset_name, dataset_path
-
- del workspace
-
- del datasets
-
- # Declared Variables set in function
- del project_gdb, base_project_folder, current_md_folder, inport_md_folder
- del project_folder, scratch_folder, crfs_folder
- del metadata_dictionary, workspaces
-
- # Imports
- del dismap, dataset_title_dict, pretty_format_xml_file, unique_years
- del md
-
- # Function Parameters
- del base_project_file, project
-
- except KeyboardInterrupt:
- raise SystemExit
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- except Exception as e:
- print(e)
- except:
- traceback.print_exc()
- else:
- try:
- leave_out_keys = ["leave_out_keys", "results"]
- remaining_keys = [key for key in locals().keys() if not key.startswith('__') and key not in leave_out_keys]
- if remaining_keys:
- arcpy.AddWarning(f"Remaining Keys in '{inspect.stack()[0][3]}': ##--> '{', '.join(remaining_keys)}' <--## Line Number: {traceback.extract_stack()[-1].lineno}")
- del leave_out_keys, remaining_keys
- return results if "results" in locals().keys() else ["NOTE!! The 'results' variable not yet set!!"]
- except:
- raise Exception(traceback.print_exc())
- finally:
- if "results" in locals().keys(): del results
-
-def create_thumbnails(base_project_file="", project=""):
- try:
- # Import
- from arcpy import metadata as md
-
- import dismap
- importlib.reload(dismap)
- from dismap import pretty_format_xml_file
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2)
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- base_project_folder = rf"{os.path.dirname(base_project_file)}"
- base_project_file = rf"{base_project_folder}\DisMAP.aprx"
- project_folder = rf"{base_project_folder}\{project}"
- project_gdb = rf"{project_folder}\{project}.gdb"
- metadata_folder = rf"{project_folder}\Export Metadata"
- crfs_folder = rf"{project_folder}\CRFs"
- scratch_folder = rf"{project_folder}\Scratch"
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = rf"{scratch_folder}\scratch.gdb"
-
- aprx = arcpy.mp.ArcGISProject(base_project_file)
- home_folder = aprx.homeFolder
-
- workspaces = [project_gdb, crfs_folder]
-
- for workspace in workspaces:
-
- arcpy.env.workspace = workspace
- arcpy.env.scratchWorkspace = rf"{scratch_folder}\scratch.gdb"
-
- datasets = list()
-
- walk = arcpy.da.Walk(workspace)
-
- for dirpath, dirnames, filenames in walk:
- for filename in filenames:
- datasets.append(os.path.join(dirpath, filename))
- del filename
- del dirpath, dirnames, filenames
- del walk
-
- for dataset_path in sorted(datasets):
- #print(dataset_path)
- dataset_name = os.path.basename(dataset_path)
-
- print(f"Dataset Name: {dataset_name}")
-
- if "Datasets" == dataset_name:
-
- print(f"\tDataset Table")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif "Species_Filter" == dataset_name:
-
- print(f"\tSpecies Filter Table")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif "Indicators" in dataset_name:
-
- print(f"\tIndicators")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif "LayerSpeciesYearImageName" in dataset_name:
-
- print(f"\tLayer Species Year Image Name")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Boundary"):
-
- print(f"\tBoundary")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Boundary\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Extent_Points"):
-
- print(f"\tExtent_Points")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Extent_Points\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Fishnet"):
-
- print(f"\tFishnet")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Fishnet\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Lat_Long"):
-
- print(f"\tLat_Long")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Lat_Long\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Region"):
-
- print(f"\tRegion")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Region\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Sample_Locations"):
-
- print(f"\tSample_Locations")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Sample_Locations\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("GRID_Points"):
-
- print(f"\tGRID_Points")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\GRID_Points\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif "DisMAP_Regions" == dataset_name:
-
- print(f"\tDisMAP_Regions")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Region\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Bathymetry"):
-
- print(f"\tBathymetry")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Bathymetry\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Latitude"):
-
- print(f"\tLatitude")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Latitude\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Longitude"):
-
- print(f"\tLongitude")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Longitude\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Raster_Mask"):
-
- print(f"\tRaster_Mask")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Raster_Mask\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("Mosaic"):
-
- print(f"\tMosaic")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Mosaic\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith(".crf"):
-
- print(f"\tCRF")
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\CRF\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- else:
- pass
- print(f"\tRegion Table")
-
- if dataset_name.endswith("IDW"):
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- elif dataset_name.endswith("GLMME"):
-
- dataset_md = md.Metadata(dataset_path)
-
- out_xml = rf"{metadata_folder}\Table\{dataset_name}.xml"
- dataset_md.saveAsXML(out_xml)
- pretty_format_xml_file(out_xml)
- del out_xml
-
- del dataset_md
-
- else:
- pass
-
- del dataset_name, dataset_path
-
- del workspace, datasets
-
- del workspaces
-
- # Declared Variables set in function for aprx
- del home_folder
- # Save aprx one more time and then delete
- aprx.save()
- del aprx
-
- # Declared Variables set in function
- del project_gdb, base_project_folder, metadata_folder, crfs_folder
- del project_folder, scratch_folder
-
- # Imports
- del dismap, pretty_format_xml_file
- del md
-
- # Function Parameters
- del base_project_file, project
-
- except KeyboardInterrupt:
- raise SystemExit
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(str(traceback.print_exc()) + arcpy.GetMessages())
- except arcpy.ExecuteError:
- arcpy.AddError(str(traceback.print_exc()) + arcpy.GetMessages())
- except Exception:
- traceback.print_exc()
- except:
- traceback.print_exc()
- else:
- try:
- leave_out_keys = ["leave_out_keys", "results"]
- remaining_keys = [key for key in locals().keys() if not key.startswith('__') and key not in leave_out_keys]
- if remaining_keys:
- arcpy.AddWarning(f"Remaining Keys in '{inspect.stack()[0][3]}': ##--> '{', '.join(remaining_keys)}' <--## Line Number: {traceback.extract_stack()[-1].lineno}")
- del leave_out_keys, remaining_keys
- return results if "results" in locals().keys() else ["NOTE!! The 'results' variable not yet set!!"]
- except:
- raise Exception(traceback.print_exc())
- finally:
- if "results" in locals().keys(): del results
-
-def export_to_inport_xml_files(base_project_file="", project=""):
- try:
- if not base_project_file or not project: raise SystemExit("parameters are missing")
-
- # Import
- from arcpy import metadata as md
-
- import dismap
- importlib.reload(dismap)
- from dismap import pretty_format_xml_file
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2)
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- base_project_folder = rf"{os.path.dirname(base_project_file)}"
- project_folder = rf"{base_project_folder}\{project}"
- project_gdb = rf"{project_folder}\{project}.gdb"
- metadata_folder = rf"{project_folder}\InPort Metadata"
- crfs_folder = rf"{project_folder}\CRFs"
- scratch_folder = rf"{project_folder}\Scratch"
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = rf"{scratch_folder}\scratch.gdb"
-
- datasets = [rf"{project_gdb}\Species_Filter", rf"{project_gdb}\Indicators", rf"{project_gdb}\DisMAP_Regions", rf"{project_gdb}\GMEX_IDW_Sample_Locations", rf"{project_gdb}\GMEX_IDW_Mosaic", rf"{crfs_folder}\GMEX_IDW.crf"]
-
- for dataset_path in sorted(datasets):
- print(dataset_path)
-
- dataset_name = os.path.basename(dataset_path)
-
- print(f"Dataset Name: {dataset_name}")
-
- target_file_path = rf"{metadata_folder}\{dataset_name}.xml"
- custom_xslt_path = rf"{metadata_folder}\ArcGIS2InPort.xsl"
-
- dataset_md = md.Metadata(dataset_path)
- dataset_md.saveAsUsingCustomXSLT(target_file_path, custom_xslt_path)
- del dataset_md
-
- try:
- pretty_format_xml_file(target_file_path)
- except Exception:
- raise Exception
-
- del target_file_path, custom_xslt_path
-
- del dataset_name, dataset_path
-
- del datasets
-
- # Declared Variables set in function
- del project_gdb, base_project_folder, metadata_folder
- del project_folder, scratch_folder, crfs_folder
-
- # Imports
- del dismap, pretty_format_xml_file
- del md
-
- # Function Parameters
- del base_project_file, project
-
- except KeyboardInterrupt:
- raise SystemExit
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(str(traceback.print_exc()) + arcpy.GetMessages())
- raise SystemExit
- except arcpy.ExecuteError:
- arcpy.AddError(str(traceback.print_exc()) + arcpy.GetMessages())
- raise SystemExit
- except SystemExit as se:
- arcpy.AddError(se)
- raise SystemExit
- except:
- traceback.print_exc()
- else:
- try:
- leave_out_keys = ["leave_out_keys", "results"]
- remaining_keys = [key for key in locals().keys() if not key.startswith('__') and key not in leave_out_keys]
- if remaining_keys:
- arcpy.AddWarning(f"Remaining Keys in '{inspect.stack()[0][3]}': ##--> '{', '.join(remaining_keys)}' <--## Line Number: {traceback.extract_stack()[-1].lineno}")
- del leave_out_keys, remaining_keys
- return results if "results" in locals().keys() else ["NOTE!! The 'results' variable not yet set!!"]
- except:
- raise Exception(traceback.print_exc())
- finally:
- if "results" in locals().keys(): del results
-
-def create_maps(base_project_file="", project="", dataset=""):
- try:
- # Import
- from arcpy import metadata as md
-
- import dismap
- importlib.reload(dismap)
- from dismap import pretty_format_xml_file
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
- arcpy.SetLogMetadata(True)
- arcpy.SetSeverityLevel(2)
- arcpy.SetMessageLevels(['NORMAL']) # NORMAL, COMMANDSYNTAX, DIAGNOSTICS, PROJECTIONTRANSFORMATION
-
- base_project_folder = rf"{os.path.dirname(base_project_file)}"
- base_project_file = rf"{base_project_folder}\DisMAP.aprx"
- project_folder = rf"{base_project_folder}\{project}"
- project_gdb = rf"{project_folder}\{project}.gdb"
- metadata_folder = rf"{project_folder}\Export Metadata"
- crfs_folder = rf"{project_folder}\CRFs"
- scratch_folder = rf"{project_folder}\Scratch"
-
- arcpy.env.workspace = project_gdb
- arcpy.env.scratchWorkspace = rf"{scratch_folder}\scratch.gdb"
-
- aprx = arcpy.mp.ArcGISProject(base_project_file)
-
- dataset_name = os.path.basename(dataset)
-
- print(f"Dataset Name: {dataset_name}")
-
- if dataset_name not in [cm.name for cm in aprx.listMaps()]:
- print(f"Creating Map: {dataset_name}")
- aprx.createMap(f"{dataset_name}", "Map")
- aprx.save()
- else:
- pass
-
- current_map = aprx.listMaps(f"{dataset_name}")[0]
- print(f"Current Map: {current_map.name}")
-
- if dataset_name not in [lyr.name for lyr in current_map.listLayers(f"{dataset_name}")]:
- print(f"Adding {dataset_name} to Map")
-
- map_layer = arcpy.management.MakeFeatureLayer(dataset, f"{dataset_name}")
-
- #arcpy.management.Delete(rf"{project_folder}\Layers\{dataset_name}.lyrx")
- #os.remove(rf"{project_folder}\Layers\{dataset_name}.lyrx")
-
- map_layer_file = arcpy.management.SaveToLayerFile(map_layer, rf"{project_folder}\Layers\{dataset_name}.lyrx")
- del map_layer_file
-
- map_layer_file = arcpy.mp.LayerFile(rf"{project_folder}\Layers\{dataset_name}.lyrx")
-
- arcpy.management.Delete(map_layer)
- del map_layer
-
- current_map.addLayer(map_layer_file)
- del map_layer_file
-
- aprx.save()
- else:
- pass
-
- #aprx_basemaps = aprx.listBasemaps()
- #basemap = 'GEBCO Basemap/Contours (NOAA NCEI Visualization)'
- basemap = "Terrain with Labels"
-
- current_map.addBasemap(basemap)
- del basemap
-
- # Set Reference Scale
- current_map.referenceScale = 50000000
-
- # Clear Selection
- current_map.clearSelection()
-
- current_map_cim = current_map.getDefinition('V3')
- current_map_cim.enableWraparound = True
- current_map.setDefinition(current_map_cim)
-
- # Return the layer's CIM definition
- cim_lyr = lyr.getDefinition('V3')
-
- # Modify the color, width and dash template for the SolidStroke layer
- symLvl1 = cim_lyr.renderer.symbol.symbol.symbolLayers[0]
- symLvl1.color.values = [0, 0, 0, 100]
- symLvl1.width = 1
-
- # Push the changes back to the layer object
- lyr.setDefinition(cim_lyr)
- del symLvl1, cim_lyr
-
- aprx.save()
-
- height = arcpy.Describe(dataset).extent.YMax - arcpy.Describe(dataset).extent.YMin
- width = arcpy.Describe(dataset).extent.XMax - arcpy.Describe(dataset).extent.XMin
-
- # map_width, map_height
- map_width, map_height = 8.5, 11
-
- if height > width:
- page_height = map_height; page_width = map_width
- elif height < width:
- page_height = map_width; page_width = map_height
- else:
- page_width = map_width; page_height = map_height
-
- del map_width, map_height
- del height, width
-
- if dataset_name not in [cl.name for cl in aprx.listLayouts()]:
- print(f"Creating Layout: {dataset_name}")
- aprx.createLayout(page_width, page_height, "INCH", f"{dataset_name}")
- aprx.save()
- else:
- print(f"Layout: {dataset_name} exists")
-
- #Set the default map camera to the extent of the park boundary before opening the new view
- #default camera only affects newly opened views
- lyr = current_map.listLayers(f"{dataset_name}")[-1]
-
- #
- arcpy.management.SelectLayerByAttribute(lyr, 'NEW_SELECTION', "DatasetCode in ('ENBS', 'HI', 'NEUS_SPR')")
-
- mv = current_map.openView()
- mv.panToExtent(mv.getLayerExtent(lyr, True, True))
- mv.zoomToAllLayers()
- del mv
-
- arcpy.management.SelectLayerByAttribute(lyr, 'CLEAR_SELECTION')
-
- av = aprx.activeView
- av.exportToPNG(rf"{project_folder}\Layers\{dataset_name}.png", width=288, height=192, resolution = 96, color_mode="24-BIT_TRUE_COLOR", embed_color_profile=True)
- av.exportToJPEG(rf"{project_folder}\Layers\{dataset_name}.jpg", width=288, height=192, resolution = 96, jpeg_color_mode="24-BIT_TRUE_COLOR", embed_color_profile=True)
- del av
-
- #print(current_map.referenceScale)
-
- #export the newly opened active view to PDF, then delete the new map
- #mv = aprx.activeView
- #mv.exportToPDF(r"C:\Temp\RangerStations.pdf", width=700, height=500, resolution=96)
- #aprx.deleteItem(current_map)
-
- #mv = aprx.activeView
- #mv = current_map.defaultView
- #mv.zoomToAllLayers()
- #print(mv.camera.getExtent())
- #arcpy.management.Delete(rf"{project_folder}\Layers\{dataset_name}.png")
- #arcpy.management.Delete(rf"{project_folder}\Layers\{dataset_name}.jpg")
-
- #os.remove(rf"{project_folder}\Layers\{dataset_name}.png")
- #os.remove(rf"{project_folder}\Layers\{dataset_name}.jpg")
-
-
- #mv.exportToPNG(rf"{project_folder}\Layers\{dataset_name}.png", width=288, height=192, resolution = 96, color_mode="24-BIT_TRUE_COLOR", embed_color_profile=True)
- #mv.exportToJPEG(rf"{project_folder}\Layers\{dataset_name}.jpg", width=288, height=192, resolution = 96, jpeg_color_mode="24-BIT_TRUE_COLOR", embed_color_profile=True)
- #del mv
-
- #Export the resulting imported layout and changes to JPEG
- #print(f"Exporting '{current_layout.name}'")
- #current_map.exportToJPEG(rf"{project_folder}\Layouts\{current_layout.name}.jpg", page_width, page_height)
- #current_map.exportToPNG(rf"{project_folder}\Layouts\{current_layout.name}.png", page_width, page_height)
-
- #fc_md = md.Metadata(dataset)
- #fc_md.thumbnailUri = rf"{project_folder}\Layouts\{dataset_name}.png"
- #fc_md.thumbnailUri = rf"{project_folder}\Layouts\{dataset_name}.jpg"
- #fc_md.save()
- #del fc_md
-
- aprx.save()
-
-
- # # from arcpy import metadata as md
- # #
- # # fc_md = md.Metadata(dataset)
- # # fc_md.thumbnailUri = rf"{project_folder}\Layers\{dataset_name}.png"
- # # fc_md.save()
- # # del fc_md
- # # del md
-
-## aprx.save()
-##
-## current_layout = [cl for cl in aprx.listLayouts() if cl.name == dataset_name][0]
-## print(f"Current Layout: {current_layout.name}")
-##
-## current_layout.openView()
-##
-## # Remove all map frames
-## for mf in current_layout.listElements("MapFrame_Element"): current_layout.deleteElement(mf); del mf
-##
-## # print(f'Layout Name: {current_layout.name}')
-## # print(f' Width x height: {current_layout.pageWidth} x {current_layout.pageHeight} units are {current_layout.pageUnits}')
-## # print(f' MapFrame count: {str(len(current_layout.listElements("MapFrame_Element")))}')
-## # for mf in current_layout.listElements("MapFrame_Element"):
-## # if len(current_layout.listElements("MapFrame_Element")) > 0:
-## # print(f' MapFrame name: {mf.name}')
-## # print(f' Total element count: {str(len(current_layout.listElements()))} \n')
-##
-##
-## print(f"Create a new map frame using a point geometry")
-## #Create a new map frame using a point geometry
-## #mf1 = current_layout.createMapFrame(arcpy.Point(0.01,0.01), current_map, 'New MF - Point')
-## mf1 = current_layout.createMapFrame(arcpy.Point(0.0,0.0), current_map, 'New MF - Point')
-## #mf1.elementWidth = 10
-## #mf1.elementHeight = 7.5
-## #mf1.elementWidth = page_width - 0.01
-## #mf1.elementHeight = page_height - 0.01
-## mf1.elementWidth = page_width
-## mf1.elementHeight = page_height
-
-## lyr = current_map.listLayers(f"{dataset_name}")[0]
-##
-## #Zoom to ALL selected features and export to PDF
-## #arcpy.SelectLayerByAttribute_management(lyr, 'NEW_SELECTION')
-## #mf1.zoomToAllLayers(True)
-## #arcpy.SelectLayerByAttribute_management(lyr, 'CLEAR_SELECTION')
-##
-## #Set the map frame extent to the extent of a layer
-## #mf1.camera.setExtent(mf1.getLayerExtent(lyr, False, True))
-## #mf1.camera.scale = mf1.camera.scale * 1.1 #add a slight buffer
-##
-## del lyr
-
-## print(f"Create a new bookmark set to the map frame's default extent")
-## #Create a new bookmark set to the map frame's default extent
-## bkmk = mf1.createBookmark('Default Extent', "The map's default extent")
-## bkmk.updateThumbnail()
-## del mf1
-## del bkmk
-
- # Create point text element using a system style item
- # txtStyleItem = aprx.listStyleItems('ArcGIS 2D', 'TEXT', 'Title (Serif)')[0]
- # ptTxt = aprx.createTextElement(current_layout, arcpy.Point(5.5, 4.25), 'POINT', f'{dataset_name}', 10, style_item=txtStyleItem)
- # del txtStyleItem
-
- # Change the anchor position and reposition the text to center
- # ptTxt.setAnchor('Center_Point')
- # ptTxt.elementPositionX = page_width / 2.0
- # ptTxt.elementPositionY = page_height - 0.25
- # del ptTxt
-
- # print(f"Using CIM to update border")
- # current_layout_cim = current_layout.getDefinition('V3')
- # for elm in current_layout_cim.elements:
- # if type(elm).__name__ == 'CIMMapFrame':
- # if elm.graphicFrame.borderSymbol.symbol.symbolLayers:
- # sym = elm.graphicFrame.borderSymbol.symbol.symbolLayers[0]
- # sym.width = 5
- # sym.color.values = [255, 0, 0, 100]
- # else:
- # arcpy.AddWarning(elm.name + ' has NO symbol layers')
- # current_layout.setDefinition(current_layout_cim)
- # del current_layout_cim, elm, sym
-
-## ExportLayout = True
-## if ExportLayout:
-## #Export the resulting imported layout and changes to JPEG
-## print(f"Exporting '{current_layout.name}'")
-## current_layout.exportToJPEG(rf"{project_folder}\Layouts\{current_layout.name}.jpg")
-## current_layout.exportToPNG(rf"{project_folder}\Layouts\{current_layout.name}.png")
-## del ExportLayout
-
-## #Export the resulting imported layout and changes to JPEG
-## print(f"Exporting '{current_layout.name}'")
-## current_map.exportToJPEG(rf"{project_folder}\Layouts\{current_layout.name}.jpg", page_width, page_height)
-## current_map.exportToPNG(rf"{project_folder}\Layouts\{current_layout.name}.png", page_width, page_height)
-##
-## fc_md = md.Metadata(dataset)
-## fc_md.thumbnailUri = rf"{project_folder}\Layouts\{current_layout.name}.png"
-## #fc_md.thumbnailUri = rf"{project_folder}\Layouts\{current_layout.name}.jpg"
-## fc_md.save()
-## del fc_md
-##
-## aprx.save()
-
- # aprx.deleteItem(current_map)
- #aprx.deleteItem(current_layout)
-
- del current_map
- #, current_layout
- #del page_width, page_height
- del dataset_name, dataset
-
- aprx.save()
-
- print(f"\nCurrent Maps & Layouts")
-
- current_maps = aprx.listMaps()
- #current_layouts = aprx.listLayouts()
-
- if current_maps:
- print(f"\nCurrent Maps\n")
- for current_map in current_maps:
- print(f"\tProject Map: {current_map.name}")
- del current_map
- else:
- arcpy.AddWarning("No maps in Project")
-
-## if current_layouts:
-## print(f"\nCurrent Layouts\n")
-## for current_layout in current_layouts:
-## print(f"\tProject Layout: {current_layout.name}")
-## del current_layout
-## else:
-## arcpy.AddWarning("No layouts in Project")
-
- #del current_layouts
- del current_maps
-
- # Declared Variables set in function for aprx
-
- # Save aprx one more time and then delete
- aprx.save()
- del aprx
-
- # Declared Variables set in function
- del project_gdb, base_project_folder, metadata_folder, crfs_folder
- del project_folder, scratch_folder
-
- # Imports
- del dismap, pretty_format_xml_file
- del md
-
- # Function Parameters
- del base_project_file, project
-
- except KeyboardInterrupt:
- raise SystemExit
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(str(traceback.print_exc()) + arcpy.GetMessages())
- raise Exception
- except arcpy.ExecuteError:
- arcpy.AddError(str(traceback.print_exc()) + arcpy.GetMessages())
- raise Exception
- except Exception:
- traceback.print_exc()
- except:
- traceback.print_exc()
- else:
- try:
- leave_out_keys = ["leave_out_keys", "results"]
- remaining_keys = [key for key in locals().keys() if not key.startswith('__') and key not in leave_out_keys]
- if remaining_keys:
- arcpy.AddWarning(f"Remaining Keys in '{inspect.stack()[0][3]}': ##--> '{', '.join(remaining_keys)}' <--## Line Number: {traceback.extract_stack()[-1].lineno}")
- del leave_out_keys, remaining_keys
- return results if "results" in locals().keys() else ["NOTE!! The 'results' variable not yet set!!"]
- except:
- raise Exception(traceback.print_exc())
- finally:
- if "results" in locals().keys(): del results
-
-def main(project=""):
- try:
- # Imports
- import dismap
- importlib.reload(dismap)
-
- arcpy.env.overwriteOutput = True
- arcpy.env.parallelProcessingFactor = "100%"
-
- base_project_folder = os.path.dirname(os.path.dirname(__file__))
- base_project_file = rf"{base_project_folder}\DisMAP.aprx"
- project_gdb = rf"{base_project_folder}\{project}\{project}.gdb"
-
- # Test if passed workspace exists, if not raise SystemExit
- if not arcpy.Exists(base_project_file):
- raise SystemExit(line_info(f"{os.path.basename(base_project_file)} is missing!!"))
-
- # Test if passed workspace exists, if not raise SystemExit
- if not arcpy.Exists(project_gdb):
- raise SystemExit(line_info(f"{os.path.basename(project_gdb)} is missing!!"))
-
- del base_project_folder
-
- Backup = False
- if Backup:
- dismap.backup_gdb(project_gdb)
- del Backup
-
- # Imports
- del dismap
- # Function parameters
-
- results = []
-
- try:
-
- CreateBasicTemplateXMLFiles = True
- if CreateBasicTemplateXMLFiles:
- result = create_basic_template_xml_files(base_project_file, project)
- results.extend(result); del result
- del CreateBasicTemplateXMLFiles
-
- ImportBasicTemplateXmlFiles = True
- if ImportBasicTemplateXmlFiles:
- result = import_basic_template_xml_files(base_project_file, project)
- results.extend(result); del result
- del ImportBasicTemplateXmlFiles
-
- CreateThumbnails = False
- if CreateThumbnails:
- result = create_thumbnails(base_project_file, project)
- results.extend(result); del result
- del CreateThumbnails
-
- CreateMaps = False
- if CreateMaps:
- result = create_maps(base_project_file, project, dataset=rf"{project_gdb}\DisMAP_Regions")
- results.extend(result); del result
- del CreateMaps
-
- ExportToInportXmlFiles = False
- if ExportToInportXmlFiles:
- result = export_to_inport_xml_files(base_project_file, project)
- results.extend(result); del result
- del ExportToInportXmlFiles
-
- except Exception as e:
- arcpy.AddError(str(e))
-
- # Variable created in function
- del project_gdb
- # Function parameters
- del base_project_file, project
-
- except KeyboardInterrupt:
- raise SystemExit
- except arcpy.ExecuteWarning:
- arcpy.AddWarning(arcpy.GetMessages(1))
- except arcpy.ExecuteError:
- arcpy.AddError(arcpy.GetMessages(2))
- traceback.print_exc()
- except Exception:
- pass
- except:
- traceback.print_exc()
- else:
- try:
- leave_out_keys = ["leave_out_keys", "results"]
- remaining_keys = [key for key in locals().keys() if not key.startswith('__') and key not in leave_out_keys]
- if remaining_keys:
- arcpy.AddWarning(f"Remaining Keys in '{inspect.stack()[0][3]}': ##--> '{', '.join(remaining_keys)}' <--## Line Number: {traceback.extract_stack()[-1].lineno}")
- del leave_out_keys, remaining_keys
- return results if "results" in locals().keys() else ["NOTE!! The 'results' variable not yet set!!"]
- except:
- raise Exception(traceback.print_exc())
- finally:
- if "results" in locals().keys(): del results
-
-if __name__ == "__main__":
- try:
- # Import this Python module
- import dismap_metadata_processing
- importlib.reload(dismap_metadata_processing)
-
- print(f"{'-' * 90}")
- print(f"Python Script: {os.path.basename(__file__)}")
- print(f"Location: {os.path.dirname(__file__)}")
- print(f"Python Version: {sys.version} Environment: {os.path.basename(sys.exec_prefix)}")
- print(f"{'-' * 90}\n")
-
- #project = "May 1 2024"
- #project = "July 1 2024"
- #project = "December 1 2024"
- project = "April 1 2023"
-
- # Tested on 8/1/2024 -- PASSED
- main(project=project)
-
- del project
-
- from time import localtime, strftime
-
- print(f"\n{'-' * 90}")
- print(f"Python script: {os.path.basename(__file__)} successfully completed {strftime('%a %b %d %I:%M %p', localtime())}")
- print(f"{'-' * 90}")
- del localtime, strftime
-
- except:
- traceback.print_exc()
- else:
- leave_out_keys = ["leave_out_keys" ]
- leave_out_keys.extend([name for name, obj in inspect.getmembers(sys.modules[__name__]) if inspect.isfunction(obj) or inspect.ismodule(obj)])
- remaining_keys = [key for key in locals().keys() if not key.startswith("__") and key not in leave_out_keys]
- if remaining_keys: arcpy.AddWarning(f"Remaining Keys: ##--> '{', '.join(remaining_keys)}' <--##")
- del leave_out_keys, remaining_keys
- finally:
- pass
diff --git a/ArcGIS-Analysis-Python/Scripts/metadata_validation_report.csv b/ArcGIS-Analysis-Python/Scripts/metadata_validation_report.csv
deleted file mode 100644
index 9fcb6a9..0000000
--- a/ArcGIS-Analysis-Python/Scripts/metadata_validation_report.csv
+++ /dev/null
@@ -1,162 +0,0 @@
-filename,Title_present,Title_source,Abstract_present,Abstract_source,MD File ID_present,MD File ID_source,Contact_present,Contact_source,Keywords_present,Keywords_source,Publication Date_present,Publication Date_source,Maintenance Frequency_present,Maintenance Frequency_source,Presentation Form_present,Presentation Form_source,EsriCreationDate_present,EsriCreationDate_source,BoundingBox_present,BoundingBox_source,title,mdFileID,pubdate,missing_user_action,missing_arcgis_auto,error
-Aleutian Islands Layer Species Year Image Name Table 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Aleutian Islands Layer Species Year Image Name Table 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Aleutian Islands Bathymetry 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Aleutian Islands Bathymetry 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Aleutian Islands Extent Points 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Aleutian Islands Extent Points 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Aleutian Islands Fishnet 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Aleutian Islands Fishnet 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Aleutian Islands IDW 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Aleutian Islands IDW 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Aleutian Islands IDW Mosaic 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Aleutian Islands IDW Mosaic 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Aleutian Islands Lat Long 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Aleutian Islands Lat Long 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Aleutian Islands Latitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Aleutian Islands Latitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Aleutian Islands Longitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Aleutian Islands Longitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Aleutian Islands Raster Mask 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Aleutian Islands Raster Mask 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Aleutian Islands Sample Locations 20260201.xml,True,user,False,user,False,user,False,user,False,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Aleutian Islands Sample Locations 20260201,,,abstract;mdFileID;contact;keywords;publication_date;maintenance_frequency;presentation_form,bbox,
-Datasets 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Datasets 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-DisMAP Regions 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,DisMAP Regions 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-DisMAP Survey Info Table 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,DisMAP Survey Info Table 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Eastern Bering Sea Layer Species Year Image Name Table 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Eastern Bering Sea Layer Species Year Image Name Table 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Eastern Bering Sea Bathymetry 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Eastern Bering Sea Bathymetry 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Eastern Bering Sea Extent Points 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Eastern Bering Sea Extent Points 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Eastern Bering Sea Fishnet 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Eastern Bering Sea Fishnet 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Eastern Bering Sea IDW 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Eastern Bering Sea IDW 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Eastern Bering Sea IDW Mosaic 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Eastern Bering Sea IDW Mosaic 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Eastern Bering Sea Lat Long 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Eastern Bering Sea Lat Long 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Eastern Bering Sea Latitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Eastern Bering Sea Latitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Eastern Bering Sea Longitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Eastern Bering Sea Longitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Eastern Bering Sea Raster Mask 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Eastern Bering Sea Raster Mask 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Eastern Bering Sea Sample Locations 20260201.xml,True,user,False,user,False,user,False,user,False,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Eastern Bering Sea Sample Locations 20260201,,,abstract;mdFileID;contact;keywords;publication_date;maintenance_frequency;presentation_form,bbox,
-Eastern and Northern Bering Sea Layer Species Year Image Name Table 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Eastern and Northern Bering Sea Layer Species Year Image Name Table 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Eastern and Northern Bering Sea Bathymetry 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Eastern and Northern Bering Sea Bathymetry 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Eastern and Northern Bering Sea Extent Points 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Eastern and Northern Bering Sea Extent Points 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Eastern and Northern Bering Sea Fishnet 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Eastern and Northern Bering Sea Fishnet 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Eastern and Northern Bering Sea IDW 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Eastern and Northern Bering Sea IDW 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Eastern and Northern Bering Sea IDW Mosaic 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Eastern and Northern Bering Sea IDW Mosaic 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Eastern and Northern Bering Sea Lat Long 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Eastern and Northern Bering Sea Lat Long 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Eastern and Northern Bering Sea Latitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Eastern and Northern Bering Sea Latitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Eastern and Northern Bering Sea Longitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Eastern and Northern Bering Sea Longitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Eastern and Northern Bering Sea Raster Mask 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Eastern and Northern Bering Sea Raster Mask 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Eastern and Northern Bering Sea Sample Locations 20260201.xml,True,user,False,user,False,user,False,user,False,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Eastern and Northern Bering Sea Sample Locations 20260201,,,abstract;mdFileID;contact;keywords;publication_date;maintenance_frequency;presentation_form,bbox,
-Gulf of Alaska Layer Species Year Image Name Table 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Gulf of Alaska Layer Species Year Image Name Table 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Gulf of Alaska Bathymetry 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Gulf of Alaska Bathymetry 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Gulf of Alaska Extent Points 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Gulf of Alaska Extent Points 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Gulf of Alaska Fishnet 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Gulf of Alaska Fishnet 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Gulf of Alaska IDW 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Gulf of Alaska IDW 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Gulf of Alaska IDW Mosaic 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Gulf of Alaska IDW Mosaic 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Gulf of Alaska Lat Long 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Gulf of Alaska Lat Long 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Gulf of Alaska Latitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Gulf of Alaska Latitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Gulf of Alaska Longitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Gulf of Alaska Longitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Gulf of Alaska Raster Mask 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Gulf of Alaska Raster Mask 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Gulf of Alaska Sample Locations 20260201.xml,True,user,False,user,False,user,False,user,False,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Gulf of Alaska Sample Locations 20260201,,,abstract;mdFileID;contact;keywords;publication_date;maintenance_frequency;presentation_form,bbox,
-Gulf of Mexico Layer Species Year Image Name Table 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Gulf of Mexico Layer Species Year Image Name Table 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Gulf of Mexico Bathymetry 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Gulf of Mexico Bathymetry 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Gulf of Mexico Extent Points 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Gulf of Mexico Extent Points 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Gulf of Mexico Fishnet 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Gulf of Mexico Fishnet 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Gulf of Mexico IDW 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Gulf of Mexico IDW 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Gulf of Mexico IDW Mosaic 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Gulf of Mexico IDW Mosaic 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Gulf of Mexico Lat Long 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Gulf of Mexico Lat Long 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Gulf of Mexico Latitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Gulf of Mexico Latitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Gulf of Mexico Longitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Gulf of Mexico Longitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Gulf of Mexico Raster Mask 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Gulf of Mexico Raster Mask 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Gulf of Mexico Sample Locations 20260201.xml,True,user,False,user,False,user,False,user,False,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Gulf of Mexico Sample Locations 20260201,,,abstract;mdFileID;contact;keywords;publication_date;maintenance_frequency;presentation_form,bbox,
-Hawai'i Islands Layer Species Year Image Name Table 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Hawai'i Islands Layer Species Year Image Name Table 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Hawai'i Islands Bathymetry 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Hawai'i Islands Bathymetry 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Hawai'i Islands Extent Points 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Hawai'i Islands Extent Points 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Hawai'i Islands Fishnet 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Hawai'i Islands Fishnet 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Hawai'i Islands IDW 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Hawai'i Islands IDW 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Hawai'i Islands IDW Mosaic 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Hawai'i Islands IDW Mosaic 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Hawai'i Islands Lat Long 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Hawai'i Islands Lat Long 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Hawai'i Islands Latitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Hawai'i Islands Latitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Hawai'i Islands Longitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Hawai'i Islands Longitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Hawai'i Islands Raster Mask 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Hawai'i Islands Raster Mask 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Hawai'i Islands Sample Locations 20260201.xml,True,user,False,user,False,user,False,user,False,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Hawai'i Islands Sample Locations 20260201,,,abstract;mdFileID;contact;keywords;publication_date;maintenance_frequency;presentation_form,bbox,
-Indicators 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Indicators 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northeast US Fall Bathymetry 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northeast US Fall Bathymetry 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northeast US Fall Extent Points 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northeast US Fall Extent Points 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northeast US Fall Fishnet 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northeast US Fall Fishnet 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northeast US Fall IDW 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northeast US Fall IDW 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northeast US Fall IDW Mosaic 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northeast US Fall IDW Mosaic 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northeast US Fall Lat Long 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northeast US Fall Lat Long 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northeast US Fall Latitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northeast US Fall Latitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northeast US Fall Layer Species Year Image Name Table 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northeast US Fall Layer Species Year Image Name Table 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northeast US Fall Longitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northeast US Fall Longitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northeast US Fall Raster Mask 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northeast US Fall Raster Mask 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northeast US Fall Sample Locations 20260201.xml,True,user,False,user,False,user,False,user,False,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northeast US Fall Sample Locations 20260201,,,abstract;mdFileID;contact;keywords;publication_date;maintenance_frequency;presentation_form,bbox,
-Northeast US Spring Bathymetry 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northeast US Spring Bathymetry 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northeast US Spring Extent Points 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northeast US Spring Extent Points 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northeast US Spring Fishnet 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northeast US Spring Fishnet 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northeast US Spring IDW 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northeast US Spring IDW 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northeast US Spring IDW Mosaic 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northeast US Spring IDW Mosaic 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northeast US Spring Lat Long 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northeast US Spring Lat Long 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northeast US Spring Latitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northeast US Spring Latitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northeast US Spring Layer Species Year Image Name Table 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northeast US Spring Layer Species Year Image Name Table 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northeast US Spring Longitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northeast US Spring Longitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northeast US Spring Raster Mask 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northeast US Spring Raster Mask 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northeast US Spring Sample Locations 20260201.xml,True,user,False,user,False,user,False,user,False,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northeast US Spring Sample Locations 20260201,,,abstract;mdFileID;contact;keywords;publication_date;maintenance_frequency;presentation_form,bbox,
-Northern Bering Sea Layer Species Year Image Name Table 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northern Bering Sea Layer Species Year Image Name Table 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northern Bering Sea Bathymetry 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northern Bering Sea Bathymetry 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northern Bering Sea Extent Points 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northern Bering Sea Extent Points 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northern Bering Sea Fishnet 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northern Bering Sea Fishnet 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northern Bering Sea IDW 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northern Bering Sea IDW 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northern Bering Sea IDW Mosaic 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northern Bering Sea IDW Mosaic 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northern Bering Sea Lat Long 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northern Bering Sea Lat Long 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northern Bering Sea Latitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northern Bering Sea Latitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northern Bering Sea Longitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northern Bering Sea Longitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northern Bering Sea Raster Mask 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northern Bering Sea Raster Mask 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Northern Bering Sea Sample Locations 20260201.xml,True,user,False,user,False,user,False,user,False,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Northern Bering Sea Sample Locations 20260201,,,abstract;mdFileID;contact;keywords;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Fall Bathymetry 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Fall Bathymetry 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Fall Extent Points 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Fall Extent Points 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Fall Fishnet 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Fall Fishnet 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Fall IDW 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Fall IDW 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Fall IDW Mosaic 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Fall IDW Mosaic 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Fall Lat Long 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Fall Lat Long 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Fall Latitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Fall Latitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Fall Layer Species Year Image Name Table 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Fall Layer Species Year Image Name Table 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Fall Longitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Fall Longitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Fall Raster Mask 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Fall Raster Mask 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Fall Sample Locations 20260201.xml,True,user,False,user,False,user,False,user,False,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Fall Sample Locations 20260201,,,abstract;mdFileID;contact;keywords;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Spring Bathymetry 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Spring Bathymetry 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Spring Extent Points 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Spring Extent Points 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Spring Fishnet 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Spring Fishnet 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Spring IDW 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Spring IDW 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Spring IDW Mosaic 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Spring IDW Mosaic 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Spring Lat Long 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Spring Lat Long 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Spring Latitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Spring Latitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Spring Layer Species Year Image Name Table 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Spring Layer Species Year Image Name Table 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Spring Longitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Spring Longitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Spring Raster Mask 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Spring Raster Mask 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Spring Sample Locations 20260201.xml,True,user,False,user,False,user,False,user,False,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Spring Sample Locations 20260201,,,abstract;mdFileID;contact;keywords;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Summer Bathymetry 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Summer Bathymetry 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Summer Extent Points 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Summer Extent Points 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Summer Fishnet 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Summer Fishnet 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Summer IDW 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Summer IDW 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Summer IDW Mosaic 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Summer IDW Mosaic 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Summer Lat Long 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Summer Lat Long 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Summer Latitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Summer Latitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Summer Layer Species Year Image Name Table 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Summer Layer Species Year Image Name Table 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Summer Longitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Summer Longitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Summer Raster Mask 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Summer Raster Mask 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Southeast US Summer Sample Locations 20260201.xml,True,user,False,user,False,user,False,user,False,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Southeast US Summer Sample Locations 20260201,,,abstract;mdFileID;contact;keywords;publication_date;maintenance_frequency;presentation_form,bbox,
-Species Filter Table 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Species Filter Table 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Species Persistence Indicator Percentile Bin Table 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Species Persistence Indicator Percentile Bin Table 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-Species Persistence Indicator Trend Table 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,Species Persistence Indicator Trend Table 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-West Coast Annual Bathymetry 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,West Coast Annual Bathymetry 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-West Coast Annual Extent Points 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,West Coast Annual Extent Points 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-West Coast Annual Fishnet 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,West Coast Annual Fishnet 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-West Coast Annual IDW 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,West Coast Annual IDW 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-West Coast Annual IDW Mosaic 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,West Coast Annual IDW Mosaic 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-West Coast Annual Lat Long 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,West Coast Annual Lat Long 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-West Coast Annual Latitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,West Coast Annual Latitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-West Coast Annual Layer Species Year Image Name Table 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,West Coast Annual Layer Species Year Image Name Table 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-West Coast Annual Longitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,West Coast Annual Longitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-West Coast Annual Raster Mask 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,West Coast Annual Raster Mask 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-West Coast Annual Sample Locations 20260201.xml,True,user,False,user,False,user,False,user,False,user,False,user,False,user,False,user,True,arcgis,False,arcgis,West Coast Annual Sample Locations 20260201,,,abstract;mdFileID;contact;keywords;publication_date;maintenance_frequency;presentation_form,bbox,
-West Coast Triennial Bathymetry 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,West Coast Triennial Bathymetry 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-West Coast Triennial Extent Points 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,West Coast Triennial Extent Points 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-West Coast Triennial Fishnet 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,West Coast Triennial Fishnet 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-West Coast Triennial IDW 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,West Coast Triennial IDW 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-West Coast Triennial IDW Mosaic 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,West Coast Triennial IDW Mosaic 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-West Coast Triennial Lat Long 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,West Coast Triennial Lat Long 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-West Coast Triennial Latitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,West Coast Triennial Latitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-West Coast Triennial Layer Species Year Image Name Table 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,West Coast Triennial Layer Species Year Image Name Table 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-West Coast Triennial Longitude 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,West Coast Triennial Longitude 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-West Coast Triennial Raster Mask 20260201.xml,True,user,True,user,False,user,False,user,True,user,False,user,False,user,False,user,True,arcgis,False,arcgis,West Coast Triennial Raster Mask 20260201,,,mdFileID;contact;publication_date;maintenance_frequency;presentation_form,bbox,
-West Coast Triennial Sample Locations 20260201.xml,True,user,False,user,False,user,False,user,False,user,False,user,False,user,False,user,True,arcgis,False,arcgis,West Coast Triennial Sample Locations 20260201,,,abstract;mdFileID;contact;keywords;publication_date;maintenance_frequency;presentation_form,bbox,
diff --git a/ArcGIS-Analysis-Python/Scripts/summarize_missing_user_fields.py b/ArcGIS-Analysis-Python/Scripts/summarize_missing_user_fields.py
deleted file mode 100644
index 938e0e1..0000000
--- a/ArcGIS-Analysis-Python/Scripts/summarize_missing_user_fields.py
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/usr/bin/env python3
-import csv
-import collections
-import os
-
-csv_path = os.path.join(os.path.dirname(__file__), 'metadata_validation_report.csv')
-if not os.path.exists(csv_path):
- print('Report not found:', csv_path)
- raise SystemExit(2)
-
-counter = collections.Counter()
-rows = 0
-with open(csv_path, encoding='utf-8') as f:
- reader = csv.DictReader(f)
- for row in reader:
- rows += 1
- miss = row.get('missing_user_action', '') or ''
- for k in miss.split(';'):
- k = k.strip()
- if k:
- counter[k] += 1
-
-print('Total metadata files:', rows)
-print('\nTop missing user-maintained fields:')
-for key, cnt in counter.most_common():
- print(f'{key}: {cnt}')
diff --git a/ArcGIS-Analysis-Python/Scripts/validate_metadata_exports.py b/ArcGIS-Analysis-Python/Scripts/validate_metadata_exports.py
deleted file mode 100644
index 5d48e42..0000000
--- a/ArcGIS-Analysis-Python/Scripts/validate_metadata_exports.py
+++ /dev/null
@@ -1,225 +0,0 @@
-#!/usr/bin/env python3
-"""Simple validator for Metadata_Export XML files.
-
-Checks multiple metadata elements for presence and reports which are
-likely user-maintained vs automatically managed by ArcGIS Pro.
-
-Fields checked and assumed source:
- - title (`resTitle`): user
- - abstract (`idAbs`): user
- - mdFileID (`mdFileID`): user
- - contact (email/org/person): user
- - keywords (`themeKeys`/`placeKeys`): user
- - publication date (`idCitation/date/pubDate`): user
- - maintenance frequency (`resMaint/maintFreq`): user
- - data presentation form (`presForm`): user
- - bounding box (west/east/north/south): arcgis
- - Esri creation date (`Esri/CreaDate`): arcgis
-
-The script writes a CSV with boolean flags for each field plus a
-`missing_user_action` column listing missing fields that need user input.
-"""
-import csv
-import os
-import sys
-import xml.etree.ElementTree as ET
-
-
-def find_text_by_localname(root, localname):
- for elem in root.iter():
- if isinstance(elem.tag, str) and elem.tag.endswith('}' + localname):
- return (elem.text or '').strip()
- if isinstance(elem.tag, str) and elem.tag == localname:
- return (elem.text or '').strip()
- return ''
-
-
-def find_all_localnames(root, localname):
- vals = []
- for elem in root.iter():
- if not isinstance(elem.tag, str):
- continue
- if elem.tag.endswith('}' + localname) or elem.tag == localname:
- if (elem.text or '').strip():
- vals.append((elem.text or '').strip())
- return vals
-
-
-def has_contact(root):
- # look for email or organization name in common contact elements
- for elem in root.iter():
- tag = elem.tag
- if not isinstance(tag, str):
- continue
- lname = tag.split('}')[-1]
- if lname in ('eMailAdd', 'rpOrgName', 'rpIndName'):
- if (elem.text or '').strip():
- return True
- return False
-
-
-def has_bbox(root):
- # common ISO element names for bounding box
- required = ('westBoundLongitude', 'eastBoundLongitude', 'northBoundLatitude', 'southBoundLatitude')
- found = set()
- for elem in root.iter():
- if not isinstance(elem.tag, str):
- continue
- lname = elem.tag.split('}')[-1]
- if lname in required and (elem.text or '').strip():
- found.add(lname)
- return len(found) == 4
-
-
-def has_keywords(root):
- # look for any elements under themeKeys or placeKeys or elsewhere
- kws = find_all_localnames(root, 'keyword')
- return len(kws) > 0
-
-
-def validate_file(path):
- try:
- tree = ET.parse(path)
- root = tree.getroot()
- except Exception as e:
- return {'error': str(e)}
-
- # basic checks
- title = find_text_by_localname(root, 'resTitle')
- abstract = find_text_by_localname(root, 'idAbs')
- mdFileID = find_text_by_localname(root, 'mdFileID')
- contact = has_contact(root)
-
- # additional checks
- keywords = has_keywords(root)
- pubdate = find_text_by_localname(root, 'pubDate')
- maintfreq = find_text_by_localname(root, 'MaintFreqCd') or find_text_by_localname(root, 'maintFreq')
- presform = find_text_by_localname(root, 'PresFormCd') or find_text_by_localname(root, 'presForm')
- esri_crea = find_text_by_localname(root, 'CreaDate') or find_text_by_localname(root, 'Esri/CreaDate')
- bbox = has_bbox(root)
- # extended checks
- # extent CRS - ArcGIS usually populates spatial reference info
- extent_crs = bool(find_text_by_localname(root, 'referenceSystemIdentifier') or
- find_text_by_localname(root, 'srsName') or
- find_text_by_localname(root, 'referenceSystem') or
- find_text_by_localname(root, 'gmd:referenceSystemInfo'))
-
- # contact roles (e.g., originator, point of contact, metadata contact)
- contact_roles = False
- for elem in root.iter():
- if not isinstance(elem.tag, str):
- continue
- lname = elem.tag.split('}')[-1]
- if lname in ('RoleCd', 'role') and (elem.text or elem.get('value') or '').strip():
- contact_roles = True
- break
-
- # data sources and process steps
- data_sources = bool(find_all_localnames(root, 'srcInfo') or find_all_localnames(root, 'source') or find_all_localnames(root, 'sourceDesc'))
- process_steps = bool(find_all_localnames(root, 'processStep'))
-
- # distribution info
- distribution = bool(find_all_localnames(root, 'distInfo') or find_all_localnames(root, 'distributor') or find_all_localnames(root, 'distorCont'))
-
- # license / use constraints
- license_info = bool(find_all_localnames(root, 'useLimitation') or find_all_localnames(root, 'accessConstraints') or find_all_localnames(root, 'useConstraints'))
-
- # mapping of field -> (present_bool, source)
- checks = {
- 'title': (bool(title), 'user'),
- 'abstract': (bool(abstract), 'user'),
- 'mdFileID': (bool(mdFileID), 'user'),
- 'contact': (contact, 'user'),
- 'keywords': (keywords, 'user'),
- 'publication_date': (bool(pubdate), 'user'),
- 'maintenance_frequency': (bool(maintfreq), 'user'),
- 'presentation_form': (bool(presform), 'user'),
- 'esri_creation_date': (bool(esri_crea), 'arcgis'),
- 'bbox': (bbox, 'arcgis'),
- 'extent_crs': (extent_crs, 'arcgis'),
- 'contact_roles': (contact_roles, 'user'),
- 'data_sources': (data_sources, 'user'),
- 'process_steps': (process_steps, 'user'),
- 'distribution': (distribution, 'user'),
- 'license': (license_info, 'user'),
- }
-
- return {
- 'checks': checks,
- 'title': title,
- 'mdFileID': mdFileID,
- 'pubdate': pubdate,
- 'error': None,
- }
-
-
-def main():
- base = os.path.join(os.path.dirname(__file__), '..', 'February 1 2026', 'Metadata_Export')
- base = os.path.normpath(base)
- if not os.path.isdir(base):
- print('Metadata_Export folder not found at', base)
- sys.exit(2)
-
- out_path = os.path.join(os.path.dirname(__file__), 'metadata_validation_report.csv')
- files = [f for f in os.listdir(base) if f.lower().endswith('.xml')]
- files.sort()
-
- # define fields and output header
- fields = [
- ('title', 'Title'),
- ('abstract', 'Abstract'),
- ('mdFileID', 'MD File ID'),
- ('contact', 'Contact'),
- ('keywords', 'Keywords'),
- ('publication_date', 'Publication Date'),
- ('maintenance_frequency', 'Maintenance Frequency'),
- ('presentation_form', 'Presentation Form'),
- ('esri_creation_date', 'EsriCreationDate'),
- ('bbox', 'BoundingBox'),
- ]
-
- header = ['filename']
- for key, label in fields:
- header.append(f"{label}_present")
- header.append(f"{label}_source")
- header += ['title', 'mdFileID', 'pubdate', 'missing_user_action', 'missing_arcgis_auto', 'error']
-
- with open(out_path, 'w', newline='', encoding='utf-8') as csvfile:
- writer = csv.writer(csvfile)
- writer.writerow(header)
- for fn in files:
- path = os.path.join(base, fn)
- res = validate_file(path)
- if 'error' in res and res['error']:
- # write row with error
- row = [fn] + [''] * (len(header) - 2) + [res['error']]
- writer.writerow(row)
- continue
-
- checks = res.get('checks', {})
- row = [fn]
- missing_user = []
- missing_arcgis = []
- for key, _ in fields:
- present, source = checks.get(key, (False, 'unknown'))
- row.append(str(bool(present)))
- row.append(source)
- if not present:
- if source == 'user':
- missing_user.append(key)
- elif source == 'arcgis':
- missing_arcgis.append(key)
-
- row.append(res.get('title', ''))
- row.append(res.get('mdFileID', ''))
- row.append(res.get('pubdate', ''))
- row.append(';'.join(missing_user))
- row.append(';'.join(missing_arcgis))
- row.append('')
- writer.writerow(row)
-
- print('Validation complete. Report at:', out_path)
-
-
-if __name__ == '__main__':
- main()
diff --git a/ArcGIS-Analysis-Python/__init__.py b/ArcGIS-Analysis-Python/__init__.py
deleted file mode 100644
index 1289903..0000000
--- a/ArcGIS-Analysis-Python/__init__.py
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/env python3
-# For relative imports to work in Python 3.13
-
diff --git a/ArcGIS-Analysis-Python/inport_to_arcgis_metadata_converter.py b/ArcGIS-Analysis-Python/inport_to_arcgis_metadata_converter.py
deleted file mode 100644
index 2672ee5..0000000
--- a/ArcGIS-Analysis-Python/inport_to_arcgis_metadata_converter.py
+++ /dev/null
@@ -1,245 +0,0 @@
-import xml.etree.ElementTree as ET
-from xml.dom import minidom # For pretty printing XML
-import os # For path manipulation
-
-def parse_inport_xml(inport_xml_path):
- """
- Parses an InPort XML file and extracts relevant metadata into a dictionary.
-
- Args:
- inport_xml_path (str): Absolute path to the InPort XML file.
-
- Returns:
- dict: A dictionary containing extracted metadata.
- """
- try:
- tree = ET.parse(inport_xml_path)
- root = tree.getroot()
- except ET.ParseError as e:
- print(f"Error parsing InPort XML file {inport_xml_path}: {e}")
- return {}
- except FileNotFoundError:
- print(f"InPort XML file not found at {inport_xml_path}")
- return {}
-
- metadata = {}
-
- # --- Item Identification ---
- item_id = root.find('item-identification')
- if item_id is not None:
- metadata['title'] = item_id.findtext('title')
- metadata['abstract'] = item_id.findtext('abstract')
- metadata['purpose'] = item_id.findtext('purpose')
-
- # --- Keywords ---
- metadata['keywords'] = []
- for keyword_elem in root.findall('keywords/keyword'):
- keyword_text = keyword_elem.findtext('keyword')
- if keyword_text:
- metadata['keywords'].append(keyword_text)
-
- # --- Support Roles (Contacts) ---
- metadata['point_of_contact'] = {}
- metadata['metadata_contact'] = {}
- for role_elem in root.findall('support-roles/support-role'):
- role_type = role_elem.findtext('support-role-type')
- contact_info = {}
- contact_info['name'] = role_elem.findtext('contact-name')
- contact_info['email'] = role_elem.findtext('contact-email')
- contact_info['phone'] = role_elem.findtext('contact-phone-number')
-
- # Extract address details
- contact_info['address'] = role_elem.findtext('contact-address')
- contact_info['city'] = role_elem.findtext('contact-address-city')
- contact_info['state'] = role_elem.findtext('contact-address-state')
- contact_info['zip'] = role_elem.findtext('contact-address-zip')
- contact_info['country'] = role_elem.findtext('contact-address-country')
-
- if role_type == 'Point of Contact':
- metadata['point_of_contact'] = contact_info
- elif role_type == 'Metadata Contact':
- metadata['metadata_contact'] = contact_info
-
- # --- Extents (Geographic and Temporal) ---
- extents_elem = root.find('extents/extent')
- if extents_elem is not None:
- geo_area = extents_elem.find('geographic-areas/geographic-area')
- if geo_area is not None:
- metadata['west_bound'] = geo_area.findtext('west-bound')
- metadata['east_bound'] = geo_area.findtext('east-bound')
- metadata['north_bound'] = geo_area.findtext('north-bound')
- metadata['south_bound'] = geo_area.findtext('south-bound')
-
- time_frame = extents_elem.find('time-frames/time-frame')
- if time_frame is not None:
- metadata['start_date'] = time_frame.findtext('start-date-time')
- metadata['end_date'] = time_frame.findtext('end-date-time')
-
- # --- Access Information (Use Constraints) ---
- access_info = root.find('access-information')
- if access_info is not None:
- metadata['use_constraints'] = access_info.findtext('data-use-constraints')
-
- return metadata
-
-def create_arcgis_metadata_xml(metadata, output_xml_path):
- """
- Creates an ArcGIS metadata XML file from extracted metadata.
- This function constructs a simplified ArcGIS metadata structure,
- focusing on key elements mapped from InPort.
-
- Args:
- metadata (dict): Dictionary containing metadata extracted from InPort.
- output_xml_path (str): Absolute path to save the generated ArcGIS XML file.
- """
- # Root element for ArcGIS metadata
- root = ET.Element("metadata", attrib={"xml:lang": "en"})
-
- # Esri block - many values are typically hardcoded or derived from the ArcGIS environment
- esri_elem = ET.SubElement(root, "Esri")
- esri_elem.append(ET.Comment("These Esri-specific tags are placeholders and may need adjustment."))
- ET.SubElement(esri_elem, "CreaDate").text = "20230407" # Example creation date
- ET.SubElement(esri_elem, "CreaTime").text = "16462600" # Example creation time
- ET.SubElement(esri_elem, "ArcGISFormat").text = "1.0"
- ET.SubElement(esri_elem, "SyncOnce").text = "FALSE"
- # Add other Esri elements as needed based on your ArcGIS metadata standard
-
- # Data Identification Information
- data_id_info = ET.SubElement(root, "dataIdInfo")
-
- # Citation
- id_citation = ET.SubElement(data_id_info, "idCitation")
- res_title = ET.SubElement(id_citation, "resTitle", attrib={"Sync": "TRUE"})
- res_title.text = metadata.get('title', 'Untitled Resource from InPort')
-
- date_elem = ET.SubElement(id_citation, "date")
- pub_date = ET.SubElement(date_elem, "pubDate")
- # ArcGIS often expects YYYY-MM-DDTHH:MM:SS format for pubDate
- # We take the date part from InPort's start_date and append a default time
- pub_date.text = metadata.get('start_date', '1900-01-01T00:00:00').split('T')[0] + 'T00:00:00'
-
- # Abstract and Purpose
- id_abs = ET.SubElement(data_id_info, "idAbs")
- id_abs.text = metadata.get('abstract', 'No abstract provided in InPort XML.')
-
- id_purp = ET.SubElement(data_id_info, "idPurp")
- id_purp.text = metadata.get('purpose', 'No purpose provided in InPort XML.')
-
- # Keywords
- search_keys = ET.SubElement(data_id_info, "searchKeys")
- for keyword in metadata.get('keywords', []):
- ET.SubElement(search_keys, "keyword").text = keyword
-
- # Theme Keys (often duplicates search keys in ArcGIS metadata, or uses a controlled vocabulary)
- theme_keys = ET.SubElement(data_id_info, "themeKeys")
- ET.SubElement(ET.SubElement(theme_keys, "thesaLang"), "languageCode", attrib={"value": "eng"})
- for keyword in metadata.get('keywords', []):
- ET.SubElement(theme_keys, "keyword").text = keyword
-
- # Use Constraints
- res_const = ET.SubElement(data_id_info, "resConst")
- consts = ET.SubElement(res_const, "Consts")
- use_limit = ET.SubElement(consts, "useLimit")
- use_limit.text = metadata.get('use_constraints', 'No warranty expressed or implied. User assumes entire risk.')
-
- # Geographic Extent
- data_ext = ET.SubElement(data_id_info, "dataExt")
- geo_ele = ET.SubElement(data_ext, "geoEle")
- geo_bnd_box = ET.SubElement(geo_ele, "GeoBndBox", attrib={"esriExtentType": "search"})
- ET.SubElement(geo_bnd_box, "westBL", attrib={"Sync": "TRUE"}).text = metadata.get('west_bound', '-180')
- ET.SubElement(geo_bnd_box, "eastBL", attrib={"Sync": "TRUE"}).text = metadata.get('east_bound', '180')
- ET.SubElement(geo_bnd_box, "northBL", attrib={"Sync": "TRUE"}).text = metadata.get('north_bound', '90')
- ET.SubElement(geo_bnd_box, "southBL", attrib={"Sync": "TRUE"}).text = metadata.get('south_bound', '-90')
- ET.SubElement(geo_bnd_box, "exTypeCode").text = "1"
-
- # Temporal Extent
- temp_ele = ET.SubElement(data_ext, "tempEle")
- temp_extent = ET.SubElement(temp_ele, "TempExtent")
- ex_temp = ET.SubElement(temp_extent, "exTemp")
- tm_period = ET.SubElement(ex_temp, "TM_Period")
- ET.SubElement(tm_period, "tmBegin").text = metadata.get('start_date', 'UNKNOWN')
- ET.SubElement(tm_period, "tmEnd").text = metadata.get('end_date', 'UNKNOWN')
-
- # Point of Contact (idPoC)
- poc_data = metadata.get('point_of_contact', {})
- if poc_data:
- id_poc = ET.SubElement(data_id_info, "idPoC")
- ET.SubElement(id_poc, "rpIndName").text = poc_data.get('name', 'Unknown')
- ET.SubElement(id_poc, "rpOrgName").text = "NMFS/OST/AMD" # Placeholder
- ET.SubElement(id_poc, "rpPosName").text = "Fisheries Science Coordinator" # Placeholder
- cnt_info = ET.SubElement(id_poc, "rpCntInfo")
- cnt_address = ET.SubElement(cnt_info, "cntAddress", attrib={"addressType": "both"})
- ET.SubElement(cnt_address, "delPoint").text = poc_data.get('address', 'N/A')
- ET.SubElement(cnt_address, "city").text = poc_data.get('city', 'N/A')
- ET.SubElement(cnt_address, "adminArea").text = poc_data.get('state', 'N/A')
- ET.SubElement(cnt_address, "postCode").text = poc_data.get('zip', 'N/A')
- ET.SubElement(cnt_address, "country").text = poc_data.get('country', 'US')
- ET.SubElement(cnt_address, "eMailAdd").text = poc_data.get('email', 'unknown@noaa.gov')
- cnt_phone = ET.SubElement(cnt_info, "cntPhone")
- ET.SubElement(cnt_phone, "voiceNum").text = poc_data.get('phone', 'N/A')
- ET.SubElement(ET.SubElement(id_poc, "role"), "RoleCd", attrib={"value": "007"}) # Hardcoded role
-
- # Metadata Contact (mdContact)
- md_contact_data = metadata.get('metadata_contact', {})
- if md_contact_data:
- md_contact = ET.SubElement(root, "mdContact")
- ET.SubElement(md_contact, "rpIndName").text = md_contact_data.get('name', 'Unknown')
- ET.SubElement(md_contact, "rpOrgName").text = "NMFS Office of Science and Technology" # Placeholder
- ET.SubElement(md_contact, "rpPosName").text = "GIS Specialist" # Placeholder
- cnt_info = ET.SubElement(md_contact, "rpCntInfo")
- cnt_address = ET.SubElement(cnt_info, "cntAddress", attrib={"addressType": "both"})
- ET.SubElement(cnt_address, "delPoint").text = md_contact_data.get('address', 'N/A')
- ET.SubElement(cnt_address, "city").text = md_contact_data.get('city', 'N/A')
- ET.SubElement(cnt_address, "adminArea").text = md_contact_data.get('state', 'N/A')
- ET.SubElement(cnt_address, "postCode").text = md_contact_data.get('zip', 'N/A')
- ET.SubElement(cnt_address, "eMailAdd").text = md_contact_data.get('email', 'unknown@noaa.gov')
- cnt_phone = ET.SubElement(cnt_info, "cntPhone")
- ET.SubElement(cnt_phone, "voiceNum").text = md_contact_data.get('phone', 'N/A')
- ET.SubElement(ET.SubElement(md_contact, "role"), "RoleCd", attrib={"value": "011"}) # Hardcoded role
-
- # Add other mandatory ArcGIS metadata elements with default/placeholder values
- # These are often static or derived from the ArcGIS environment/template
- ET.SubElement(ET.SubElement(root, "mdChar"), "CharSetCd", attrib={"value": "004"})
- ET.SubElement(root, "mdDateSt", attrib={"Sync": "TRUE"}).text = "20230401" # Example date
- ET.SubElement(root, "mdFileID").text = "gov.noaa.nmfs.inport:" # Placeholder
- md_lang = ET.SubElement(root, "mdLang")
- ET.SubElement(md_lang, "languageCode", attrib={"value": "eng"})
- ET.SubElement(md_lang, "countryCode", attrib={"value": "US"})
- md_maint = ET.SubElement(root, "mdMaint")
- ET.SubElement(ET.SubElement(ET.SubElement(md_maint, "maintFreq"), "MaintFreqCd"), "value").text = "009"
- md_hrlv = ET.SubElement(root, "mdHrLv")
- ET.SubElement(ET.SubElement(md_hrlv, "ScopeCd"), "value").text = "005"
- ET.SubElement(root, "mdHrLvName", attrib={"Sync": "TRUE"}).text = "dataset"
-
- # Pretty print and save the XML
- rough_string = ET.tostring(root, 'utf-8')
- reparsed = minidom.parseString(rough_string)
- pretty_xml_as_string = reparsed.toprettyxml(indent=" ")
-
- try:
- with open(output_xml_path, "w", encoding="utf-8") as f:
- f.write(pretty_xml_as_string)
- print(f"Generated ArcGIS metadata saved to: {output_xml_path}")
- except IOError as e:
- print(f"Error writing ArcGIS XML file {output_xml_path}: {e}")
-
-# --- Example Usage ---
-if __name__ == "__main__":
- inport_file_path = r"c:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\scratch\InPort_66799.xml"
- output_arcgis_file_path = r"c:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\scratch\Generated_ArcGIS_Metadata.xml"
-
- # Ensure the output directory exists
- output_dir = os.path.dirname(output_arcgis_file_path)
- if not os.path.exists(output_dir):
- os.makedirs(output_dir)
-
- # 1. Extract metadata from the InPort XML
- print(f"Parsing InPort XML from: {inport_file_path}")
- extracted_metadata = parse_inport_xml(inport_file_path)
-
- if extracted_metadata:
- # 2. Create the ArcGIS metadata XML
- print(f"Creating ArcGIS metadata XML to: {output_arcgis_file_path}")
- create_arcgis_metadata_xml(extracted_metadata, output_arcgis_file_path)
- else:
- print("Failed to extract metadata from InPort XML. No ArcGIS metadata generated.")
diff --git a/DisMAP.Rproj b/DisMAP.Rproj
deleted file mode 100644
index e83436a..0000000
--- a/DisMAP.Rproj
+++ /dev/null
@@ -1,16 +0,0 @@
-Version: 1.0
-
-RestoreWorkspace: Default
-SaveWorkspace: Default
-AlwaysSaveHistory: Default
-
-EnableCodeIndexing: Yes
-UseSpacesForTab: Yes
-NumSpacesForTab: 2
-Encoding: UTF-8
-
-RnwWeave: Sweave
-LaTeX: pdfLaTeX
-
-AutoAppendNewline: Yes
-StripTrailingWhitespace: Yes
diff --git a/README.md b/README.md
deleted file mode 100644
index 1f72f0e..0000000
--- a/README.md
+++ /dev/null
@@ -1,94 +0,0 @@
-# [The Distribution Mapping and Analysis Portal (DisMAP)](https://github.com/nmfs-fish-tools/DisMAP)
-
-> This code is always in development. Find code used for various reports in the code [releases](https://github.com/nmfs-fish-tools/DisMAP/releases).
-
-The NOAA Fisheries Distribution Mapping and Analysis Portal (DisMAP) provides easy access to information to track and understand distributions of marine fish and macroinvertebrate species in the U.S. Marine Ecosystems. The portal currently provides access to distribution information for over 400 species collected in fishery-independent bottom trawl surveys conducted by NOAA Fisheries or its partners. The portal provides information on three key indicators used to track and explore shifts in species distributions:
- * Distribution of biomass in space and time (i.e., distribution surface)
- * Center of biomass
- * Range limits
-
-This repository provides the data processing and analysis code used to develop the spatial distribution and indicators presented in the portal. For more information and to launch the portal visit: https://apps-st.fisheries.noaa.gov/dismap/index.html.
-
-Explanation of Folders:
-1. data_processing_rcode
-This folder holds all the R scripts needed to download and process the regional bottom trawl survey data. Opening up the DisMAP_Project Rproject file will open all necessary Rscripts to run the analysis and set up the appropriate directory structure. You will need to follow the instructions in each of the "download_x.R" scripts for each to download or obtain from a regional POC the raw survey data. Once the data is downloaded and in the "data" folder, you may run the Compile_Dismap_Current.R script to process and clean the data. After running Compile_Dismap_Current.R, run the create_data_for_map_generation.R to get the data in the needed file format for use in the Python script and generte the interpolated biomass and indicators (as described below)
-
-2. ArcGIS Analysis - Python
-This folder houses the scripts for generating the interpolated biomass and calculating the distribution indicators (latitude, depth, range limits, etc).
-
-### Metadata utilities
-
-The Python directory now includes several utilities to support
-ArcGIS metadata management:
-
-* **`Scripts/validate_metadata_exports.py`** – scans XML files
- exported into `February 1 2026/Metadata_Export` and writes a
- report (`Scripts/metadata_validation_report.csv`) listing which
- records are missing key elements. Fields that are typically supplied
- by a user (title, abstract, contact, mdFileID, publication date,
- maintenance frequency, presentation form, keywords, etc.) are
- distinguished from those automatically populated by ArcGIS (bounding
- box, Esri creation date, spatial reference).
-
-* **`Scripts/summarize_missing_user_fields.py`** – reads the CSV report
- and prints a summary of the most frequently missing user‑maintained
- fields (mdFileID, contact, publication_date, maintenance_frequency,
- presentation_form were missing in every record, with abstracts and
- keywords omitted from a smaller subset).
-
-* **`ArcGIS2InPort.xsl`** – existing XSLT that translates an ArcGIS
- metadata record into the InPort JSON/XML schema used for portal
- ingestion.
-
-* **`prepare_inport_transaction.xsl`** – new wrapper XSLT that imports
- `ArcGIS2InPort.xsl` and emits a `` element. The
- action will be `create` if the input record lacks an `mdFileID`; when
- present the value is assumed to reference an existing InPort item and
- the wrapper emits `update` plus a ``.
-
-These tools make it easier to validate metadata completeness and to
-generate payloads suitable for automating record creation or updates in
-InPort.
-
-
-## Suggestions and Comments
-
-If you see that the data, product, or metadata can be improved, you are
-invited to create a [pull
-request](https://github.com/nmfs-fish-tools/DisMAP/pulls)
-or [submit an issue to the code’s
-repository](https://github.com/nmfs-fish-tools/DisMAP/issues).
-
-## NOAA README
-
-This repository is a scientific product and is not official
-communication of the National Oceanic and Atmospheric Administration, or
-the United States Department of Commerce. All NOAA GitHub project code
-is provided on an ‘as is’ basis and the user assumes responsibility for
-its use. Any claims against the Department of Commerce or Department of
-Commerce bureaus stemming from the use of this GitHub project will be
-governed by all applicable Federal law. Any reference to specific
-commercial products, processes, or services by service mark, trademark,
-manufacturer, or otherwise, does not constitute or imply their
-endorsement, recommendation or favoring by the Department of Commerce.
-The Department of Commerce seal and logo, or the seal and logo of a DOC
-bureau, shall not be used in any manner to imply endorsement of any
-commercial product or activity by DOC or the United States Government.
-
-## NOAA License
-
-Software code created by U.S. Government employees is not subject to
-copyright in the United States (17 U.S.C. §105). The United
-States/Department of Commerce reserve all rights to seek and obtain
-copyright protection in countries other than the United States for
-Software authored in its entirety by the Department of Commerce. To this
-end, the Department of Commerce hereby grants to Recipient a
-royalty-free, nonexclusive license to use, copy, and create derivative
-works of the Software outside of the United States.
-
-
-
-[U.S. Department of Commerce](https://www.commerce.gov/) \| [National
-Oceanographic and Atmospheric Administration](https://www.noaa.gov) \|
-[NOAA Fisheries](https://www.fisheries.noaa.gov/)
-
diff --git a/arcgis_file_index.csv b/arcgis_file_index.csv
deleted file mode 100644
index a844051..0000000
--- a/arcgis_file_index.csv
+++ /dev/null
@@ -1,57368 +0,0 @@
-File Name,Extension,Size,Created,Modified,Accessed,Path
-DisMAP.aprx,.aprx,147.77 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 18:57:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\DisMAP.aprx
-temp.aprx,.aprx,607.89 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 18:57:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\temp.aprx
-April 1 2023.aprx,.aprx,70.82 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 18:57:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\April 1 2023.aprx
-_Datasets.dbf,.dbf,13.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2024-04-24 13:03:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\CSV_Data\_Datasets.dbf
-ai_area.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2024-04-24 13:04:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\AI_IDW\ai_area.dbf
-ai_area.prj,.prj,0.43 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\AI_IDW\ai_area.prj
-ai_area.shp,.shp,967.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\AI_IDW\ai_area.shp
-AI_Boundary.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\AI_IDW\AI_Boundary.dbf
-AI_Boundary.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\AI_IDW\AI_Boundary.prj
-AI_Boundary.shp,.shp,0.98 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\AI_IDW\AI_Boundary.shp
-ai_grid.dbf,.dbf,3.08 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2024-04-24 13:04:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\AI_IDW\ai_grid.dbf
-ai_grid.prj,.prj,0.43 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\AI_IDW\ai_grid.prj
-ai_grid.shp,.shp,7.06 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\AI_IDW\ai_grid.shp
-AI_IDW_Shape.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\AI_IDW\AI_IDW_Shape.dbf
-AI_IDW_Shape.prj,.prj,0.43 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\AI_IDW\AI_IDW_Shape.prj
-AI_IDW_Shape.shp,.shp,1.24 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\AI_IDW\AI_IDW_Shape.shp
-ai_shape.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\AI_IDW\ai_shape.dbf
-ai_shape.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\AI_IDW\ai_shape.prj
-ai_shape.shp,.shp,1.24 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\AI_IDW\ai_shape.shp
-contour_ai.dbf,.dbf,15.13 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\AI_IDW\contour_ai.dbf
-contour_ai.lyr,.lyr,7.00 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2024-04-24 13:04:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\AI_IDW\contour_ai.lyr
-contour_ai.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\AI_IDW\contour_ai.prj
-contour_ai.shp,.shp,1.67 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\AI_IDW\contour_ai.shp
-EBS_IDW_Shape.dbf,.dbf,0.21 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\EBS_IDW\EBS_IDW_Shape.dbf
-EBS_IDW_Shape.prj,.prj,0.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\EBS_IDW\EBS_IDW_Shape.prj
-EBS_IDW_Shape.shp,.shp,144.78 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\EBS_IDW\EBS_IDW_Shape.shp
-ebs_strata.dbf,.dbf,3.17 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\EBS_IDW\ebs_strata.dbf
-ebs_strata.prj,.prj,0.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\EBS_IDW\ebs_strata.prj
-ebs_strata.shp,.shp,171.57 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\EBS_IDW\ebs_strata.shp
-ebs_survey_boundary.dbf,.dbf,0.30 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\EBS_IDW\ebs_survey_boundary.dbf
-ebs_survey_boundary.prj,.prj,0.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\EBS_IDW\ebs_survey_boundary.prj
-ebs_survey_boundary.shp,.shp,154.04 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\EBS_IDW\ebs_survey_boundary.shp
-ENBS_IDW_Shape.dbf,.dbf,0.21 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\ENBS_IDW\ENBS_IDW_Shape.dbf
-ENBS_IDW_Shape.prj,.prj,0.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\ENBS_IDW\ENBS_IDW_Shape.prj
-ENBS_IDW_Shape.shp,.shp,153.66 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\ENBS_IDW\ENBS_IDW_Shape.shp
-contour_gmex.dbf,.dbf,5.00 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GMEX_IDW\contour_gmex.dbf
-contour_gmex.lyr,.lyr,7.00 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2024-04-24 13:05:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GMEX_IDW\contour_gmex.lyr
-contour_gmex.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GMEX_IDW\contour_gmex.prj
-contour_gmex.shp,.shp,1.29 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GMEX_IDW\contour_gmex.shp
-GMEX_Boundary.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GMEX_IDW\GMEX_Boundary.dbf
-GMEX_Boundary.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GMEX_IDW\GMEX_Boundary.prj
-GMEX_Boundary.shp,.shp,2.76 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GMEX_IDW\GMEX_Boundary.shp
-GMEX_Fish_Net_10km.dbf,.dbf,12.17 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2024-04-24 13:05:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GMEX_IDW\GMEX_Fish_Net_10km.dbf
-GMEX_Fish_Net_10km.prj,.prj,0.42 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GMEX_IDW\GMEX_Fish_Net_10km.prj
-GMEX_Fish_Net_10km.shp,.shp,7.56 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GMEX_IDW\GMEX_Fish_Net_10km.shp
-GMEX_IDW_Shape.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GMEX_IDW\GMEX_IDW_Shape.dbf
-GMEX_IDW_Shape.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GMEX_IDW\GMEX_IDW_Shape.prj
-GMEX_IDW_Shape.shp,.shp,8.80 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GMEX_IDW\GMEX_IDW_Shape.shp
-GMEX_Shape_20220130.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GMEX_IDW\GMEX_Shape_20220130.dbf
-GMEX_Shape_20220130.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GMEX_IDW\GMEX_Shape_20220130.prj
-GMEX_Shape_20220130.shp,.shp,6.54 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GMEX_IDW\GMEX_Shape_20220130.shp
-contour_goa.dbf,.dbf,17.36 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GOA_IDW\contour_goa.dbf
-contour_goa.lyr,.lyr,6.50 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2024-04-24 13:05:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GOA_IDW\contour_goa.lyr
-contour_goa.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GOA_IDW\contour_goa.prj
-contour_goa.shp,.shp,2.55 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GOA_IDW\contour_goa.shp
-goa_area.dbf,.dbf,0.08 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GOA_IDW\goa_area.dbf
-goa_area.prj,.prj,0.43 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GOA_IDW\goa_area.prj
-goa_area.shp,.shp,589.75 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GOA_IDW\goa_area.shp
-GOA_Boundary.dbf,.dbf,0.08 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GOA_IDW\GOA_Boundary.dbf
-GOA_Boundary.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GOA_IDW\GOA_Boundary.prj
-GOA_Boundary.shp,.shp,5.99 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GOA_IDW\GOA_Boundary.shp
-goa_grid.dbf,.dbf,2.40 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GOA_IDW\goa_grid.dbf
-goa_grid.prj,.prj,0.43 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GOA_IDW\goa_grid.prj
-goa_grid.shp,.shp,5.23 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GOA_IDW\goa_grid.shp
-GOA_IDW_Shape.dbf,.dbf,0.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GOA_IDW\GOA_IDW_Shape.dbf
-GOA_IDW_Shape.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GOA_IDW\GOA_IDW_Shape.prj
-GOA_IDW_Shape.shp,.shp,13.17 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GOA_IDW\GOA_IDW_Shape.shp
-goa_strata.dbf,.dbf,31.69 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GOA_IDW\goa_strata.dbf
-goa_strata.prj,.prj,0.43 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GOA_IDW\goa_strata.prj
-goa_strata.shp,.shp,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\GOA_IDW\goa_strata.shp
-HI_IDW_Shape.dbf,.dbf,0.17 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\HI_IDW\HI_IDW_Shape.dbf
-HI_IDW_Shape.prj,.prj,0.39 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\HI_IDW\HI_IDW_Shape.prj
-HI_IDW_Shape.shp,.shp,138.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\HI_IDW\HI_IDW_Shape.shp
-NBS_IDW_Shape.dbf,.dbf,0.33 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NBS_IDW\NBS_IDW_Shape.dbf
-NBS_IDW_Shape.prj,.prj,0.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NBS_IDW\NBS_IDW_Shape.prj
-NBS_IDW_Shape.shp,.shp,9.36 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NBS_IDW\NBS_IDW_Shape.shp
-contour_neus.dbf,.dbf,11.33 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NEUS_FAL_IDW\contour_neus.dbf
-contour_neus.lyr,.lyr,6.50 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2024-04-24 13:05:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NEUS_FAL_IDW\contour_neus.lyr
-contour_neus.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NEUS_FAL_IDW\contour_neus.prj
-contour_neus.shp,.shp,1.58 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NEUS_FAL_IDW\contour_neus.shp
-NEUS_Fall_Boundary.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NEUS_FAL_IDW\NEUS_Fall_Boundary.dbf
-NEUS_Fall_Boundary.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NEUS_FAL_IDW\NEUS_Fall_Boundary.prj
-NEUS_Fall_Boundary.shp,.shp,3.00 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NEUS_FAL_IDW\NEUS_Fall_Boundary.shp
-NEUS_FAL_IDW_Shape.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NEUS_FAL_IDW\NEUS_FAL_IDW_Shape.dbf
-NEUS_FAL_IDW_Shape.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NEUS_FAL_IDW\NEUS_FAL_IDW_Shape.prj
-NEUS_FAL_IDW_Shape.shp,.shp,138.68 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NEUS_FAL_IDW\NEUS_FAL_IDW_Shape.shp
-contour_neus.dbf,.dbf,11.33 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NEUS_SPR_IDW\contour_neus.dbf
-contour_neus.lyr,.lyr,6.50 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2024-04-24 13:06:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NEUS_SPR_IDW\contour_neus.lyr
-contour_neus.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NEUS_SPR_IDW\contour_neus.prj
-contour_neus.shp,.shp,1.58 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NEUS_SPR_IDW\contour_neus.shp
-NEUS_Spring_Boundary.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NEUS_SPR_IDW\NEUS_Spring_Boundary.dbf
-NEUS_Spring_Boundary.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NEUS_SPR_IDW\NEUS_Spring_Boundary.prj
-NEUS_Spring_Boundary.shp,.shp,3.00 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NEUS_SPR_IDW\NEUS_Spring_Boundary.shp
-NEUS_SPR_IDW_Shape.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NEUS_SPR_IDW\NEUS_SPR_IDW_Shape.dbf
-NEUS_SPR_IDW_Shape.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NEUS_SPR_IDW\NEUS_SPR_IDW_Shape.prj
-NEUS_SPR_IDW_Shape.shp,.shp,138.68 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\NEUS_SPR_IDW\NEUS_SPR_IDW_Shape.shp
-contour_seus.dbf,.dbf,5.42 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_FAL_IDW\contour_seus.dbf
-contour_seus.lyr,.lyr,6.50 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2024-04-24 13:06:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_FAL_IDW\contour_seus.lyr
-contour_seus.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_FAL_IDW\contour_seus.prj
-contour_seus.shp,.shp,1.21 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_FAL_IDW\contour_seus.shp
-SEUS_Boundary.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_FAL_IDW\SEUS_Boundary.dbf
-SEUS_Boundary.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_FAL_IDW\SEUS_Boundary.prj
-SEUS_Boundary.shp,.shp,5.14 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_FAL_IDW\SEUS_Boundary.shp
-SEUS_FAL_IDW_Shape.dbf,.dbf,0.34 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_FAL_IDW\SEUS_FAL_IDW_Shape.dbf
-SEUS_FAL_IDW_Shape.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_FAL_IDW\SEUS_FAL_IDW_Shape.prj
-SEUS_FAL_IDW_Shape.shp,.shp,17.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_FAL_IDW\SEUS_FAL_IDW_Shape.shp
-contour_seus.dbf,.dbf,5.42 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_SPR_IDW\contour_seus.dbf
-contour_seus.lyr,.lyr,6.50 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2024-04-24 13:06:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_SPR_IDW\contour_seus.lyr
-contour_seus.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_SPR_IDW\contour_seus.prj
-contour_seus.shp,.shp,1.21 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_SPR_IDW\contour_seus.shp
-SEUS_Boundary.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_SPR_IDW\SEUS_Boundary.dbf
-SEUS_Boundary.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_SPR_IDW\SEUS_Boundary.prj
-SEUS_Boundary.shp,.shp,5.14 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_SPR_IDW\SEUS_Boundary.shp
-SEUS_SPR_IDW_Shape.dbf,.dbf,0.34 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_SPR_IDW\SEUS_SPR_IDW_Shape.dbf
-SEUS_SPR_IDW_Shape.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_SPR_IDW\SEUS_SPR_IDW_Shape.prj
-SEUS_SPR_IDW_Shape.shp,.shp,17.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_SPR_IDW\SEUS_SPR_IDW_Shape.shp
-contour_seus.dbf,.dbf,5.42 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_SUM_IDW\contour_seus.dbf
-contour_seus.lyr,.lyr,6.50 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2024-04-24 13:06:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_SUM_IDW\contour_seus.lyr
-contour_seus.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_SUM_IDW\contour_seus.prj
-contour_seus.shp,.shp,1.21 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_SUM_IDW\contour_seus.shp
-SEUS_Boundary.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_SUM_IDW\SEUS_Boundary.dbf
-SEUS_Boundary.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_SUM_IDW\SEUS_Boundary.prj
-SEUS_Boundary.shp,.shp,5.14 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_SUM_IDW\SEUS_Boundary.shp
-SEUS_SUM_IDW_Shape.dbf,.dbf,0.34 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_SUM_IDW\SEUS_SUM_IDW_Shape.dbf
-SEUS_SUM_IDW_Shape.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_SUM_IDW\SEUS_SUM_IDW_Shape.prj
-SEUS_SUM_IDW_Shape.shp,.shp,17.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\SEUS_SUM_IDW\SEUS_SUM_IDW_Shape.shp
-contour_wc.dbf,.dbf,4.91 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_ANN_IDW\contour_wc.dbf
-contour_wc.lyr,.lyr,6.50 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2024-04-24 13:06:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_ANN_IDW\contour_wc.lyr
-contour_wc.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_ANN_IDW\contour_wc.prj
-contour_wc.shp,.shp,619.30 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_ANN_IDW\contour_wc.shp
-MAN_SCSR_Cowcod_ConsArea.dbf,.dbf,0.92 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2024-04-24 13:06:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_ANN_IDW\MAN_SCSR_Cowcod_ConsArea.dbf
-MAN_SCSR_Cowcod_ConsArea.prj,.prj,0.46 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_ANN_IDW\MAN_SCSR_Cowcod_ConsArea.prj
-MAN_SCSR_Cowcod_ConsArea.shp,.shp,2.14 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_ANN_IDW\MAN_SCSR_Cowcod_ConsArea.shp
-WCGBTS_Grid_v2008_Albers.dbf,.dbf,5.96 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_ANN_IDW\WCGBTS_Grid_v2008_Albers.dbf
-WCGBTS_Grid_v2008_Albers.prj,.prj,0.43 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_ANN_IDW\WCGBTS_Grid_v2008_Albers.prj
-WCGBTS_Grid_v2008_Albers.shp,.shp,1.69 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_ANN_IDW\WCGBTS_Grid_v2008_Albers.shp
-WC_Ann_Boundary.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_ANN_IDW\WC_Ann_Boundary.dbf
-WC_Ann_Boundary.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_ANN_IDW\WC_Ann_Boundary.prj
-WC_Ann_Boundary.shp,.shp,4.28 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_ANN_IDW\WC_Ann_Boundary.shp
-WC_ANN_IDW_Shape.dbf,.dbf,1.37 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2024-04-24 13:07:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_ANN_IDW\WC_ANN_IDW_Shape.dbf
-WC_ANN_IDW_Shape.prj,.prj,0.43 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_ANN_IDW\WC_ANN_IDW_Shape.prj
-WC_ANN_IDW_Shape.shp,.shp,47.77 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_ANN_IDW\WC_ANN_IDW_Shape.shp
-WC_Ann_Shape_20210805.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_ANN_IDW\WC_Ann_Shape_20210805.dbf
-WC_Ann_Shape_20210805.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_ANN_IDW\WC_Ann_Shape_20210805.prj
-WC_Ann_Shape_20210805.shp,.shp,4.80 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_ANN_IDW\WC_Ann_Shape_20210805.shp
-WCGBTS_Grid_v2008_Albers.dbf,.dbf,5.96 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_ANN_IDW\drive-download-20220510T163708Z-001\WCGBTS_Grid_v2008_Albers.dbf
-WCGBTS_Grid_v2008_Albers.prj,.prj,0.43 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_ANN_IDW\drive-download-20220510T163708Z-001\WCGBTS_Grid_v2008_Albers.prj
-WCGBTS_Grid_v2008_Albers.shp,.shp,1.69 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_ANN_IDW\drive-download-20220510T163708Z-001\WCGBTS_Grid_v2008_Albers.shp
-cropped_domain_for_projected_sdms.dbf,.dbf,0.08 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_GLMME\cropped_domain_for_projected_sdms.dbf
-cropped_domain_for_projected_sdms.prj,.prj,0.38 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_GLMME\cropped_domain_for_projected_sdms.prj
-cropped_domain_for_projected_sdms.shp,.shp,37.55 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_GLMME\cropped_domain_for_projected_sdms.shp
-longnose skate gfdl 1980_2100.tif,.tif,1.22 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_GLMME\longnose skate gfdl 1980_2100.tif
-WC_GLMME_Shape.dbf,.dbf,0.08 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_GLMME\WC_GLMME_Shape.dbf
-WC_GLMME_Shape.prj,.prj,0.40 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_GLMME\WC_GLMME_Shape.prj
-WC_GLMME_Shape.shp,.shp,37.55 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:55:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_GLMME\WC_GLMME_Shape.shp
-cropped_domain_for_projected_sdms.dbf,.dbf,0.08 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_GLMME\cropped_domain_projected_sdms\cropped_domain_for_projected_sdms.dbf
-cropped_domain_for_projected_sdms.prj,.prj,0.38 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_GLMME\cropped_domain_projected_sdms\cropped_domain_for_projected_sdms.prj
-cropped_domain_for_projected_sdms.shp,.shp,37.55 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_GLMME\cropped_domain_projected_sdms\cropped_domain_for_projected_sdms.shp
-contour_wc.dbf,.dbf,4.91 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_TRI_IDW\contour_wc.dbf
-contour_wc.lyr,.lyr,6.50 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2024-04-24 13:07:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_TRI_IDW\contour_wc.lyr
-contour_wc.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_TRI_IDW\contour_wc.prj
-contour_wc.shp,.shp,619.30 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_TRI_IDW\contour_wc.shp
-WC_Tri_Boundary.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_TRI_IDW\WC_Tri_Boundary.dbf
-WC_Tri_Boundary.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_TRI_IDW\WC_Tri_Boundary.prj
-WC_Tri_Boundary.shp,.shp,4.45 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_TRI_IDW\WC_Tri_Boundary.shp
-WC_TRI_IDW_Shape.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_TRI_IDW\WC_TRI_IDW_Shape.dbf
-WC_TRI_IDW_Shape.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_TRI_IDW\WC_TRI_IDW_Shape.prj
-WC_TRI_IDW_Shape.shp,.shp,5.28 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Dataset Shapefile Folder\WC_TRI_IDW\WC_TRI_IDW_Shape.shp
-Ov_i45_L01_R00000000_C00000000.tif,.tif,5.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\DisMAP April 1 2023 Prod.Overviews\SEUS_SUM_IDW_Mosaic.Overviews\Ov_i45_L01_R00000000_C00000000.tif
-AI_IDW_Anoplopoma_fimbria_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_1991.tif
-AI_IDW_Anoplopoma_fimbria_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_1994.tif
-AI_IDW_Anoplopoma_fimbria_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_1997.tif
-AI_IDW_Anoplopoma_fimbria_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_2000.tif
-AI_IDW_Anoplopoma_fimbria_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_2002.tif
-AI_IDW_Anoplopoma_fimbria_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_2004.tif
-AI_IDW_Anoplopoma_fimbria_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_2006.tif
-AI_IDW_Anoplopoma_fimbria_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_2010.tif
-AI_IDW_Anoplopoma_fimbria_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_2012.tif
-AI_IDW_Anoplopoma_fimbria_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_2014.tif
-AI_IDW_Anoplopoma_fimbria_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_2016.tif
-AI_IDW_Anoplopoma_fimbria_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_2018.tif
-AI_IDW_Anoplopoma_fimbria_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_2022.tif
-AI_IDW_Aphrocallistes_vastus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Aphrocallistes vastus\AI_IDW_Aphrocallistes_vastus_1991.tif
-AI_IDW_Aphrocallistes_vastus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Aphrocallistes vastus\AI_IDW_Aphrocallistes_vastus_1994.tif
-AI_IDW_Aphrocallistes_vastus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Aphrocallistes vastus\AI_IDW_Aphrocallistes_vastus_1997.tif
-AI_IDW_Aphrocallistes_vastus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Aphrocallistes vastus\AI_IDW_Aphrocallistes_vastus_2000.tif
-AI_IDW_Aphrocallistes_vastus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Aphrocallistes vastus\AI_IDW_Aphrocallistes_vastus_2002.tif
-AI_IDW_Aphrocallistes_vastus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Aphrocallistes vastus\AI_IDW_Aphrocallistes_vastus_2004.tif
-AI_IDW_Aphrocallistes_vastus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Aphrocallistes vastus\AI_IDW_Aphrocallistes_vastus_2006.tif
-AI_IDW_Aphrocallistes_vastus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Aphrocallistes vastus\AI_IDW_Aphrocallistes_vastus_2010.tif
-AI_IDW_Aphrocallistes_vastus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Aphrocallistes vastus\AI_IDW_Aphrocallistes_vastus_2012.tif
-AI_IDW_Aphrocallistes_vastus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Aphrocallistes vastus\AI_IDW_Aphrocallistes_vastus_2014.tif
-AI_IDW_Aphrocallistes_vastus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Aphrocallistes vastus\AI_IDW_Aphrocallistes_vastus_2016.tif
-AI_IDW_Aphrocallistes_vastus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Aphrocallistes vastus\AI_IDW_Aphrocallistes_vastus_2018.tif
-AI_IDW_Aphrocallistes_vastus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Aphrocallistes vastus\AI_IDW_Aphrocallistes_vastus_2022.tif
-AI_IDW_Atheresthes_stomias_and_A_evermanni_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Atheresthes stomias and A evermanni\AI_IDW_Atheresthes_stomias_and_A_evermanni_1991.tif
-AI_IDW_Atheresthes_stomias_and_A_evermanni_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Atheresthes stomias and A evermanni\AI_IDW_Atheresthes_stomias_and_A_evermanni_1994.tif
-AI_IDW_Atheresthes_stomias_and_A_evermanni_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Atheresthes stomias and A evermanni\AI_IDW_Atheresthes_stomias_and_A_evermanni_1997.tif
-AI_IDW_Atheresthes_stomias_and_A_evermanni_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Atheresthes stomias and A evermanni\AI_IDW_Atheresthes_stomias_and_A_evermanni_2000.tif
-AI_IDW_Atheresthes_stomias_and_A_evermanni_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Atheresthes stomias and A evermanni\AI_IDW_Atheresthes_stomias_and_A_evermanni_2002.tif
-AI_IDW_Atheresthes_stomias_and_A_evermanni_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Atheresthes stomias and A evermanni\AI_IDW_Atheresthes_stomias_and_A_evermanni_2004.tif
-AI_IDW_Atheresthes_stomias_and_A_evermanni_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Atheresthes stomias and A evermanni\AI_IDW_Atheresthes_stomias_and_A_evermanni_2006.tif
-AI_IDW_Atheresthes_stomias_and_A_evermanni_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Atheresthes stomias and A evermanni\AI_IDW_Atheresthes_stomias_and_A_evermanni_2010.tif
-AI_IDW_Atheresthes_stomias_and_A_evermanni_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Atheresthes stomias and A evermanni\AI_IDW_Atheresthes_stomias_and_A_evermanni_2012.tif
-AI_IDW_Atheresthes_stomias_and_A_evermanni_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Atheresthes stomias and A evermanni\AI_IDW_Atheresthes_stomias_and_A_evermanni_2014.tif
-AI_IDW_Atheresthes_stomias_and_A_evermanni_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Atheresthes stomias and A evermanni\AI_IDW_Atheresthes_stomias_and_A_evermanni_2016.tif
-AI_IDW_Atheresthes_stomias_and_A_evermanni_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Atheresthes stomias and A evermanni\AI_IDW_Atheresthes_stomias_and_A_evermanni_2018.tif
-AI_IDW_Atheresthes_stomias_and_A_evermanni_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Atheresthes stomias and A evermanni\AI_IDW_Atheresthes_stomias_and_A_evermanni_2022.tif
-AI_IDW_Axinella_blanca_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Axinella blanca\AI_IDW_Axinella_blanca_1991.tif
-AI_IDW_Axinella_blanca_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Axinella blanca\AI_IDW_Axinella_blanca_1994.tif
-AI_IDW_Axinella_blanca_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Axinella blanca\AI_IDW_Axinella_blanca_1997.tif
-AI_IDW_Axinella_blanca_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Axinella blanca\AI_IDW_Axinella_blanca_2000.tif
-AI_IDW_Axinella_blanca_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Axinella blanca\AI_IDW_Axinella_blanca_2002.tif
-AI_IDW_Axinella_blanca_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Axinella blanca\AI_IDW_Axinella_blanca_2004.tif
-AI_IDW_Axinella_blanca_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Axinella blanca\AI_IDW_Axinella_blanca_2006.tif
-AI_IDW_Axinella_blanca_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Axinella blanca\AI_IDW_Axinella_blanca_2010.tif
-AI_IDW_Axinella_blanca_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Axinella blanca\AI_IDW_Axinella_blanca_2012.tif
-AI_IDW_Axinella_blanca_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Axinella blanca\AI_IDW_Axinella_blanca_2014.tif
-AI_IDW_Axinella_blanca_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Axinella blanca\AI_IDW_Axinella_blanca_2016.tif
-AI_IDW_Axinella_blanca_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Axinella blanca\AI_IDW_Axinella_blanca_2018.tif
-AI_IDW_Axinella_blanca_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Axinella blanca\AI_IDW_Axinella_blanca_2022.tif
-AI_IDW_Bathymaster_signatus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_1991.tif
-AI_IDW_Bathymaster_signatus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_1994.tif
-AI_IDW_Bathymaster_signatus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_1997.tif
-AI_IDW_Bathymaster_signatus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_2000.tif
-AI_IDW_Bathymaster_signatus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_2002.tif
-AI_IDW_Bathymaster_signatus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_2004.tif
-AI_IDW_Bathymaster_signatus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_2006.tif
-AI_IDW_Bathymaster_signatus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_2010.tif
-AI_IDW_Bathymaster_signatus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_2012.tif
-AI_IDW_Bathymaster_signatus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_2014.tif
-AI_IDW_Bathymaster_signatus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_2016.tif
-AI_IDW_Bathymaster_signatus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_2018.tif
-AI_IDW_Bathymaster_signatus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_2022.tif
-AI_IDW_Bathyraja_spp_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathyraja spp\AI_IDW_Bathyraja_spp_1991.tif
-AI_IDW_Bathyraja_spp_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathyraja spp\AI_IDW_Bathyraja_spp_1994.tif
-AI_IDW_Bathyraja_spp_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathyraja spp\AI_IDW_Bathyraja_spp_1997.tif
-AI_IDW_Bathyraja_spp_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathyraja spp\AI_IDW_Bathyraja_spp_2000.tif
-AI_IDW_Bathyraja_spp_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathyraja spp\AI_IDW_Bathyraja_spp_2002.tif
-AI_IDW_Bathyraja_spp_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathyraja spp\AI_IDW_Bathyraja_spp_2004.tif
-AI_IDW_Bathyraja_spp_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathyraja spp\AI_IDW_Bathyraja_spp_2006.tif
-AI_IDW_Bathyraja_spp_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathyraja spp\AI_IDW_Bathyraja_spp_2010.tif
-AI_IDW_Bathyraja_spp_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathyraja spp\AI_IDW_Bathyraja_spp_2012.tif
-AI_IDW_Bathyraja_spp_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathyraja spp\AI_IDW_Bathyraja_spp_2014.tif
-AI_IDW_Bathyraja_spp_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathyraja spp\AI_IDW_Bathyraja_spp_2016.tif
-AI_IDW_Bathyraja_spp_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathyraja spp\AI_IDW_Bathyraja_spp_2018.tif
-AI_IDW_Bathyraja_spp_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Bathyraja spp\AI_IDW_Bathyraja_spp_2022.tif
-AI_IDW_Berryteuthis_magister_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_1991.tif
-AI_IDW_Berryteuthis_magister_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_1994.tif
-AI_IDW_Berryteuthis_magister_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_1997.tif
-AI_IDW_Berryteuthis_magister_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_2000.tif
-AI_IDW_Berryteuthis_magister_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_2002.tif
-AI_IDW_Berryteuthis_magister_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_2004.tif
-AI_IDW_Berryteuthis_magister_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_2006.tif
-AI_IDW_Berryteuthis_magister_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_2010.tif
-AI_IDW_Berryteuthis_magister_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_2012.tif
-AI_IDW_Berryteuthis_magister_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_2014.tif
-AI_IDW_Berryteuthis_magister_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_2016.tif
-AI_IDW_Berryteuthis_magister_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_2018.tif
-AI_IDW_Berryteuthis_magister_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_2022.tif
-AI_IDW_Callogorgia_compressa_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Callogorgia compressa\AI_IDW_Callogorgia_compressa_1991.tif
-AI_IDW_Callogorgia_compressa_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Callogorgia compressa\AI_IDW_Callogorgia_compressa_1994.tif
-AI_IDW_Callogorgia_compressa_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Callogorgia compressa\AI_IDW_Callogorgia_compressa_1997.tif
-AI_IDW_Callogorgia_compressa_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Callogorgia compressa\AI_IDW_Callogorgia_compressa_2000.tif
-AI_IDW_Callogorgia_compressa_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Callogorgia compressa\AI_IDW_Callogorgia_compressa_2002.tif
-AI_IDW_Callogorgia_compressa_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Callogorgia compressa\AI_IDW_Callogorgia_compressa_2004.tif
-AI_IDW_Callogorgia_compressa_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Callogorgia compressa\AI_IDW_Callogorgia_compressa_2006.tif
-AI_IDW_Callogorgia_compressa_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Callogorgia compressa\AI_IDW_Callogorgia_compressa_2010.tif
-AI_IDW_Callogorgia_compressa_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Callogorgia compressa\AI_IDW_Callogorgia_compressa_2012.tif
-AI_IDW_Callogorgia_compressa_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Callogorgia compressa\AI_IDW_Callogorgia_compressa_2014.tif
-AI_IDW_Callogorgia_compressa_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Callogorgia compressa\AI_IDW_Callogorgia_compressa_2016.tif
-AI_IDW_Callogorgia_compressa_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Callogorgia compressa\AI_IDW_Callogorgia_compressa_2018.tif
-AI_IDW_Callogorgia_compressa_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Callogorgia compressa\AI_IDW_Callogorgia_compressa_2022.tif
-AI_IDW_Cheiraster_Luidiaster_dawsoni_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cheiraster Luidiaster dawsoni\AI_IDW_Cheiraster_Luidiaster_dawsoni_1991.tif
-AI_IDW_Cheiraster_Luidiaster_dawsoni_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cheiraster Luidiaster dawsoni\AI_IDW_Cheiraster_Luidiaster_dawsoni_1994.tif
-AI_IDW_Cheiraster_Luidiaster_dawsoni_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cheiraster Luidiaster dawsoni\AI_IDW_Cheiraster_Luidiaster_dawsoni_1997.tif
-AI_IDW_Cheiraster_Luidiaster_dawsoni_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cheiraster Luidiaster dawsoni\AI_IDW_Cheiraster_Luidiaster_dawsoni_2000.tif
-AI_IDW_Cheiraster_Luidiaster_dawsoni_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cheiraster Luidiaster dawsoni\AI_IDW_Cheiraster_Luidiaster_dawsoni_2002.tif
-AI_IDW_Cheiraster_Luidiaster_dawsoni_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cheiraster Luidiaster dawsoni\AI_IDW_Cheiraster_Luidiaster_dawsoni_2004.tif
-AI_IDW_Cheiraster_Luidiaster_dawsoni_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cheiraster Luidiaster dawsoni\AI_IDW_Cheiraster_Luidiaster_dawsoni_2006.tif
-AI_IDW_Cheiraster_Luidiaster_dawsoni_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cheiraster Luidiaster dawsoni\AI_IDW_Cheiraster_Luidiaster_dawsoni_2010.tif
-AI_IDW_Cheiraster_Luidiaster_dawsoni_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cheiraster Luidiaster dawsoni\AI_IDW_Cheiraster_Luidiaster_dawsoni_2012.tif
-AI_IDW_Cheiraster_Luidiaster_dawsoni_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cheiraster Luidiaster dawsoni\AI_IDW_Cheiraster_Luidiaster_dawsoni_2014.tif
-AI_IDW_Cheiraster_Luidiaster_dawsoni_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cheiraster Luidiaster dawsoni\AI_IDW_Cheiraster_Luidiaster_dawsoni_2016.tif
-AI_IDW_Cheiraster_Luidiaster_dawsoni_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cheiraster Luidiaster dawsoni\AI_IDW_Cheiraster_Luidiaster_dawsoni_2018.tif
-AI_IDW_Cheiraster_Luidiaster_dawsoni_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cheiraster Luidiaster dawsoni\AI_IDW_Cheiraster_Luidiaster_dawsoni_2022.tif
-AI_IDW_Chionoecetes_bairdi_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Chionoecetes bairdi\AI_IDW_Chionoecetes_bairdi_1991.tif
-AI_IDW_Chionoecetes_bairdi_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Chionoecetes bairdi\AI_IDW_Chionoecetes_bairdi_1994.tif
-AI_IDW_Chionoecetes_bairdi_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Chionoecetes bairdi\AI_IDW_Chionoecetes_bairdi_1997.tif
-AI_IDW_Chionoecetes_bairdi_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Chionoecetes bairdi\AI_IDW_Chionoecetes_bairdi_2000.tif
-AI_IDW_Chionoecetes_bairdi_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Chionoecetes bairdi\AI_IDW_Chionoecetes_bairdi_2002.tif
-AI_IDW_Chionoecetes_bairdi_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Chionoecetes bairdi\AI_IDW_Chionoecetes_bairdi_2004.tif
-AI_IDW_Chionoecetes_bairdi_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Chionoecetes bairdi\AI_IDW_Chionoecetes_bairdi_2006.tif
-AI_IDW_Chionoecetes_bairdi_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Chionoecetes bairdi\AI_IDW_Chionoecetes_bairdi_2010.tif
-AI_IDW_Chionoecetes_bairdi_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Chionoecetes bairdi\AI_IDW_Chionoecetes_bairdi_2012.tif
-AI_IDW_Chionoecetes_bairdi_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Chionoecetes bairdi\AI_IDW_Chionoecetes_bairdi_2014.tif
-AI_IDW_Chionoecetes_bairdi_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Chionoecetes bairdi\AI_IDW_Chionoecetes_bairdi_2016.tif
-AI_IDW_Chionoecetes_bairdi_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Chionoecetes bairdi\AI_IDW_Chionoecetes_bairdi_2018.tif
-AI_IDW_Chionoecetes_bairdi_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Chionoecetes bairdi\AI_IDW_Chionoecetes_bairdi_2022.tif
-AI_IDW_Crossaster_papposus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_1991.tif
-AI_IDW_Crossaster_papposus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_1994.tif
-AI_IDW_Crossaster_papposus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_1997.tif
-AI_IDW_Crossaster_papposus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_2000.tif
-AI_IDW_Crossaster_papposus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_2002.tif
-AI_IDW_Crossaster_papposus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_2004.tif
-AI_IDW_Crossaster_papposus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_2006.tif
-AI_IDW_Crossaster_papposus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_2010.tif
-AI_IDW_Crossaster_papposus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_2012.tif
-AI_IDW_Crossaster_papposus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_2014.tif
-AI_IDW_Crossaster_papposus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_2016.tif
-AI_IDW_Crossaster_papposus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_2018.tif
-AI_IDW_Crossaster_papposus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_2022.tif
-AI_IDW_Cucumaria_fallax_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cucumaria fallax\AI_IDW_Cucumaria_fallax_1991.tif
-AI_IDW_Cucumaria_fallax_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cucumaria fallax\AI_IDW_Cucumaria_fallax_1994.tif
-AI_IDW_Cucumaria_fallax_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cucumaria fallax\AI_IDW_Cucumaria_fallax_1997.tif
-AI_IDW_Cucumaria_fallax_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cucumaria fallax\AI_IDW_Cucumaria_fallax_2000.tif
-AI_IDW_Cucumaria_fallax_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cucumaria fallax\AI_IDW_Cucumaria_fallax_2002.tif
-AI_IDW_Cucumaria_fallax_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cucumaria fallax\AI_IDW_Cucumaria_fallax_2004.tif
-AI_IDW_Cucumaria_fallax_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cucumaria fallax\AI_IDW_Cucumaria_fallax_2006.tif
-AI_IDW_Cucumaria_fallax_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cucumaria fallax\AI_IDW_Cucumaria_fallax_2010.tif
-AI_IDW_Cucumaria_fallax_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cucumaria fallax\AI_IDW_Cucumaria_fallax_2012.tif
-AI_IDW_Cucumaria_fallax_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cucumaria fallax\AI_IDW_Cucumaria_fallax_2014.tif
-AI_IDW_Cucumaria_fallax_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:56:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cucumaria fallax\AI_IDW_Cucumaria_fallax_2016.tif
-AI_IDW_Cucumaria_fallax_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cucumaria fallax\AI_IDW_Cucumaria_fallax_2018.tif
-AI_IDW_Cucumaria_fallax_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Cucumaria fallax\AI_IDW_Cucumaria_fallax_2022.tif
-AI_IDW_Diplopteraster_multipes_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_1991.tif
-AI_IDW_Diplopteraster_multipes_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_1994.tif
-AI_IDW_Diplopteraster_multipes_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_1997.tif
-AI_IDW_Diplopteraster_multipes_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_2000.tif
-AI_IDW_Diplopteraster_multipes_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_2002.tif
-AI_IDW_Diplopteraster_multipes_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_2004.tif
-AI_IDW_Diplopteraster_multipes_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_2006.tif
-AI_IDW_Diplopteraster_multipes_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_2010.tif
-AI_IDW_Diplopteraster_multipes_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_2012.tif
-AI_IDW_Diplopteraster_multipes_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_2014.tif
-AI_IDW_Diplopteraster_multipes_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_2016.tif
-AI_IDW_Diplopteraster_multipes_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_2018.tif
-AI_IDW_Diplopteraster_multipes_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_2022.tif
-AI_IDW_Elassochirus_cavimanus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_1991.tif
-AI_IDW_Elassochirus_cavimanus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_1994.tif
-AI_IDW_Elassochirus_cavimanus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_1997.tif
-AI_IDW_Elassochirus_cavimanus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_2000.tif
-AI_IDW_Elassochirus_cavimanus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_2002.tif
-AI_IDW_Elassochirus_cavimanus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_2004.tif
-AI_IDW_Elassochirus_cavimanus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_2006.tif
-AI_IDW_Elassochirus_cavimanus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_2010.tif
-AI_IDW_Elassochirus_cavimanus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_2012.tif
-AI_IDW_Elassochirus_cavimanus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_2014.tif
-AI_IDW_Elassochirus_cavimanus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_2016.tif
-AI_IDW_Elassochirus_cavimanus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_2018.tif
-AI_IDW_Elassochirus_cavimanus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_2022.tif
-AI_IDW_Enteroctopus_dofleini_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_1991.tif
-AI_IDW_Enteroctopus_dofleini_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_1994.tif
-AI_IDW_Enteroctopus_dofleini_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_1997.tif
-AI_IDW_Enteroctopus_dofleini_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_2000.tif
-AI_IDW_Enteroctopus_dofleini_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_2002.tif
-AI_IDW_Enteroctopus_dofleini_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_2004.tif
-AI_IDW_Enteroctopus_dofleini_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_2006.tif
-AI_IDW_Enteroctopus_dofleini_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_2010.tif
-AI_IDW_Enteroctopus_dofleini_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_2012.tif
-AI_IDW_Enteroctopus_dofleini_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_2014.tif
-AI_IDW_Enteroctopus_dofleini_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_2016.tif
-AI_IDW_Enteroctopus_dofleini_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_2018.tif
-AI_IDW_Enteroctopus_dofleini_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_2022.tif
-AI_IDW_Eumicrotremus_orbis_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_1991.tif
-AI_IDW_Eumicrotremus_orbis_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_1994.tif
-AI_IDW_Eumicrotremus_orbis_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_1997.tif
-AI_IDW_Eumicrotremus_orbis_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_2000.tif
-AI_IDW_Eumicrotremus_orbis_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_2002.tif
-AI_IDW_Eumicrotremus_orbis_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_2004.tif
-AI_IDW_Eumicrotremus_orbis_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_2006.tif
-AI_IDW_Eumicrotremus_orbis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_2010.tif
-AI_IDW_Eumicrotremus_orbis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_2012.tif
-AI_IDW_Eumicrotremus_orbis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_2014.tif
-AI_IDW_Eumicrotremus_orbis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_2016.tif
-AI_IDW_Eumicrotremus_orbis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_2018.tif
-AI_IDW_Eumicrotremus_orbis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_2022.tif
-AI_IDW_Fusitriton_oregonensis_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Fusitriton oregonensis\AI_IDW_Fusitriton_oregonensis_1991.tif
-AI_IDW_Fusitriton_oregonensis_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Fusitriton oregonensis\AI_IDW_Fusitriton_oregonensis_1994.tif
-AI_IDW_Fusitriton_oregonensis_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Fusitriton oregonensis\AI_IDW_Fusitriton_oregonensis_1997.tif
-AI_IDW_Fusitriton_oregonensis_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Fusitriton oregonensis\AI_IDW_Fusitriton_oregonensis_2000.tif
-AI_IDW_Fusitriton_oregonensis_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Fusitriton oregonensis\AI_IDW_Fusitriton_oregonensis_2002.tif
-AI_IDW_Fusitriton_oregonensis_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Fusitriton oregonensis\AI_IDW_Fusitriton_oregonensis_2004.tif
-AI_IDW_Fusitriton_oregonensis_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Fusitriton oregonensis\AI_IDW_Fusitriton_oregonensis_2006.tif
-AI_IDW_Fusitriton_oregonensis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Fusitriton oregonensis\AI_IDW_Fusitriton_oregonensis_2010.tif
-AI_IDW_Fusitriton_oregonensis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Fusitriton oregonensis\AI_IDW_Fusitriton_oregonensis_2012.tif
-AI_IDW_Fusitriton_oregonensis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Fusitriton oregonensis\AI_IDW_Fusitriton_oregonensis_2014.tif
-AI_IDW_Fusitriton_oregonensis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Fusitriton oregonensis\AI_IDW_Fusitriton_oregonensis_2016.tif
-AI_IDW_Fusitriton_oregonensis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Fusitriton oregonensis\AI_IDW_Fusitriton_oregonensis_2018.tif
-AI_IDW_Fusitriton_oregonensis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Fusitriton oregonensis\AI_IDW_Fusitriton_oregonensis_2022.tif
-AI_IDW_Gadus_chalcogrammus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_1991.tif
-AI_IDW_Gadus_chalcogrammus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_1994.tif
-AI_IDW_Gadus_chalcogrammus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_1997.tif
-AI_IDW_Gadus_chalcogrammus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_2000.tif
-AI_IDW_Gadus_chalcogrammus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_2002.tif
-AI_IDW_Gadus_chalcogrammus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_2004.tif
-AI_IDW_Gadus_chalcogrammus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_2006.tif
-AI_IDW_Gadus_chalcogrammus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_2010.tif
-AI_IDW_Gadus_chalcogrammus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_2012.tif
-AI_IDW_Gadus_chalcogrammus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_2014.tif
-AI_IDW_Gadus_chalcogrammus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_2016.tif
-AI_IDW_Gadus_chalcogrammus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_2018.tif
-AI_IDW_Gadus_chalcogrammus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_2022.tif
-AI_IDW_Gadus_macrocephalus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_1991.tif
-AI_IDW_Gadus_macrocephalus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_1994.tif
-AI_IDW_Gadus_macrocephalus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_1997.tif
-AI_IDW_Gadus_macrocephalus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_2000.tif
-AI_IDW_Gadus_macrocephalus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_2002.tif
-AI_IDW_Gadus_macrocephalus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_2004.tif
-AI_IDW_Gadus_macrocephalus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_2006.tif
-AI_IDW_Gadus_macrocephalus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_2010.tif
-AI_IDW_Gadus_macrocephalus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_2012.tif
-AI_IDW_Gadus_macrocephalus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_2014.tif
-AI_IDW_Gadus_macrocephalus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_2016.tif
-AI_IDW_Gadus_macrocephalus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_2018.tif
-AI_IDW_Gadus_macrocephalus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_2022.tif
-AI_IDW_Glyptocephalus_zachirus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_1991.tif
-AI_IDW_Glyptocephalus_zachirus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_1994.tif
-AI_IDW_Glyptocephalus_zachirus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_1997.tif
-AI_IDW_Glyptocephalus_zachirus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_2000.tif
-AI_IDW_Glyptocephalus_zachirus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_2002.tif
-AI_IDW_Glyptocephalus_zachirus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_2004.tif
-AI_IDW_Glyptocephalus_zachirus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_2006.tif
-AI_IDW_Glyptocephalus_zachirus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_2010.tif
-AI_IDW_Glyptocephalus_zachirus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_2012.tif
-AI_IDW_Glyptocephalus_zachirus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_2014.tif
-AI_IDW_Glyptocephalus_zachirus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_2016.tif
-AI_IDW_Glyptocephalus_zachirus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_2018.tif
-AI_IDW_Glyptocephalus_zachirus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_2022.tif
-AI_IDW_Gorgonocephalus_eucnemis_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_1991.tif
-AI_IDW_Gorgonocephalus_eucnemis_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_1994.tif
-AI_IDW_Gorgonocephalus_eucnemis_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_1997.tif
-AI_IDW_Gorgonocephalus_eucnemis_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_2000.tif
-AI_IDW_Gorgonocephalus_eucnemis_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_2002.tif
-AI_IDW_Gorgonocephalus_eucnemis_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_2004.tif
-AI_IDW_Gorgonocephalus_eucnemis_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_2006.tif
-AI_IDW_Gorgonocephalus_eucnemis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_2010.tif
-AI_IDW_Gorgonocephalus_eucnemis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_2012.tif
-AI_IDW_Gorgonocephalus_eucnemis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_2014.tif
-AI_IDW_Gorgonocephalus_eucnemis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_2016.tif
-AI_IDW_Gorgonocephalus_eucnemis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_2018.tif
-AI_IDW_Gorgonocephalus_eucnemis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_2022.tif
-AI_IDW_Gymnocanthus_galeatus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_1991.tif
-AI_IDW_Gymnocanthus_galeatus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_1994.tif
-AI_IDW_Gymnocanthus_galeatus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_1997.tif
-AI_IDW_Gymnocanthus_galeatus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_2000.tif
-AI_IDW_Gymnocanthus_galeatus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_2002.tif
-AI_IDW_Gymnocanthus_galeatus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_2004.tif
-AI_IDW_Gymnocanthus_galeatus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_2006.tif
-AI_IDW_Gymnocanthus_galeatus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_2010.tif
-AI_IDW_Gymnocanthus_galeatus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_2012.tif
-AI_IDW_Gymnocanthus_galeatus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_2014.tif
-AI_IDW_Gymnocanthus_galeatus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_2016.tif
-AI_IDW_Gymnocanthus_galeatus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_2018.tif
-AI_IDW_Gymnocanthus_galeatus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_2022.tif
-AI_IDW_Halocynthia_aurantium_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Halocynthia aurantium\AI_IDW_Halocynthia_aurantium_1991.tif
-AI_IDW_Halocynthia_aurantium_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Halocynthia aurantium\AI_IDW_Halocynthia_aurantium_1994.tif
-AI_IDW_Halocynthia_aurantium_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Halocynthia aurantium\AI_IDW_Halocynthia_aurantium_1997.tif
-AI_IDW_Halocynthia_aurantium_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Halocynthia aurantium\AI_IDW_Halocynthia_aurantium_2000.tif
-AI_IDW_Halocynthia_aurantium_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Halocynthia aurantium\AI_IDW_Halocynthia_aurantium_2002.tif
-AI_IDW_Halocynthia_aurantium_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Halocynthia aurantium\AI_IDW_Halocynthia_aurantium_2004.tif
-AI_IDW_Halocynthia_aurantium_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Halocynthia aurantium\AI_IDW_Halocynthia_aurantium_2006.tif
-AI_IDW_Halocynthia_aurantium_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Halocynthia aurantium\AI_IDW_Halocynthia_aurantium_2010.tif
-AI_IDW_Halocynthia_aurantium_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Halocynthia aurantium\AI_IDW_Halocynthia_aurantium_2012.tif
-AI_IDW_Halocynthia_aurantium_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Halocynthia aurantium\AI_IDW_Halocynthia_aurantium_2014.tif
-AI_IDW_Halocynthia_aurantium_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Halocynthia aurantium\AI_IDW_Halocynthia_aurantium_2016.tif
-AI_IDW_Halocynthia_aurantium_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Halocynthia aurantium\AI_IDW_Halocynthia_aurantium_2018.tif
-AI_IDW_Halocynthia_aurantium_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Halocynthia aurantium\AI_IDW_Halocynthia_aurantium_2022.tif
-AI_IDW_Hemilepidotus_jordani_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_1991.tif
-AI_IDW_Hemilepidotus_jordani_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_1994.tif
-AI_IDW_Hemilepidotus_jordani_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_1997.tif
-AI_IDW_Hemilepidotus_jordani_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_2000.tif
-AI_IDW_Hemilepidotus_jordani_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_2002.tif
-AI_IDW_Hemilepidotus_jordani_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_2004.tif
-AI_IDW_Hemilepidotus_jordani_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_2006.tif
-AI_IDW_Hemilepidotus_jordani_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_2010.tif
-AI_IDW_Hemilepidotus_jordani_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_2012.tif
-AI_IDW_Hemilepidotus_jordani_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_2014.tif
-AI_IDW_Hemilepidotus_jordani_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_2016.tif
-AI_IDW_Hemilepidotus_jordani_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_2018.tif
-AI_IDW_Hemilepidotus_jordani_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_2022.tif
-AI_IDW_Hippoglossoides_elassodon_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_1991.tif
-AI_IDW_Hippoglossoides_elassodon_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_1994.tif
-AI_IDW_Hippoglossoides_elassodon_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_1997.tif
-AI_IDW_Hippoglossoides_elassodon_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_2000.tif
-AI_IDW_Hippoglossoides_elassodon_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_2002.tif
-AI_IDW_Hippoglossoides_elassodon_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_2004.tif
-AI_IDW_Hippoglossoides_elassodon_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_2006.tif
-AI_IDW_Hippoglossoides_elassodon_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_2010.tif
-AI_IDW_Hippoglossoides_elassodon_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_2012.tif
-AI_IDW_Hippoglossoides_elassodon_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_2014.tif
-AI_IDW_Hippoglossoides_elassodon_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_2016.tif
-AI_IDW_Hippoglossoides_elassodon_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_2018.tif
-AI_IDW_Hippoglossoides_elassodon_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_2022.tif
-AI_IDW_Hippoglossus_stenolepis_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_1991.tif
-AI_IDW_Hippoglossus_stenolepis_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_1994.tif
-AI_IDW_Hippoglossus_stenolepis_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_1997.tif
-AI_IDW_Hippoglossus_stenolepis_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_2000.tif
-AI_IDW_Hippoglossus_stenolepis_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_2002.tif
-AI_IDW_Hippoglossus_stenolepis_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_2004.tif
-AI_IDW_Hippoglossus_stenolepis_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_2006.tif
-AI_IDW_Hippoglossus_stenolepis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_2010.tif
-AI_IDW_Hippoglossus_stenolepis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_2012.tif
-AI_IDW_Hippoglossus_stenolepis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_2014.tif
-AI_IDW_Hippoglossus_stenolepis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_2016.tif
-AI_IDW_Hippoglossus_stenolepis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_2018.tif
-AI_IDW_Hippoglossus_stenolepis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_2022.tif
-AI_IDW_Histodermella_kagigunensis_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Histodermella kagigunensis\AI_IDW_Histodermella_kagigunensis_1991.tif
-AI_IDW_Histodermella_kagigunensis_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Histodermella kagigunensis\AI_IDW_Histodermella_kagigunensis_1994.tif
-AI_IDW_Histodermella_kagigunensis_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Histodermella kagigunensis\AI_IDW_Histodermella_kagigunensis_1997.tif
-AI_IDW_Histodermella_kagigunensis_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Histodermella kagigunensis\AI_IDW_Histodermella_kagigunensis_2000.tif
-AI_IDW_Histodermella_kagigunensis_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Histodermella kagigunensis\AI_IDW_Histodermella_kagigunensis_2002.tif
-AI_IDW_Histodermella_kagigunensis_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Histodermella kagigunensis\AI_IDW_Histodermella_kagigunensis_2004.tif
-AI_IDW_Histodermella_kagigunensis_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Histodermella kagigunensis\AI_IDW_Histodermella_kagigunensis_2006.tif
-AI_IDW_Histodermella_kagigunensis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Histodermella kagigunensis\AI_IDW_Histodermella_kagigunensis_2010.tif
-AI_IDW_Histodermella_kagigunensis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Histodermella kagigunensis\AI_IDW_Histodermella_kagigunensis_2012.tif
-AI_IDW_Histodermella_kagigunensis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Histodermella kagigunensis\AI_IDW_Histodermella_kagigunensis_2014.tif
-AI_IDW_Histodermella_kagigunensis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Histodermella kagigunensis\AI_IDW_Histodermella_kagigunensis_2016.tif
-AI_IDW_Histodermella_kagigunensis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Histodermella kagigunensis\AI_IDW_Histodermella_kagigunensis_2018.tif
-AI_IDW_Histodermella_kagigunensis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Histodermella kagigunensis\AI_IDW_Histodermella_kagigunensis_2022.tif
-AI_IDW_Hyas_lyratus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_1991.tif
-AI_IDW_Hyas_lyratus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_1994.tif
-AI_IDW_Hyas_lyratus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:57:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_1997.tif
-AI_IDW_Hyas_lyratus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_2000.tif
-AI_IDW_Hyas_lyratus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_2002.tif
-AI_IDW_Hyas_lyratus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_2004.tif
-AI_IDW_Hyas_lyratus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_2006.tif
-AI_IDW_Hyas_lyratus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_2010.tif
-AI_IDW_Hyas_lyratus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_2012.tif
-AI_IDW_Hyas_lyratus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_2014.tif
-AI_IDW_Hyas_lyratus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_2016.tif
-AI_IDW_Hyas_lyratus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_2018.tif
-AI_IDW_Hyas_lyratus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_2022.tif
-AI_IDW_Lepidopsetta_sp_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_1991.tif
-AI_IDW_Lepidopsetta_sp_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_1994.tif
-AI_IDW_Lepidopsetta_sp_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_1997.tif
-AI_IDW_Lepidopsetta_sp_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_2000.tif
-AI_IDW_Lepidopsetta_sp_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_2002.tif
-AI_IDW_Lepidopsetta_sp_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_2004.tif
-AI_IDW_Lepidopsetta_sp_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_2006.tif
-AI_IDW_Lepidopsetta_sp_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_2010.tif
-AI_IDW_Lepidopsetta_sp_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_2012.tif
-AI_IDW_Lepidopsetta_sp_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_2014.tif
-AI_IDW_Lepidopsetta_sp_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_2016.tif
-AI_IDW_Lepidopsetta_sp_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_2018.tif
-AI_IDW_Lepidopsetta_sp_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_2022.tif
-AI_IDW_Lethasterias_nanimensis_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_1991.tif
-AI_IDW_Lethasterias_nanimensis_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_1994.tif
-AI_IDW_Lethasterias_nanimensis_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_1997.tif
-AI_IDW_Lethasterias_nanimensis_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_2000.tif
-AI_IDW_Lethasterias_nanimensis_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_2002.tif
-AI_IDW_Lethasterias_nanimensis_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_2004.tif
-AI_IDW_Lethasterias_nanimensis_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_2006.tif
-AI_IDW_Lethasterias_nanimensis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_2010.tif
-AI_IDW_Lethasterias_nanimensis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_2012.tif
-AI_IDW_Lethasterias_nanimensis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_2014.tif
-AI_IDW_Lethasterias_nanimensis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_2016.tif
-AI_IDW_Lethasterias_nanimensis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_2018.tif
-AI_IDW_Lethasterias_nanimensis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_2022.tif
-AI_IDW_Lithodes_aequispinus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_1991.tif
-AI_IDW_Lithodes_aequispinus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_1994.tif
-AI_IDW_Lithodes_aequispinus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_1997.tif
-AI_IDW_Lithodes_aequispinus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_2000.tif
-AI_IDW_Lithodes_aequispinus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_2002.tif
-AI_IDW_Lithodes_aequispinus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_2004.tif
-AI_IDW_Lithodes_aequispinus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_2006.tif
-AI_IDW_Lithodes_aequispinus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_2010.tif
-AI_IDW_Lithodes_aequispinus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_2012.tif
-AI_IDW_Lithodes_aequispinus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_2014.tif
-AI_IDW_Lithodes_aequispinus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_2016.tif
-AI_IDW_Lithodes_aequispinus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_2018.tif
-AI_IDW_Lithodes_aequispinus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_2022.tif
-AI_IDW_Malacocottus_zonurus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_1991.tif
-AI_IDW_Malacocottus_zonurus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_1994.tif
-AI_IDW_Malacocottus_zonurus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_1997.tif
-AI_IDW_Malacocottus_zonurus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_2000.tif
-AI_IDW_Malacocottus_zonurus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_2002.tif
-AI_IDW_Malacocottus_zonurus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_2004.tif
-AI_IDW_Malacocottus_zonurus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_2006.tif
-AI_IDW_Malacocottus_zonurus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_2010.tif
-AI_IDW_Malacocottus_zonurus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_2012.tif
-AI_IDW_Malacocottus_zonurus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_2014.tif
-AI_IDW_Malacocottus_zonurus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_2016.tif
-AI_IDW_Malacocottus_zonurus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_2018.tif
-AI_IDW_Malacocottus_zonurus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_2022.tif
-AI_IDW_Microstomus_pacificus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_1991.tif
-AI_IDW_Microstomus_pacificus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_1994.tif
-AI_IDW_Microstomus_pacificus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_1997.tif
-AI_IDW_Microstomus_pacificus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_2000.tif
-AI_IDW_Microstomus_pacificus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_2002.tif
-AI_IDW_Microstomus_pacificus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_2004.tif
-AI_IDW_Microstomus_pacificus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_2006.tif
-AI_IDW_Microstomus_pacificus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_2010.tif
-AI_IDW_Microstomus_pacificus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_2012.tif
-AI_IDW_Microstomus_pacificus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_2014.tif
-AI_IDW_Microstomus_pacificus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_2016.tif
-AI_IDW_Microstomus_pacificus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_2018.tif
-AI_IDW_Microstomus_pacificus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_2022.tif
-AI_IDW_Monanchora_pulchra_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Monanchora pulchra\AI_IDW_Monanchora_pulchra_1991.tif
-AI_IDW_Monanchora_pulchra_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Monanchora pulchra\AI_IDW_Monanchora_pulchra_1994.tif
-AI_IDW_Monanchora_pulchra_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Monanchora pulchra\AI_IDW_Monanchora_pulchra_1997.tif
-AI_IDW_Monanchora_pulchra_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Monanchora pulchra\AI_IDW_Monanchora_pulchra_2000.tif
-AI_IDW_Monanchora_pulchra_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Monanchora pulchra\AI_IDW_Monanchora_pulchra_2002.tif
-AI_IDW_Monanchora_pulchra_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Monanchora pulchra\AI_IDW_Monanchora_pulchra_2004.tif
-AI_IDW_Monanchora_pulchra_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Monanchora pulchra\AI_IDW_Monanchora_pulchra_2006.tif
-AI_IDW_Monanchora_pulchra_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Monanchora pulchra\AI_IDW_Monanchora_pulchra_2010.tif
-AI_IDW_Monanchora_pulchra_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Monanchora pulchra\AI_IDW_Monanchora_pulchra_2012.tif
-AI_IDW_Monanchora_pulchra_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Monanchora pulchra\AI_IDW_Monanchora_pulchra_2014.tif
-AI_IDW_Monanchora_pulchra_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Monanchora pulchra\AI_IDW_Monanchora_pulchra_2016.tif
-AI_IDW_Monanchora_pulchra_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Monanchora pulchra\AI_IDW_Monanchora_pulchra_2018.tif
-AI_IDW_Monanchora_pulchra_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Monanchora pulchra\AI_IDW_Monanchora_pulchra_2022.tif
-AI_IDW_Mycale_Mycale_loveni_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Mycale Mycale loveni\AI_IDW_Mycale_Mycale_loveni_1991.tif
-AI_IDW_Mycale_Mycale_loveni_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Mycale Mycale loveni\AI_IDW_Mycale_Mycale_loveni_1994.tif
-AI_IDW_Mycale_Mycale_loveni_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Mycale Mycale loveni\AI_IDW_Mycale_Mycale_loveni_1997.tif
-AI_IDW_Mycale_Mycale_loveni_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Mycale Mycale loveni\AI_IDW_Mycale_Mycale_loveni_2000.tif
-AI_IDW_Mycale_Mycale_loveni_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Mycale Mycale loveni\AI_IDW_Mycale_Mycale_loveni_2002.tif
-AI_IDW_Mycale_Mycale_loveni_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Mycale Mycale loveni\AI_IDW_Mycale_Mycale_loveni_2004.tif
-AI_IDW_Mycale_Mycale_loveni_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Mycale Mycale loveni\AI_IDW_Mycale_Mycale_loveni_2006.tif
-AI_IDW_Mycale_Mycale_loveni_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Mycale Mycale loveni\AI_IDW_Mycale_Mycale_loveni_2010.tif
-AI_IDW_Mycale_Mycale_loveni_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Mycale Mycale loveni\AI_IDW_Mycale_Mycale_loveni_2012.tif
-AI_IDW_Mycale_Mycale_loveni_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Mycale Mycale loveni\AI_IDW_Mycale_Mycale_loveni_2014.tif
-AI_IDW_Mycale_Mycale_loveni_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Mycale Mycale loveni\AI_IDW_Mycale_Mycale_loveni_2016.tif
-AI_IDW_Mycale_Mycale_loveni_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Mycale Mycale loveni\AI_IDW_Mycale_Mycale_loveni_2018.tif
-AI_IDW_Mycale_Mycale_loveni_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Mycale Mycale loveni\AI_IDW_Mycale_Mycale_loveni_2022.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_1991.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_1994.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_1997.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_2000.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_2002.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_2004.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_2006.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_2010.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_2012.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_2014.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_2016.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_2018.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_2022.tif
-AI_IDW_Ophiopholis_aculeata_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Ophiopholis aculeata\AI_IDW_Ophiopholis_aculeata_1991.tif
-AI_IDW_Ophiopholis_aculeata_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Ophiopholis aculeata\AI_IDW_Ophiopholis_aculeata_1994.tif
-AI_IDW_Ophiopholis_aculeata_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Ophiopholis aculeata\AI_IDW_Ophiopholis_aculeata_1997.tif
-AI_IDW_Ophiopholis_aculeata_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Ophiopholis aculeata\AI_IDW_Ophiopholis_aculeata_2000.tif
-AI_IDW_Ophiopholis_aculeata_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Ophiopholis aculeata\AI_IDW_Ophiopholis_aculeata_2002.tif
-AI_IDW_Ophiopholis_aculeata_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Ophiopholis aculeata\AI_IDW_Ophiopholis_aculeata_2004.tif
-AI_IDW_Ophiopholis_aculeata_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Ophiopholis aculeata\AI_IDW_Ophiopholis_aculeata_2006.tif
-AI_IDW_Ophiopholis_aculeata_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Ophiopholis aculeata\AI_IDW_Ophiopholis_aculeata_2010.tif
-AI_IDW_Ophiopholis_aculeata_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Ophiopholis aculeata\AI_IDW_Ophiopholis_aculeata_2012.tif
-AI_IDW_Ophiopholis_aculeata_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Ophiopholis aculeata\AI_IDW_Ophiopholis_aculeata_2014.tif
-AI_IDW_Ophiopholis_aculeata_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Ophiopholis aculeata\AI_IDW_Ophiopholis_aculeata_2016.tif
-AI_IDW_Ophiopholis_aculeata_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Ophiopholis aculeata\AI_IDW_Ophiopholis_aculeata_2018.tif
-AI_IDW_Ophiopholis_aculeata_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Ophiopholis aculeata\AI_IDW_Ophiopholis_aculeata_2022.tif
-AI_IDW_Oregonia_gracilis_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_1991.tif
-AI_IDW_Oregonia_gracilis_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_1994.tif
-AI_IDW_Oregonia_gracilis_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_1997.tif
-AI_IDW_Oregonia_gracilis_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_2000.tif
-AI_IDW_Oregonia_gracilis_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_2002.tif
-AI_IDW_Oregonia_gracilis_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_2004.tif
-AI_IDW_Oregonia_gracilis_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_2006.tif
-AI_IDW_Oregonia_gracilis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_2010.tif
-AI_IDW_Oregonia_gracilis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_2012.tif
-AI_IDW_Oregonia_gracilis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_2014.tif
-AI_IDW_Oregonia_gracilis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_2016.tif
-AI_IDW_Oregonia_gracilis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_2018.tif
-AI_IDW_Oregonia_gracilis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_2022.tif
-AI_IDW_Pagurus_brandti_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_1991.tif
-AI_IDW_Pagurus_brandti_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_1994.tif
-AI_IDW_Pagurus_brandti_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_1997.tif
-AI_IDW_Pagurus_brandti_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_2000.tif
-AI_IDW_Pagurus_brandti_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_2002.tif
-AI_IDW_Pagurus_brandti_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_2004.tif
-AI_IDW_Pagurus_brandti_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_2006.tif
-AI_IDW_Pagurus_brandti_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_2010.tif
-AI_IDW_Pagurus_brandti_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_2012.tif
-AI_IDW_Pagurus_brandti_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_2014.tif
-AI_IDW_Pagurus_brandti_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_2016.tif
-AI_IDW_Pagurus_brandti_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_2018.tif
-AI_IDW_Pagurus_brandti_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_2022.tif
-AI_IDW_Pandalus_eous_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus eous\AI_IDW_Pandalus_eous_1991.tif
-AI_IDW_Pandalus_eous_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus eous\AI_IDW_Pandalus_eous_1994.tif
-AI_IDW_Pandalus_eous_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus eous\AI_IDW_Pandalus_eous_1997.tif
-AI_IDW_Pandalus_eous_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus eous\AI_IDW_Pandalus_eous_2000.tif
-AI_IDW_Pandalus_eous_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus eous\AI_IDW_Pandalus_eous_2002.tif
-AI_IDW_Pandalus_eous_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus eous\AI_IDW_Pandalus_eous_2004.tif
-AI_IDW_Pandalus_eous_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus eous\AI_IDW_Pandalus_eous_2006.tif
-AI_IDW_Pandalus_eous_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus eous\AI_IDW_Pandalus_eous_2010.tif
-AI_IDW_Pandalus_eous_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus eous\AI_IDW_Pandalus_eous_2012.tif
-AI_IDW_Pandalus_eous_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus eous\AI_IDW_Pandalus_eous_2014.tif
-AI_IDW_Pandalus_eous_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus eous\AI_IDW_Pandalus_eous_2016.tif
-AI_IDW_Pandalus_eous_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus eous\AI_IDW_Pandalus_eous_2018.tif
-AI_IDW_Pandalus_eous_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus eous\AI_IDW_Pandalus_eous_2022.tif
-AI_IDW_Pandalus_tridens_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus tridens\AI_IDW_Pandalus_tridens_1991.tif
-AI_IDW_Pandalus_tridens_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus tridens\AI_IDW_Pandalus_tridens_1994.tif
-AI_IDW_Pandalus_tridens_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus tridens\AI_IDW_Pandalus_tridens_1997.tif
-AI_IDW_Pandalus_tridens_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus tridens\AI_IDW_Pandalus_tridens_2000.tif
-AI_IDW_Pandalus_tridens_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus tridens\AI_IDW_Pandalus_tridens_2002.tif
-AI_IDW_Pandalus_tridens_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus tridens\AI_IDW_Pandalus_tridens_2004.tif
-AI_IDW_Pandalus_tridens_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus tridens\AI_IDW_Pandalus_tridens_2006.tif
-AI_IDW_Pandalus_tridens_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus tridens\AI_IDW_Pandalus_tridens_2010.tif
-AI_IDW_Pandalus_tridens_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus tridens\AI_IDW_Pandalus_tridens_2012.tif
-AI_IDW_Pandalus_tridens_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus tridens\AI_IDW_Pandalus_tridens_2014.tif
-AI_IDW_Pandalus_tridens_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus tridens\AI_IDW_Pandalus_tridens_2016.tif
-AI_IDW_Pandalus_tridens_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus tridens\AI_IDW_Pandalus_tridens_2018.tif
-AI_IDW_Pandalus_tridens_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pandalus tridens\AI_IDW_Pandalus_tridens_2022.tif
-AI_IDW_Pleurogrammus_monopterygius_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_1991.tif
-AI_IDW_Pleurogrammus_monopterygius_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_1994.tif
-AI_IDW_Pleurogrammus_monopterygius_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_1997.tif
-AI_IDW_Pleurogrammus_monopterygius_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_2000.tif
-AI_IDW_Pleurogrammus_monopterygius_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_2002.tif
-AI_IDW_Pleurogrammus_monopterygius_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_2004.tif
-AI_IDW_Pleurogrammus_monopterygius_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_2006.tif
-AI_IDW_Pleurogrammus_monopterygius_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_2010.tif
-AI_IDW_Pleurogrammus_monopterygius_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_2012.tif
-AI_IDW_Pleurogrammus_monopterygius_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_2014.tif
-AI_IDW_Pleurogrammus_monopterygius_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_2016.tif
-AI_IDW_Pleurogrammus_monopterygius_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_2018.tif
-AI_IDW_Pleurogrammus_monopterygius_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_2022.tif
-AI_IDW_Pododesmus_macrochisma_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pododesmus macrochisma\AI_IDW_Pododesmus_macrochisma_1991.tif
-AI_IDW_Pododesmus_macrochisma_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pododesmus macrochisma\AI_IDW_Pododesmus_macrochisma_1994.tif
-AI_IDW_Pododesmus_macrochisma_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pododesmus macrochisma\AI_IDW_Pododesmus_macrochisma_1997.tif
-AI_IDW_Pododesmus_macrochisma_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pododesmus macrochisma\AI_IDW_Pododesmus_macrochisma_2000.tif
-AI_IDW_Pododesmus_macrochisma_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pododesmus macrochisma\AI_IDW_Pododesmus_macrochisma_2002.tif
-AI_IDW_Pododesmus_macrochisma_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pododesmus macrochisma\AI_IDW_Pododesmus_macrochisma_2004.tif
-AI_IDW_Pododesmus_macrochisma_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pododesmus macrochisma\AI_IDW_Pododesmus_macrochisma_2006.tif
-AI_IDW_Pododesmus_macrochisma_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pododesmus macrochisma\AI_IDW_Pododesmus_macrochisma_2010.tif
-AI_IDW_Pododesmus_macrochisma_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pododesmus macrochisma\AI_IDW_Pododesmus_macrochisma_2012.tif
-AI_IDW_Pododesmus_macrochisma_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pododesmus macrochisma\AI_IDW_Pododesmus_macrochisma_2014.tif
-AI_IDW_Pododesmus_macrochisma_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pododesmus macrochisma\AI_IDW_Pododesmus_macrochisma_2016.tif
-AI_IDW_Pododesmus_macrochisma_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pododesmus macrochisma\AI_IDW_Pododesmus_macrochisma_2018.tif
-AI_IDW_Pododesmus_macrochisma_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pododesmus macrochisma\AI_IDW_Pododesmus_macrochisma_2022.tif
-AI_IDW_Podothecus_accipenserinus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_1991.tif
-AI_IDW_Podothecus_accipenserinus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_1994.tif
-AI_IDW_Podothecus_accipenserinus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:58:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_1997.tif
-AI_IDW_Podothecus_accipenserinus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_2000.tif
-AI_IDW_Podothecus_accipenserinus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_2002.tif
-AI_IDW_Podothecus_accipenserinus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_2004.tif
-AI_IDW_Podothecus_accipenserinus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_2006.tif
-AI_IDW_Podothecus_accipenserinus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_2010.tif
-AI_IDW_Podothecus_accipenserinus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_2012.tif
-AI_IDW_Podothecus_accipenserinus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_2014.tif
-AI_IDW_Podothecus_accipenserinus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_2016.tif
-AI_IDW_Podothecus_accipenserinus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_2018.tif
-AI_IDW_Podothecus_accipenserinus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_2022.tif
-AI_IDW_Pteraster_militaris_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pteraster militaris\AI_IDW_Pteraster_militaris_1991.tif
-AI_IDW_Pteraster_militaris_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pteraster militaris\AI_IDW_Pteraster_militaris_1994.tif
-AI_IDW_Pteraster_militaris_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pteraster militaris\AI_IDW_Pteraster_militaris_1997.tif
-AI_IDW_Pteraster_militaris_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pteraster militaris\AI_IDW_Pteraster_militaris_2000.tif
-AI_IDW_Pteraster_militaris_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pteraster militaris\AI_IDW_Pteraster_militaris_2002.tif
-AI_IDW_Pteraster_militaris_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pteraster militaris\AI_IDW_Pteraster_militaris_2004.tif
-AI_IDW_Pteraster_militaris_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pteraster militaris\AI_IDW_Pteraster_militaris_2006.tif
-AI_IDW_Pteraster_militaris_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pteraster militaris\AI_IDW_Pteraster_militaris_2010.tif
-AI_IDW_Pteraster_militaris_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pteraster militaris\AI_IDW_Pteraster_militaris_2012.tif
-AI_IDW_Pteraster_militaris_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pteraster militaris\AI_IDW_Pteraster_militaris_2014.tif
-AI_IDW_Pteraster_militaris_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pteraster militaris\AI_IDW_Pteraster_militaris_2016.tif
-AI_IDW_Pteraster_militaris_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pteraster militaris\AI_IDW_Pteraster_militaris_2018.tif
-AI_IDW_Pteraster_militaris_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Pteraster militaris\AI_IDW_Pteraster_militaris_2022.tif
-AI_IDW_Rossia_pacifica_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_1991.tif
-AI_IDW_Rossia_pacifica_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_1994.tif
-AI_IDW_Rossia_pacifica_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_1997.tif
-AI_IDW_Rossia_pacifica_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_2000.tif
-AI_IDW_Rossia_pacifica_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_2002.tif
-AI_IDW_Rossia_pacifica_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_2004.tif
-AI_IDW_Rossia_pacifica_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_2006.tif
-AI_IDW_Rossia_pacifica_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_2010.tif
-AI_IDW_Rossia_pacifica_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_2012.tif
-AI_IDW_Rossia_pacifica_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_2014.tif
-AI_IDW_Rossia_pacifica_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_2016.tif
-AI_IDW_Rossia_pacifica_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_2018.tif
-AI_IDW_Rossia_pacifica_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_2022.tif
-AI_IDW_Sarritor_frenatus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_1991.tif
-AI_IDW_Sarritor_frenatus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_1994.tif
-AI_IDW_Sarritor_frenatus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_1997.tif
-AI_IDW_Sarritor_frenatus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_2000.tif
-AI_IDW_Sarritor_frenatus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_2002.tif
-AI_IDW_Sarritor_frenatus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_2004.tif
-AI_IDW_Sarritor_frenatus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_2006.tif
-AI_IDW_Sarritor_frenatus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_2010.tif
-AI_IDW_Sarritor_frenatus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_2012.tif
-AI_IDW_Sarritor_frenatus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_2014.tif
-AI_IDW_Sarritor_frenatus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_2016.tif
-AI_IDW_Sarritor_frenatus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_2018.tif
-AI_IDW_Sarritor_frenatus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_2022.tif
-AI_IDW_Sebastes_alutus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_1991.tif
-AI_IDW_Sebastes_alutus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_1994.tif
-AI_IDW_Sebastes_alutus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_1997.tif
-AI_IDW_Sebastes_alutus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_2000.tif
-AI_IDW_Sebastes_alutus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_2002.tif
-AI_IDW_Sebastes_alutus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_2004.tif
-AI_IDW_Sebastes_alutus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_2006.tif
-AI_IDW_Sebastes_alutus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_2010.tif
-AI_IDW_Sebastes_alutus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_2012.tif
-AI_IDW_Sebastes_alutus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_2014.tif
-AI_IDW_Sebastes_alutus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_2016.tif
-AI_IDW_Sebastes_alutus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_2018.tif
-AI_IDW_Sebastes_alutus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_2022.tif
-AI_IDW_Sebastes_borealis_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_1991.tif
-AI_IDW_Sebastes_borealis_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_1994.tif
-AI_IDW_Sebastes_borealis_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_1997.tif
-AI_IDW_Sebastes_borealis_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_2000.tif
-AI_IDW_Sebastes_borealis_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_2002.tif
-AI_IDW_Sebastes_borealis_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_2004.tif
-AI_IDW_Sebastes_borealis_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_2006.tif
-AI_IDW_Sebastes_borealis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_2010.tif
-AI_IDW_Sebastes_borealis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_2012.tif
-AI_IDW_Sebastes_borealis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_2014.tif
-AI_IDW_Sebastes_borealis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_2016.tif
-AI_IDW_Sebastes_borealis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_2018.tif
-AI_IDW_Sebastes_borealis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_2022.tif
-AI_IDW_Sebastes_polyspinis_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_1991.tif
-AI_IDW_Sebastes_polyspinis_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_1994.tif
-AI_IDW_Sebastes_polyspinis_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_1997.tif
-AI_IDW_Sebastes_polyspinis_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_2000.tif
-AI_IDW_Sebastes_polyspinis_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_2002.tif
-AI_IDW_Sebastes_polyspinis_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_2004.tif
-AI_IDW_Sebastes_polyspinis_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_2006.tif
-AI_IDW_Sebastes_polyspinis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_2010.tif
-AI_IDW_Sebastes_polyspinis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_2012.tif
-AI_IDW_Sebastes_polyspinis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_2014.tif
-AI_IDW_Sebastes_polyspinis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_2016.tif
-AI_IDW_Sebastes_polyspinis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_2018.tif
-AI_IDW_Sebastes_polyspinis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_2022.tif
-AI_IDW_Sebastes_variabilis_and_S_ciliatus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes variabilis and S ciliatus\AI_IDW_Sebastes_variabilis_and_S_ciliatus_1991.tif
-AI_IDW_Sebastes_variabilis_and_S_ciliatus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes variabilis and S ciliatus\AI_IDW_Sebastes_variabilis_and_S_ciliatus_1994.tif
-AI_IDW_Sebastes_variabilis_and_S_ciliatus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes variabilis and S ciliatus\AI_IDW_Sebastes_variabilis_and_S_ciliatus_1997.tif
-AI_IDW_Sebastes_variabilis_and_S_ciliatus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes variabilis and S ciliatus\AI_IDW_Sebastes_variabilis_and_S_ciliatus_2000.tif
-AI_IDW_Sebastes_variabilis_and_S_ciliatus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes variabilis and S ciliatus\AI_IDW_Sebastes_variabilis_and_S_ciliatus_2002.tif
-AI_IDW_Sebastes_variabilis_and_S_ciliatus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes variabilis and S ciliatus\AI_IDW_Sebastes_variabilis_and_S_ciliatus_2004.tif
-AI_IDW_Sebastes_variabilis_and_S_ciliatus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes variabilis and S ciliatus\AI_IDW_Sebastes_variabilis_and_S_ciliatus_2006.tif
-AI_IDW_Sebastes_variabilis_and_S_ciliatus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes variabilis and S ciliatus\AI_IDW_Sebastes_variabilis_and_S_ciliatus_2010.tif
-AI_IDW_Sebastes_variabilis_and_S_ciliatus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes variabilis and S ciliatus\AI_IDW_Sebastes_variabilis_and_S_ciliatus_2012.tif
-AI_IDW_Sebastes_variabilis_and_S_ciliatus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes variabilis and S ciliatus\AI_IDW_Sebastes_variabilis_and_S_ciliatus_2014.tif
-AI_IDW_Sebastes_variabilis_and_S_ciliatus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes variabilis and S ciliatus\AI_IDW_Sebastes_variabilis_and_S_ciliatus_2016.tif
-AI_IDW_Sebastes_variabilis_and_S_ciliatus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes variabilis and S ciliatus\AI_IDW_Sebastes_variabilis_and_S_ciliatus_2018.tif
-AI_IDW_Sebastes_variabilis_and_S_ciliatus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastes variabilis and S ciliatus\AI_IDW_Sebastes_variabilis_and_S_ciliatus_2022.tif
-AI_IDW_Sebastolobus_alascanus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_1991.tif
-AI_IDW_Sebastolobus_alascanus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_1994.tif
-AI_IDW_Sebastolobus_alascanus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_1997.tif
-AI_IDW_Sebastolobus_alascanus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_2000.tif
-AI_IDW_Sebastolobus_alascanus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_2002.tif
-AI_IDW_Sebastolobus_alascanus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_2004.tif
-AI_IDW_Sebastolobus_alascanus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_2006.tif
-AI_IDW_Sebastolobus_alascanus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_2010.tif
-AI_IDW_Sebastolobus_alascanus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_2012.tif
-AI_IDW_Sebastolobus_alascanus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_2014.tif
-AI_IDW_Sebastolobus_alascanus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_2016.tif
-AI_IDW_Sebastolobus_alascanus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_2018.tif
-AI_IDW_Sebastolobus_alascanus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_2022.tif
-AI_IDW_Tedania_Tedania_kagalaskai_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Tedania Tedania kagalaskai\AI_IDW_Tedania_Tedania_kagalaskai_1991.tif
-AI_IDW_Tedania_Tedania_kagalaskai_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Tedania Tedania kagalaskai\AI_IDW_Tedania_Tedania_kagalaskai_1994.tif
-AI_IDW_Tedania_Tedania_kagalaskai_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Tedania Tedania kagalaskai\AI_IDW_Tedania_Tedania_kagalaskai_1997.tif
-AI_IDW_Tedania_Tedania_kagalaskai_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Tedania Tedania kagalaskai\AI_IDW_Tedania_Tedania_kagalaskai_2000.tif
-AI_IDW_Tedania_Tedania_kagalaskai_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Tedania Tedania kagalaskai\AI_IDW_Tedania_Tedania_kagalaskai_2002.tif
-AI_IDW_Tedania_Tedania_kagalaskai_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Tedania Tedania kagalaskai\AI_IDW_Tedania_Tedania_kagalaskai_2004.tif
-AI_IDW_Tedania_Tedania_kagalaskai_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Tedania Tedania kagalaskai\AI_IDW_Tedania_Tedania_kagalaskai_2006.tif
-AI_IDW_Tedania_Tedania_kagalaskai_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Tedania Tedania kagalaskai\AI_IDW_Tedania_Tedania_kagalaskai_2010.tif
-AI_IDW_Tedania_Tedania_kagalaskai_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Tedania Tedania kagalaskai\AI_IDW_Tedania_Tedania_kagalaskai_2012.tif
-AI_IDW_Tedania_Tedania_kagalaskai_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Tedania Tedania kagalaskai\AI_IDW_Tedania_Tedania_kagalaskai_2014.tif
-AI_IDW_Tedania_Tedania_kagalaskai_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Tedania Tedania kagalaskai\AI_IDW_Tedania_Tedania_kagalaskai_2016.tif
-AI_IDW_Tedania_Tedania_kagalaskai_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Tedania Tedania kagalaskai\AI_IDW_Tedania_Tedania_kagalaskai_2018.tif
-AI_IDW_Tedania_Tedania_kagalaskai_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Tedania Tedania kagalaskai\AI_IDW_Tedania_Tedania_kagalaskai_2022.tif
-AI_IDW_Triglops_forficatus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_1991.tif
-AI_IDW_Triglops_forficatus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_1994.tif
-AI_IDW_Triglops_forficatus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_1997.tif
-AI_IDW_Triglops_forficatus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_2000.tif
-AI_IDW_Triglops_forficatus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_2002.tif
-AI_IDW_Triglops_forficatus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_2004.tif
-AI_IDW_Triglops_forficatus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_2006.tif
-AI_IDW_Triglops_forficatus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_2010.tif
-AI_IDW_Triglops_forficatus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_2012.tif
-AI_IDW_Triglops_forficatus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_2014.tif
-AI_IDW_Triglops_forficatus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_2016.tif
-AI_IDW_Triglops_forficatus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_2018.tif
-AI_IDW_Triglops_forficatus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_2022.tif
-AI_IDW_Triglops_scepticus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_1991.tif
-AI_IDW_Triglops_scepticus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_1994.tif
-AI_IDW_Triglops_scepticus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_1997.tif
-AI_IDW_Triglops_scepticus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_2000.tif
-AI_IDW_Triglops_scepticus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_2002.tif
-AI_IDW_Triglops_scepticus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_2004.tif
-AI_IDW_Triglops_scepticus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_2006.tif
-AI_IDW_Triglops_scepticus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_2010.tif
-AI_IDW_Triglops_scepticus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_2012.tif
-AI_IDW_Triglops_scepticus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_2014.tif
-AI_IDW_Triglops_scepticus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_2016.tif
-AI_IDW_Triglops_scepticus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_2018.tif
-AI_IDW_Triglops_scepticus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_2022.tif
-AI_IDW_Zaprora_silenus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_1991.tif
-AI_IDW_Zaprora_silenus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_1994.tif
-AI_IDW_Zaprora_silenus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_1997.tif
-AI_IDW_Zaprora_silenus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_2000.tif
-AI_IDW_Zaprora_silenus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_2002.tif
-AI_IDW_Zaprora_silenus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_2004.tif
-AI_IDW_Zaprora_silenus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_2006.tif
-AI_IDW_Zaprora_silenus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_2010.tif
-AI_IDW_Zaprora_silenus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_2012.tif
-AI_IDW_Zaprora_silenus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_2014.tif
-AI_IDW_Zaprora_silenus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_2016.tif
-AI_IDW_Zaprora_silenus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_2018.tif
-AI_IDW_Zaprora_silenus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_2022.tif
-AI_IDW_Core_Species_Richness_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_1991.tif
-AI_IDW_Core_Species_Richness_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_1994.tif
-AI_IDW_Core_Species_Richness_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_1997.tif
-AI_IDW_Core_Species_Richness_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_2000.tif
-AI_IDW_Core_Species_Richness_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_2002.tif
-AI_IDW_Core_Species_Richness_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_2004.tif
-AI_IDW_Core_Species_Richness_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_2006.tif
-AI_IDW_Core_Species_Richness_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_2010.tif
-AI_IDW_Core_Species_Richness_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_2012.tif
-AI_IDW_Core_Species_Richness_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_2014.tif
-AI_IDW_Core_Species_Richness_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_2016.tif
-AI_IDW_Core_Species_Richness_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_2018.tif
-AI_IDW_Core_Species_Richness_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_2022.tif
-AI_IDW_Species_Richness_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_1991.tif
-AI_IDW_Species_Richness_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_1994.tif
-AI_IDW_Species_Richness_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_1997.tif
-AI_IDW_Species_Richness_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_2000.tif
-AI_IDW_Species_Richness_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_2002.tif
-AI_IDW_Species_Richness_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_2004.tif
-AI_IDW_Species_Richness_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_2006.tif
-AI_IDW_Species_Richness_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_2010.tif
-AI_IDW_Species_Richness_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_2012.tif
-AI_IDW_Species_Richness_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_2014.tif
-AI_IDW_Species_Richness_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_2016.tif
-AI_IDW_Species_Richness_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_2018.tif
-AI_IDW_Species_Richness_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_2022.tif
-EBS_IDW_Asterias_amurensis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1985.tif
-EBS_IDW_Asterias_amurensis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1987.tif
-EBS_IDW_Asterias_amurensis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1988.tif
-EBS_IDW_Asterias_amurensis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1989.tif
-EBS_IDW_Asterias_amurensis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1990.tif
-EBS_IDW_Asterias_amurensis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1991.tif
-EBS_IDW_Asterias_amurensis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1992.tif
-EBS_IDW_Asterias_amurensis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1993.tif
-EBS_IDW_Asterias_amurensis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1994.tif
-EBS_IDW_Asterias_amurensis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1995.tif
-EBS_IDW_Asterias_amurensis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1996.tif
-EBS_IDW_Asterias_amurensis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1997.tif
-EBS_IDW_Asterias_amurensis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1998.tif
-EBS_IDW_Asterias_amurensis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1999.tif
-EBS_IDW_Asterias_amurensis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2000.tif
-EBS_IDW_Asterias_amurensis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2001.tif
-EBS_IDW_Asterias_amurensis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 13:59:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2002.tif
-EBS_IDW_Asterias_amurensis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2003.tif
-EBS_IDW_Asterias_amurensis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2004.tif
-EBS_IDW_Asterias_amurensis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2005.tif
-EBS_IDW_Asterias_amurensis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2006.tif
-EBS_IDW_Asterias_amurensis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2007.tif
-EBS_IDW_Asterias_amurensis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2008.tif
-EBS_IDW_Asterias_amurensis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2009.tif
-EBS_IDW_Asterias_amurensis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2010.tif
-EBS_IDW_Asterias_amurensis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2011.tif
-EBS_IDW_Asterias_amurensis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2012.tif
-EBS_IDW_Asterias_amurensis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2013.tif
-EBS_IDW_Asterias_amurensis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2014.tif
-EBS_IDW_Asterias_amurensis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2015.tif
-EBS_IDW_Asterias_amurensis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2016.tif
-EBS_IDW_Asterias_amurensis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2017.tif
-EBS_IDW_Asterias_amurensis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2018.tif
-EBS_IDW_Asterias_amurensis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2019.tif
-EBS_IDW_Asterias_amurensis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2021.tif
-EBS_IDW_Asterias_amurensis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2022.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_1985.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_1987.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_1988.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_1989.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_1990.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_1991.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_1992.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_1993.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_1994.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_1995.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_1996.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_1997.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_1998.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_1999.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_2000.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_2001.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_2002.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_2003.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_2004.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_2005.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_2006.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_2007.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_2008.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_2009.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_2010.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_2011.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_2012.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_2013.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_2014.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_2015.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_2016.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_2017.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_2018.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_2019.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_2021.tif
-EBS_IDW_Atheresthes_stomias_and_A_evermanni_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Atheresthes stomias and A evermanni\EBS_IDW_Atheresthes_stomias_and_A_evermanni_2022.tif
-EBS_IDW_Bathymaster_signatus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1985.tif
-EBS_IDW_Bathymaster_signatus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1987.tif
-EBS_IDW_Bathymaster_signatus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1988.tif
-EBS_IDW_Bathymaster_signatus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1989.tif
-EBS_IDW_Bathymaster_signatus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1990.tif
-EBS_IDW_Bathymaster_signatus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1991.tif
-EBS_IDW_Bathymaster_signatus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1992.tif
-EBS_IDW_Bathymaster_signatus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1993.tif
-EBS_IDW_Bathymaster_signatus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1994.tif
-EBS_IDW_Bathymaster_signatus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1995.tif
-EBS_IDW_Bathymaster_signatus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1996.tif
-EBS_IDW_Bathymaster_signatus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1997.tif
-EBS_IDW_Bathymaster_signatus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1998.tif
-EBS_IDW_Bathymaster_signatus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1999.tif
-EBS_IDW_Bathymaster_signatus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2000.tif
-EBS_IDW_Bathymaster_signatus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2001.tif
-EBS_IDW_Bathymaster_signatus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2002.tif
-EBS_IDW_Bathymaster_signatus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2003.tif
-EBS_IDW_Bathymaster_signatus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2004.tif
-EBS_IDW_Bathymaster_signatus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2005.tif
-EBS_IDW_Bathymaster_signatus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2006.tif
-EBS_IDW_Bathymaster_signatus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2007.tif
-EBS_IDW_Bathymaster_signatus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2008.tif
-EBS_IDW_Bathymaster_signatus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2009.tif
-EBS_IDW_Bathymaster_signatus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2010.tif
-EBS_IDW_Bathymaster_signatus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2011.tif
-EBS_IDW_Bathymaster_signatus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2012.tif
-EBS_IDW_Bathymaster_signatus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2013.tif
-EBS_IDW_Bathymaster_signatus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2014.tif
-EBS_IDW_Bathymaster_signatus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2015.tif
-EBS_IDW_Bathymaster_signatus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2016.tif
-EBS_IDW_Bathymaster_signatus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2017.tif
-EBS_IDW_Bathymaster_signatus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2018.tif
-EBS_IDW_Bathymaster_signatus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2019.tif
-EBS_IDW_Bathymaster_signatus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2021.tif
-EBS_IDW_Bathymaster_signatus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2022.tif
-EBS_IDW_Bathyraja_spp_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_1985.tif
-EBS_IDW_Bathyraja_spp_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_1987.tif
-EBS_IDW_Bathyraja_spp_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_1988.tif
-EBS_IDW_Bathyraja_spp_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_1989.tif
-EBS_IDW_Bathyraja_spp_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_1990.tif
-EBS_IDW_Bathyraja_spp_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_1991.tif
-EBS_IDW_Bathyraja_spp_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_1992.tif
-EBS_IDW_Bathyraja_spp_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_1993.tif
-EBS_IDW_Bathyraja_spp_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_1994.tif
-EBS_IDW_Bathyraja_spp_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_1995.tif
-EBS_IDW_Bathyraja_spp_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_1996.tif
-EBS_IDW_Bathyraja_spp_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_1997.tif
-EBS_IDW_Bathyraja_spp_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_1998.tif
-EBS_IDW_Bathyraja_spp_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_1999.tif
-EBS_IDW_Bathyraja_spp_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_2000.tif
-EBS_IDW_Bathyraja_spp_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_2001.tif
-EBS_IDW_Bathyraja_spp_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_2002.tif
-EBS_IDW_Bathyraja_spp_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_2003.tif
-EBS_IDW_Bathyraja_spp_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_2004.tif
-EBS_IDW_Bathyraja_spp_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_2005.tif
-EBS_IDW_Bathyraja_spp_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_2006.tif
-EBS_IDW_Bathyraja_spp_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_2007.tif
-EBS_IDW_Bathyraja_spp_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_2008.tif
-EBS_IDW_Bathyraja_spp_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_2009.tif
-EBS_IDW_Bathyraja_spp_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_2010.tif
-EBS_IDW_Bathyraja_spp_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_2011.tif
-EBS_IDW_Bathyraja_spp_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_2012.tif
-EBS_IDW_Bathyraja_spp_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_2013.tif
-EBS_IDW_Bathyraja_spp_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_2014.tif
-EBS_IDW_Bathyraja_spp_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_2015.tif
-EBS_IDW_Bathyraja_spp_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_2016.tif
-EBS_IDW_Bathyraja_spp_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_2017.tif
-EBS_IDW_Bathyraja_spp_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_2018.tif
-EBS_IDW_Bathyraja_spp_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_2019.tif
-EBS_IDW_Bathyraja_spp_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_2021.tif
-EBS_IDW_Bathyraja_spp_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Bathyraja spp\EBS_IDW_Bathyraja_spp_2022.tif
-EBS_IDW_Boltenia_ovifera_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_1985.tif
-EBS_IDW_Boltenia_ovifera_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_1987.tif
-EBS_IDW_Boltenia_ovifera_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_1988.tif
-EBS_IDW_Boltenia_ovifera_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_1989.tif
-EBS_IDW_Boltenia_ovifera_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_1990.tif
-EBS_IDW_Boltenia_ovifera_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_1991.tif
-EBS_IDW_Boltenia_ovifera_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_1992.tif
-EBS_IDW_Boltenia_ovifera_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_1993.tif
-EBS_IDW_Boltenia_ovifera_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_1994.tif
-EBS_IDW_Boltenia_ovifera_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_1995.tif
-EBS_IDW_Boltenia_ovifera_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_1996.tif
-EBS_IDW_Boltenia_ovifera_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_1997.tif
-EBS_IDW_Boltenia_ovifera_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_1998.tif
-EBS_IDW_Boltenia_ovifera_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_1999.tif
-EBS_IDW_Boltenia_ovifera_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_2000.tif
-EBS_IDW_Boltenia_ovifera_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_2001.tif
-EBS_IDW_Boltenia_ovifera_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_2002.tif
-EBS_IDW_Boltenia_ovifera_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_2003.tif
-EBS_IDW_Boltenia_ovifera_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_2004.tif
-EBS_IDW_Boltenia_ovifera_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_2005.tif
-EBS_IDW_Boltenia_ovifera_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_2006.tif
-EBS_IDW_Boltenia_ovifera_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_2007.tif
-EBS_IDW_Boltenia_ovifera_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_2008.tif
-EBS_IDW_Boltenia_ovifera_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_2009.tif
-EBS_IDW_Boltenia_ovifera_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_2010.tif
-EBS_IDW_Boltenia_ovifera_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_2011.tif
-EBS_IDW_Boltenia_ovifera_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_2012.tif
-EBS_IDW_Boltenia_ovifera_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_2013.tif
-EBS_IDW_Boltenia_ovifera_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_2014.tif
-EBS_IDW_Boltenia_ovifera_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_2015.tif
-EBS_IDW_Boltenia_ovifera_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_2016.tif
-EBS_IDW_Boltenia_ovifera_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_2017.tif
-EBS_IDW_Boltenia_ovifera_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_2018.tif
-EBS_IDW_Boltenia_ovifera_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_2019.tif
-EBS_IDW_Boltenia_ovifera_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_2021.tif
-EBS_IDW_Boltenia_ovifera_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Boltenia ovifera\EBS_IDW_Boltenia_ovifera_2022.tif
-EBS_IDW_Buccinum_angulosum_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_1985.tif
-EBS_IDW_Buccinum_angulosum_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_1987.tif
-EBS_IDW_Buccinum_angulosum_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_1988.tif
-EBS_IDW_Buccinum_angulosum_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_1989.tif
-EBS_IDW_Buccinum_angulosum_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_1990.tif
-EBS_IDW_Buccinum_angulosum_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_1991.tif
-EBS_IDW_Buccinum_angulosum_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_1992.tif
-EBS_IDW_Buccinum_angulosum_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_1993.tif
-EBS_IDW_Buccinum_angulosum_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_1994.tif
-EBS_IDW_Buccinum_angulosum_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_1995.tif
-EBS_IDW_Buccinum_angulosum_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_1996.tif
-EBS_IDW_Buccinum_angulosum_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_1997.tif
-EBS_IDW_Buccinum_angulosum_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_1998.tif
-EBS_IDW_Buccinum_angulosum_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_1999.tif
-EBS_IDW_Buccinum_angulosum_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_2000.tif
-EBS_IDW_Buccinum_angulosum_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_2001.tif
-EBS_IDW_Buccinum_angulosum_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_2002.tif
-EBS_IDW_Buccinum_angulosum_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_2003.tif
-EBS_IDW_Buccinum_angulosum_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_2004.tif
-EBS_IDW_Buccinum_angulosum_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_2005.tif
-EBS_IDW_Buccinum_angulosum_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_2006.tif
-EBS_IDW_Buccinum_angulosum_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_2007.tif
-EBS_IDW_Buccinum_angulosum_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_2008.tif
-EBS_IDW_Buccinum_angulosum_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_2009.tif
-EBS_IDW_Buccinum_angulosum_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_2010.tif
-EBS_IDW_Buccinum_angulosum_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_2011.tif
-EBS_IDW_Buccinum_angulosum_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_2012.tif
-EBS_IDW_Buccinum_angulosum_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_2013.tif
-EBS_IDW_Buccinum_angulosum_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_2014.tif
-EBS_IDW_Buccinum_angulosum_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_2015.tif
-EBS_IDW_Buccinum_angulosum_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_2016.tif
-EBS_IDW_Buccinum_angulosum_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_2017.tif
-EBS_IDW_Buccinum_angulosum_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_2018.tif
-EBS_IDW_Buccinum_angulosum_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_2019.tif
-EBS_IDW_Buccinum_angulosum_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_2021.tif
-EBS_IDW_Buccinum_angulosum_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum angulosum\EBS_IDW_Buccinum_angulosum_2022.tif
-EBS_IDW_Buccinum_polare_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_1985.tif
-EBS_IDW_Buccinum_polare_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_1987.tif
-EBS_IDW_Buccinum_polare_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_1988.tif
-EBS_IDW_Buccinum_polare_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_1989.tif
-EBS_IDW_Buccinum_polare_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:00:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_1990.tif
-EBS_IDW_Buccinum_polare_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_1991.tif
-EBS_IDW_Buccinum_polare_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_1992.tif
-EBS_IDW_Buccinum_polare_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_1993.tif
-EBS_IDW_Buccinum_polare_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_1994.tif
-EBS_IDW_Buccinum_polare_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_1995.tif
-EBS_IDW_Buccinum_polare_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_1996.tif
-EBS_IDW_Buccinum_polare_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_1997.tif
-EBS_IDW_Buccinum_polare_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_1998.tif
-EBS_IDW_Buccinum_polare_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_1999.tif
-EBS_IDW_Buccinum_polare_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_2000.tif
-EBS_IDW_Buccinum_polare_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_2001.tif
-EBS_IDW_Buccinum_polare_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_2002.tif
-EBS_IDW_Buccinum_polare_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_2003.tif
-EBS_IDW_Buccinum_polare_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_2004.tif
-EBS_IDW_Buccinum_polare_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_2005.tif
-EBS_IDW_Buccinum_polare_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_2006.tif
-EBS_IDW_Buccinum_polare_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_2007.tif
-EBS_IDW_Buccinum_polare_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_2008.tif
-EBS_IDW_Buccinum_polare_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_2009.tif
-EBS_IDW_Buccinum_polare_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_2010.tif
-EBS_IDW_Buccinum_polare_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_2011.tif
-EBS_IDW_Buccinum_polare_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_2012.tif
-EBS_IDW_Buccinum_polare_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_2013.tif
-EBS_IDW_Buccinum_polare_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_2014.tif
-EBS_IDW_Buccinum_polare_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_2015.tif
-EBS_IDW_Buccinum_polare_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_2016.tif
-EBS_IDW_Buccinum_polare_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_2017.tif
-EBS_IDW_Buccinum_polare_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_2018.tif
-EBS_IDW_Buccinum_polare_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_2019.tif
-EBS_IDW_Buccinum_polare_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_2021.tif
-EBS_IDW_Buccinum_polare_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum polare\EBS_IDW_Buccinum_polare_2022.tif
-EBS_IDW_Buccinum_scalariforme_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_1985.tif
-EBS_IDW_Buccinum_scalariforme_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_1987.tif
-EBS_IDW_Buccinum_scalariforme_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_1988.tif
-EBS_IDW_Buccinum_scalariforme_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_1989.tif
-EBS_IDW_Buccinum_scalariforme_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_1990.tif
-EBS_IDW_Buccinum_scalariforme_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_1991.tif
-EBS_IDW_Buccinum_scalariforme_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_1992.tif
-EBS_IDW_Buccinum_scalariforme_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_1993.tif
-EBS_IDW_Buccinum_scalariforme_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_1994.tif
-EBS_IDW_Buccinum_scalariforme_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_1995.tif
-EBS_IDW_Buccinum_scalariforme_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_1996.tif
-EBS_IDW_Buccinum_scalariforme_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_1997.tif
-EBS_IDW_Buccinum_scalariforme_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_1998.tif
-EBS_IDW_Buccinum_scalariforme_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_1999.tif
-EBS_IDW_Buccinum_scalariforme_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_2000.tif
-EBS_IDW_Buccinum_scalariforme_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_2001.tif
-EBS_IDW_Buccinum_scalariforme_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_2002.tif
-EBS_IDW_Buccinum_scalariforme_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_2003.tif
-EBS_IDW_Buccinum_scalariforme_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_2004.tif
-EBS_IDW_Buccinum_scalariforme_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_2005.tif
-EBS_IDW_Buccinum_scalariforme_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_2006.tif
-EBS_IDW_Buccinum_scalariforme_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_2007.tif
-EBS_IDW_Buccinum_scalariforme_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_2008.tif
-EBS_IDW_Buccinum_scalariforme_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_2009.tif
-EBS_IDW_Buccinum_scalariforme_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_2010.tif
-EBS_IDW_Buccinum_scalariforme_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_2011.tif
-EBS_IDW_Buccinum_scalariforme_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_2012.tif
-EBS_IDW_Buccinum_scalariforme_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_2013.tif
-EBS_IDW_Buccinum_scalariforme_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_2014.tif
-EBS_IDW_Buccinum_scalariforme_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_2015.tif
-EBS_IDW_Buccinum_scalariforme_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_2016.tif
-EBS_IDW_Buccinum_scalariforme_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_2017.tif
-EBS_IDW_Buccinum_scalariforme_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_2018.tif
-EBS_IDW_Buccinum_scalariforme_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_2019.tif
-EBS_IDW_Buccinum_scalariforme_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_2021.tif
-EBS_IDW_Buccinum_scalariforme_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Buccinum scalariforme\EBS_IDW_Buccinum_scalariforme_2022.tif
-EBS_IDW_Chionoecetes_bairdi_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1985.tif
-EBS_IDW_Chionoecetes_bairdi_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1987.tif
-EBS_IDW_Chionoecetes_bairdi_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1988.tif
-EBS_IDW_Chionoecetes_bairdi_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1989.tif
-EBS_IDW_Chionoecetes_bairdi_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1990.tif
-EBS_IDW_Chionoecetes_bairdi_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1991.tif
-EBS_IDW_Chionoecetes_bairdi_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1992.tif
-EBS_IDW_Chionoecetes_bairdi_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1993.tif
-EBS_IDW_Chionoecetes_bairdi_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1994.tif
-EBS_IDW_Chionoecetes_bairdi_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1995.tif
-EBS_IDW_Chionoecetes_bairdi_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1996.tif
-EBS_IDW_Chionoecetes_bairdi_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1997.tif
-EBS_IDW_Chionoecetes_bairdi_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1998.tif
-EBS_IDW_Chionoecetes_bairdi_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1999.tif
-EBS_IDW_Chionoecetes_bairdi_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2000.tif
-EBS_IDW_Chionoecetes_bairdi_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2001.tif
-EBS_IDW_Chionoecetes_bairdi_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2002.tif
-EBS_IDW_Chionoecetes_bairdi_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2003.tif
-EBS_IDW_Chionoecetes_bairdi_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2004.tif
-EBS_IDW_Chionoecetes_bairdi_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2005.tif
-EBS_IDW_Chionoecetes_bairdi_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2006.tif
-EBS_IDW_Chionoecetes_bairdi_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2007.tif
-EBS_IDW_Chionoecetes_bairdi_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2008.tif
-EBS_IDW_Chionoecetes_bairdi_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2009.tif
-EBS_IDW_Chionoecetes_bairdi_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2010.tif
-EBS_IDW_Chionoecetes_bairdi_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2011.tif
-EBS_IDW_Chionoecetes_bairdi_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2012.tif
-EBS_IDW_Chionoecetes_bairdi_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2013.tif
-EBS_IDW_Chionoecetes_bairdi_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2014.tif
-EBS_IDW_Chionoecetes_bairdi_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2015.tif
-EBS_IDW_Chionoecetes_bairdi_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2016.tif
-EBS_IDW_Chionoecetes_bairdi_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2017.tif
-EBS_IDW_Chionoecetes_bairdi_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2018.tif
-EBS_IDW_Chionoecetes_bairdi_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2019.tif
-EBS_IDW_Chionoecetes_bairdi_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2021.tif
-EBS_IDW_Chionoecetes_bairdi_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2022.tif
-EBS_IDW_Chionoecetes_opilio_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1985.tif
-EBS_IDW_Chionoecetes_opilio_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1987.tif
-EBS_IDW_Chionoecetes_opilio_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1988.tif
-EBS_IDW_Chionoecetes_opilio_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1989.tif
-EBS_IDW_Chionoecetes_opilio_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1990.tif
-EBS_IDW_Chionoecetes_opilio_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1991.tif
-EBS_IDW_Chionoecetes_opilio_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1992.tif
-EBS_IDW_Chionoecetes_opilio_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1993.tif
-EBS_IDW_Chionoecetes_opilio_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1994.tif
-EBS_IDW_Chionoecetes_opilio_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1995.tif
-EBS_IDW_Chionoecetes_opilio_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1996.tif
-EBS_IDW_Chionoecetes_opilio_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1997.tif
-EBS_IDW_Chionoecetes_opilio_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1998.tif
-EBS_IDW_Chionoecetes_opilio_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1999.tif
-EBS_IDW_Chionoecetes_opilio_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2000.tif
-EBS_IDW_Chionoecetes_opilio_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2001.tif
-EBS_IDW_Chionoecetes_opilio_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2002.tif
-EBS_IDW_Chionoecetes_opilio_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2003.tif
-EBS_IDW_Chionoecetes_opilio_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2004.tif
-EBS_IDW_Chionoecetes_opilio_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2005.tif
-EBS_IDW_Chionoecetes_opilio_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2006.tif
-EBS_IDW_Chionoecetes_opilio_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2007.tif
-EBS_IDW_Chionoecetes_opilio_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2008.tif
-EBS_IDW_Chionoecetes_opilio_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2009.tif
-EBS_IDW_Chionoecetes_opilio_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2010.tif
-EBS_IDW_Chionoecetes_opilio_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2011.tif
-EBS_IDW_Chionoecetes_opilio_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2012.tif
-EBS_IDW_Chionoecetes_opilio_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2013.tif
-EBS_IDW_Chionoecetes_opilio_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2014.tif
-EBS_IDW_Chionoecetes_opilio_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2015.tif
-EBS_IDW_Chionoecetes_opilio_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2016.tif
-EBS_IDW_Chionoecetes_opilio_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2017.tif
-EBS_IDW_Chionoecetes_opilio_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2018.tif
-EBS_IDW_Chionoecetes_opilio_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2019.tif
-EBS_IDW_Chionoecetes_opilio_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2021.tif
-EBS_IDW_Chionoecetes_opilio_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2022.tif
-EBS_IDW_Clinopegma_magnum_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_1985.tif
-EBS_IDW_Clinopegma_magnum_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_1987.tif
-EBS_IDW_Clinopegma_magnum_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_1988.tif
-EBS_IDW_Clinopegma_magnum_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_1989.tif
-EBS_IDW_Clinopegma_magnum_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_1990.tif
-EBS_IDW_Clinopegma_magnum_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_1991.tif
-EBS_IDW_Clinopegma_magnum_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_1992.tif
-EBS_IDW_Clinopegma_magnum_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_1993.tif
-EBS_IDW_Clinopegma_magnum_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_1994.tif
-EBS_IDW_Clinopegma_magnum_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_1995.tif
-EBS_IDW_Clinopegma_magnum_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_1996.tif
-EBS_IDW_Clinopegma_magnum_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_1997.tif
-EBS_IDW_Clinopegma_magnum_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_1998.tif
-EBS_IDW_Clinopegma_magnum_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_1999.tif
-EBS_IDW_Clinopegma_magnum_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_2000.tif
-EBS_IDW_Clinopegma_magnum_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_2001.tif
-EBS_IDW_Clinopegma_magnum_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_2002.tif
-EBS_IDW_Clinopegma_magnum_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_2003.tif
-EBS_IDW_Clinopegma_magnum_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_2004.tif
-EBS_IDW_Clinopegma_magnum_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_2005.tif
-EBS_IDW_Clinopegma_magnum_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_2006.tif
-EBS_IDW_Clinopegma_magnum_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_2007.tif
-EBS_IDW_Clinopegma_magnum_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_2008.tif
-EBS_IDW_Clinopegma_magnum_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_2009.tif
-EBS_IDW_Clinopegma_magnum_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_2010.tif
-EBS_IDW_Clinopegma_magnum_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_2011.tif
-EBS_IDW_Clinopegma_magnum_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_2012.tif
-EBS_IDW_Clinopegma_magnum_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_2013.tif
-EBS_IDW_Clinopegma_magnum_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_2014.tif
-EBS_IDW_Clinopegma_magnum_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_2015.tif
-EBS_IDW_Clinopegma_magnum_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_2016.tif
-EBS_IDW_Clinopegma_magnum_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_2017.tif
-EBS_IDW_Clinopegma_magnum_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_2018.tif
-EBS_IDW_Clinopegma_magnum_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_2019.tif
-EBS_IDW_Clinopegma_magnum_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_2021.tif
-EBS_IDW_Clinopegma_magnum_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clinopegma magnum\EBS_IDW_Clinopegma_magnum_2022.tif
-EBS_IDW_Clupea_pallasii_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1985.tif
-EBS_IDW_Clupea_pallasii_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1987.tif
-EBS_IDW_Clupea_pallasii_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1988.tif
-EBS_IDW_Clupea_pallasii_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1989.tif
-EBS_IDW_Clupea_pallasii_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1990.tif
-EBS_IDW_Clupea_pallasii_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1991.tif
-EBS_IDW_Clupea_pallasii_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1992.tif
-EBS_IDW_Clupea_pallasii_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1993.tif
-EBS_IDW_Clupea_pallasii_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1994.tif
-EBS_IDW_Clupea_pallasii_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1995.tif
-EBS_IDW_Clupea_pallasii_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1996.tif
-EBS_IDW_Clupea_pallasii_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1997.tif
-EBS_IDW_Clupea_pallasii_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1998.tif
-EBS_IDW_Clupea_pallasii_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1999.tif
-EBS_IDW_Clupea_pallasii_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:01:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2000.tif
-EBS_IDW_Clupea_pallasii_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2001.tif
-EBS_IDW_Clupea_pallasii_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2002.tif
-EBS_IDW_Clupea_pallasii_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2003.tif
-EBS_IDW_Clupea_pallasii_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2004.tif
-EBS_IDW_Clupea_pallasii_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2005.tif
-EBS_IDW_Clupea_pallasii_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2006.tif
-EBS_IDW_Clupea_pallasii_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2007.tif
-EBS_IDW_Clupea_pallasii_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2008.tif
-EBS_IDW_Clupea_pallasii_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2009.tif
-EBS_IDW_Clupea_pallasii_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2010.tif
-EBS_IDW_Clupea_pallasii_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2011.tif
-EBS_IDW_Clupea_pallasii_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2012.tif
-EBS_IDW_Clupea_pallasii_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2013.tif
-EBS_IDW_Clupea_pallasii_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2014.tif
-EBS_IDW_Clupea_pallasii_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2015.tif
-EBS_IDW_Clupea_pallasii_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2016.tif
-EBS_IDW_Clupea_pallasii_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2017.tif
-EBS_IDW_Clupea_pallasii_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2018.tif
-EBS_IDW_Clupea_pallasii_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2019.tif
-EBS_IDW_Clupea_pallasii_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2021.tif
-EBS_IDW_Clupea_pallasii_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2022.tif
-EBS_IDW_Crossaster_papposus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1985.tif
-EBS_IDW_Crossaster_papposus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1987.tif
-EBS_IDW_Crossaster_papposus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1988.tif
-EBS_IDW_Crossaster_papposus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1989.tif
-EBS_IDW_Crossaster_papposus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1990.tif
-EBS_IDW_Crossaster_papposus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1991.tif
-EBS_IDW_Crossaster_papposus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1992.tif
-EBS_IDW_Crossaster_papposus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1993.tif
-EBS_IDW_Crossaster_papposus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1994.tif
-EBS_IDW_Crossaster_papposus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1995.tif
-EBS_IDW_Crossaster_papposus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1996.tif
-EBS_IDW_Crossaster_papposus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1997.tif
-EBS_IDW_Crossaster_papposus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1998.tif
-EBS_IDW_Crossaster_papposus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1999.tif
-EBS_IDW_Crossaster_papposus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2000.tif
-EBS_IDW_Crossaster_papposus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2001.tif
-EBS_IDW_Crossaster_papposus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2002.tif
-EBS_IDW_Crossaster_papposus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2003.tif
-EBS_IDW_Crossaster_papposus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2004.tif
-EBS_IDW_Crossaster_papposus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2005.tif
-EBS_IDW_Crossaster_papposus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2006.tif
-EBS_IDW_Crossaster_papposus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2007.tif
-EBS_IDW_Crossaster_papposus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2008.tif
-EBS_IDW_Crossaster_papposus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2009.tif
-EBS_IDW_Crossaster_papposus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2010.tif
-EBS_IDW_Crossaster_papposus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2011.tif
-EBS_IDW_Crossaster_papposus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2012.tif
-EBS_IDW_Crossaster_papposus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2013.tif
-EBS_IDW_Crossaster_papposus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2014.tif
-EBS_IDW_Crossaster_papposus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2015.tif
-EBS_IDW_Crossaster_papposus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2016.tif
-EBS_IDW_Crossaster_papposus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2017.tif
-EBS_IDW_Crossaster_papposus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2018.tif
-EBS_IDW_Crossaster_papposus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2019.tif
-EBS_IDW_Crossaster_papposus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2021.tif
-EBS_IDW_Crossaster_papposus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2022.tif
-EBS_IDW_Ctenodiscus_crispatus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1985.tif
-EBS_IDW_Ctenodiscus_crispatus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1987.tif
-EBS_IDW_Ctenodiscus_crispatus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1988.tif
-EBS_IDW_Ctenodiscus_crispatus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1989.tif
-EBS_IDW_Ctenodiscus_crispatus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1990.tif
-EBS_IDW_Ctenodiscus_crispatus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1991.tif
-EBS_IDW_Ctenodiscus_crispatus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1992.tif
-EBS_IDW_Ctenodiscus_crispatus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1993.tif
-EBS_IDW_Ctenodiscus_crispatus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1994.tif
-EBS_IDW_Ctenodiscus_crispatus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1995.tif
-EBS_IDW_Ctenodiscus_crispatus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1996.tif
-EBS_IDW_Ctenodiscus_crispatus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1997.tif
-EBS_IDW_Ctenodiscus_crispatus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1998.tif
-EBS_IDW_Ctenodiscus_crispatus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1999.tif
-EBS_IDW_Ctenodiscus_crispatus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2000.tif
-EBS_IDW_Ctenodiscus_crispatus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2001.tif
-EBS_IDW_Ctenodiscus_crispatus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2002.tif
-EBS_IDW_Ctenodiscus_crispatus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2003.tif
-EBS_IDW_Ctenodiscus_crispatus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2004.tif
-EBS_IDW_Ctenodiscus_crispatus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2005.tif
-EBS_IDW_Ctenodiscus_crispatus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2006.tif
-EBS_IDW_Ctenodiscus_crispatus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2007.tif
-EBS_IDW_Ctenodiscus_crispatus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2008.tif
-EBS_IDW_Ctenodiscus_crispatus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2009.tif
-EBS_IDW_Ctenodiscus_crispatus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2010.tif
-EBS_IDW_Ctenodiscus_crispatus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2011.tif
-EBS_IDW_Ctenodiscus_crispatus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2012.tif
-EBS_IDW_Ctenodiscus_crispatus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2013.tif
-EBS_IDW_Ctenodiscus_crispatus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2014.tif
-EBS_IDW_Ctenodiscus_crispatus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2015.tif
-EBS_IDW_Ctenodiscus_crispatus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2016.tif
-EBS_IDW_Ctenodiscus_crispatus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2017.tif
-EBS_IDW_Ctenodiscus_crispatus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2018.tif
-EBS_IDW_Ctenodiscus_crispatus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2019.tif
-EBS_IDW_Ctenodiscus_crispatus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2021.tif
-EBS_IDW_Ctenodiscus_crispatus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2022.tif
-EBS_IDW_Dasycottus_setiger_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1985.tif
-EBS_IDW_Dasycottus_setiger_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1987.tif
-EBS_IDW_Dasycottus_setiger_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1988.tif
-EBS_IDW_Dasycottus_setiger_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1989.tif
-EBS_IDW_Dasycottus_setiger_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1990.tif
-EBS_IDW_Dasycottus_setiger_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1991.tif
-EBS_IDW_Dasycottus_setiger_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1992.tif
-EBS_IDW_Dasycottus_setiger_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1993.tif
-EBS_IDW_Dasycottus_setiger_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1994.tif
-EBS_IDW_Dasycottus_setiger_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1995.tif
-EBS_IDW_Dasycottus_setiger_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1996.tif
-EBS_IDW_Dasycottus_setiger_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1997.tif
-EBS_IDW_Dasycottus_setiger_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1998.tif
-EBS_IDW_Dasycottus_setiger_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1999.tif
-EBS_IDW_Dasycottus_setiger_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2000.tif
-EBS_IDW_Dasycottus_setiger_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2001.tif
-EBS_IDW_Dasycottus_setiger_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2002.tif
-EBS_IDW_Dasycottus_setiger_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2003.tif
-EBS_IDW_Dasycottus_setiger_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2004.tif
-EBS_IDW_Dasycottus_setiger_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2005.tif
-EBS_IDW_Dasycottus_setiger_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2006.tif
-EBS_IDW_Dasycottus_setiger_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2007.tif
-EBS_IDW_Dasycottus_setiger_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2008.tif
-EBS_IDW_Dasycottus_setiger_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2009.tif
-EBS_IDW_Dasycottus_setiger_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2010.tif
-EBS_IDW_Dasycottus_setiger_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2011.tif
-EBS_IDW_Dasycottus_setiger_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2012.tif
-EBS_IDW_Dasycottus_setiger_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2013.tif
-EBS_IDW_Dasycottus_setiger_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2014.tif
-EBS_IDW_Dasycottus_setiger_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2015.tif
-EBS_IDW_Dasycottus_setiger_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2016.tif
-EBS_IDW_Dasycottus_setiger_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2017.tif
-EBS_IDW_Dasycottus_setiger_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2018.tif
-EBS_IDW_Dasycottus_setiger_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2019.tif
-EBS_IDW_Dasycottus_setiger_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2021.tif
-EBS_IDW_Dasycottus_setiger_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2022.tif
-EBS_IDW_Erimacrus_isenbeckii_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1985.tif
-EBS_IDW_Erimacrus_isenbeckii_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1987.tif
-EBS_IDW_Erimacrus_isenbeckii_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1988.tif
-EBS_IDW_Erimacrus_isenbeckii_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1989.tif
-EBS_IDW_Erimacrus_isenbeckii_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1990.tif
-EBS_IDW_Erimacrus_isenbeckii_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1991.tif
-EBS_IDW_Erimacrus_isenbeckii_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1992.tif
-EBS_IDW_Erimacrus_isenbeckii_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1993.tif
-EBS_IDW_Erimacrus_isenbeckii_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1994.tif
-EBS_IDW_Erimacrus_isenbeckii_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1995.tif
-EBS_IDW_Erimacrus_isenbeckii_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1996.tif
-EBS_IDW_Erimacrus_isenbeckii_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1997.tif
-EBS_IDW_Erimacrus_isenbeckii_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1998.tif
-EBS_IDW_Erimacrus_isenbeckii_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1999.tif
-EBS_IDW_Erimacrus_isenbeckii_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2000.tif
-EBS_IDW_Erimacrus_isenbeckii_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2001.tif
-EBS_IDW_Erimacrus_isenbeckii_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2002.tif
-EBS_IDW_Erimacrus_isenbeckii_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2003.tif
-EBS_IDW_Erimacrus_isenbeckii_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2004.tif
-EBS_IDW_Erimacrus_isenbeckii_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2005.tif
-EBS_IDW_Erimacrus_isenbeckii_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2006.tif
-EBS_IDW_Erimacrus_isenbeckii_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2007.tif
-EBS_IDW_Erimacrus_isenbeckii_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2008.tif
-EBS_IDW_Erimacrus_isenbeckii_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2009.tif
-EBS_IDW_Erimacrus_isenbeckii_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2010.tif
-EBS_IDW_Erimacrus_isenbeckii_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2011.tif
-EBS_IDW_Erimacrus_isenbeckii_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2012.tif
-EBS_IDW_Erimacrus_isenbeckii_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2013.tif
-EBS_IDW_Erimacrus_isenbeckii_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2014.tif
-EBS_IDW_Erimacrus_isenbeckii_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2015.tif
-EBS_IDW_Erimacrus_isenbeckii_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2016.tif
-EBS_IDW_Erimacrus_isenbeckii_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2017.tif
-EBS_IDW_Erimacrus_isenbeckii_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2018.tif
-EBS_IDW_Erimacrus_isenbeckii_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2019.tif
-EBS_IDW_Erimacrus_isenbeckii_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2021.tif
-EBS_IDW_Erimacrus_isenbeckii_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2022.tif
-EBS_IDW_Eunoe_nodosa_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_1985.tif
-EBS_IDW_Eunoe_nodosa_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_1987.tif
-EBS_IDW_Eunoe_nodosa_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_1988.tif
-EBS_IDW_Eunoe_nodosa_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_1989.tif
-EBS_IDW_Eunoe_nodosa_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_1990.tif
-EBS_IDW_Eunoe_nodosa_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_1991.tif
-EBS_IDW_Eunoe_nodosa_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_1992.tif
-EBS_IDW_Eunoe_nodosa_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_1993.tif
-EBS_IDW_Eunoe_nodosa_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_1994.tif
-EBS_IDW_Eunoe_nodosa_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_1995.tif
-EBS_IDW_Eunoe_nodosa_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_1996.tif
-EBS_IDW_Eunoe_nodosa_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_1997.tif
-EBS_IDW_Eunoe_nodosa_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_1998.tif
-EBS_IDW_Eunoe_nodosa_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_1999.tif
-EBS_IDW_Eunoe_nodosa_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_2000.tif
-EBS_IDW_Eunoe_nodosa_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_2001.tif
-EBS_IDW_Eunoe_nodosa_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_2002.tif
-EBS_IDW_Eunoe_nodosa_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_2003.tif
-EBS_IDW_Eunoe_nodosa_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_2004.tif
-EBS_IDW_Eunoe_nodosa_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_2005.tif
-EBS_IDW_Eunoe_nodosa_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_2006.tif
-EBS_IDW_Eunoe_nodosa_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_2007.tif
-EBS_IDW_Eunoe_nodosa_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_2008.tif
-EBS_IDW_Eunoe_nodosa_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_2009.tif
-EBS_IDW_Eunoe_nodosa_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_2010.tif
-EBS_IDW_Eunoe_nodosa_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_2011.tif
-EBS_IDW_Eunoe_nodosa_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_2012.tif
-EBS_IDW_Eunoe_nodosa_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_2013.tif
-EBS_IDW_Eunoe_nodosa_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_2014.tif
-EBS_IDW_Eunoe_nodosa_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_2015.tif
-EBS_IDW_Eunoe_nodosa_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_2016.tif
-EBS_IDW_Eunoe_nodosa_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_2017.tif
-EBS_IDW_Eunoe_nodosa_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_2018.tif
-EBS_IDW_Eunoe_nodosa_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_2019.tif
-EBS_IDW_Eunoe_nodosa_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_2021.tif
-EBS_IDW_Eunoe_nodosa_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Eunoe nodosa\EBS_IDW_Eunoe_nodosa_2022.tif
-EBS_IDW_Fusitriton_oregonensis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_1985.tif
-EBS_IDW_Fusitriton_oregonensis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_1987.tif
-EBS_IDW_Fusitriton_oregonensis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_1988.tif
-EBS_IDW_Fusitriton_oregonensis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_1989.tif
-EBS_IDW_Fusitriton_oregonensis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_1990.tif
-EBS_IDW_Fusitriton_oregonensis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_1991.tif
-EBS_IDW_Fusitriton_oregonensis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_1992.tif
-EBS_IDW_Fusitriton_oregonensis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_1993.tif
-EBS_IDW_Fusitriton_oregonensis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_1994.tif
-EBS_IDW_Fusitriton_oregonensis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_1995.tif
-EBS_IDW_Fusitriton_oregonensis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_1996.tif
-EBS_IDW_Fusitriton_oregonensis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_1997.tif
-EBS_IDW_Fusitriton_oregonensis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_1998.tif
-EBS_IDW_Fusitriton_oregonensis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:02:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_1999.tif
-EBS_IDW_Fusitriton_oregonensis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_2000.tif
-EBS_IDW_Fusitriton_oregonensis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_2001.tif
-EBS_IDW_Fusitriton_oregonensis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_2002.tif
-EBS_IDW_Fusitriton_oregonensis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_2003.tif
-EBS_IDW_Fusitriton_oregonensis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_2004.tif
-EBS_IDW_Fusitriton_oregonensis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_2005.tif
-EBS_IDW_Fusitriton_oregonensis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_2006.tif
-EBS_IDW_Fusitriton_oregonensis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_2007.tif
-EBS_IDW_Fusitriton_oregonensis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_2008.tif
-EBS_IDW_Fusitriton_oregonensis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_2009.tif
-EBS_IDW_Fusitriton_oregonensis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_2010.tif
-EBS_IDW_Fusitriton_oregonensis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_2011.tif
-EBS_IDW_Fusitriton_oregonensis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_2012.tif
-EBS_IDW_Fusitriton_oregonensis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_2013.tif
-EBS_IDW_Fusitriton_oregonensis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_2014.tif
-EBS_IDW_Fusitriton_oregonensis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_2015.tif
-EBS_IDW_Fusitriton_oregonensis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_2016.tif
-EBS_IDW_Fusitriton_oregonensis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_2017.tif
-EBS_IDW_Fusitriton_oregonensis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_2018.tif
-EBS_IDW_Fusitriton_oregonensis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_2019.tif
-EBS_IDW_Fusitriton_oregonensis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_2021.tif
-EBS_IDW_Fusitriton_oregonensis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Fusitriton oregonensis\EBS_IDW_Fusitriton_oregonensis_2022.tif
-EBS_IDW_Gadus_chalcogrammus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1985.tif
-EBS_IDW_Gadus_chalcogrammus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1987.tif
-EBS_IDW_Gadus_chalcogrammus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1988.tif
-EBS_IDW_Gadus_chalcogrammus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1989.tif
-EBS_IDW_Gadus_chalcogrammus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1990.tif
-EBS_IDW_Gadus_chalcogrammus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1991.tif
-EBS_IDW_Gadus_chalcogrammus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1992.tif
-EBS_IDW_Gadus_chalcogrammus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1993.tif
-EBS_IDW_Gadus_chalcogrammus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1994.tif
-EBS_IDW_Gadus_chalcogrammus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1995.tif
-EBS_IDW_Gadus_chalcogrammus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1996.tif
-EBS_IDW_Gadus_chalcogrammus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1997.tif
-EBS_IDW_Gadus_chalcogrammus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1998.tif
-EBS_IDW_Gadus_chalcogrammus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1999.tif
-EBS_IDW_Gadus_chalcogrammus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2000.tif
-EBS_IDW_Gadus_chalcogrammus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2001.tif
-EBS_IDW_Gadus_chalcogrammus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2002.tif
-EBS_IDW_Gadus_chalcogrammus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2003.tif
-EBS_IDW_Gadus_chalcogrammus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2004.tif
-EBS_IDW_Gadus_chalcogrammus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2005.tif
-EBS_IDW_Gadus_chalcogrammus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2006.tif
-EBS_IDW_Gadus_chalcogrammus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2007.tif
-EBS_IDW_Gadus_chalcogrammus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2008.tif
-EBS_IDW_Gadus_chalcogrammus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2009.tif
-EBS_IDW_Gadus_chalcogrammus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2010.tif
-EBS_IDW_Gadus_chalcogrammus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2011.tif
-EBS_IDW_Gadus_chalcogrammus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2012.tif
-EBS_IDW_Gadus_chalcogrammus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2013.tif
-EBS_IDW_Gadus_chalcogrammus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2014.tif
-EBS_IDW_Gadus_chalcogrammus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2015.tif
-EBS_IDW_Gadus_chalcogrammus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2016.tif
-EBS_IDW_Gadus_chalcogrammus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2017.tif
-EBS_IDW_Gadus_chalcogrammus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2018.tif
-EBS_IDW_Gadus_chalcogrammus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2019.tif
-EBS_IDW_Gadus_chalcogrammus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2021.tif
-EBS_IDW_Gadus_chalcogrammus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2022.tif
-EBS_IDW_Gadus_macrocephalus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1985.tif
-EBS_IDW_Gadus_macrocephalus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1987.tif
-EBS_IDW_Gadus_macrocephalus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1988.tif
-EBS_IDW_Gadus_macrocephalus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1989.tif
-EBS_IDW_Gadus_macrocephalus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1990.tif
-EBS_IDW_Gadus_macrocephalus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1991.tif
-EBS_IDW_Gadus_macrocephalus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1992.tif
-EBS_IDW_Gadus_macrocephalus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1993.tif
-EBS_IDW_Gadus_macrocephalus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1994.tif
-EBS_IDW_Gadus_macrocephalus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1995.tif
-EBS_IDW_Gadus_macrocephalus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1996.tif
-EBS_IDW_Gadus_macrocephalus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1997.tif
-EBS_IDW_Gadus_macrocephalus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1998.tif
-EBS_IDW_Gadus_macrocephalus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1999.tif
-EBS_IDW_Gadus_macrocephalus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2000.tif
-EBS_IDW_Gadus_macrocephalus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2001.tif
-EBS_IDW_Gadus_macrocephalus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2002.tif
-EBS_IDW_Gadus_macrocephalus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2003.tif
-EBS_IDW_Gadus_macrocephalus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2004.tif
-EBS_IDW_Gadus_macrocephalus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2005.tif
-EBS_IDW_Gadus_macrocephalus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2006.tif
-EBS_IDW_Gadus_macrocephalus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2007.tif
-EBS_IDW_Gadus_macrocephalus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2008.tif
-EBS_IDW_Gadus_macrocephalus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2009.tif
-EBS_IDW_Gadus_macrocephalus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2010.tif
-EBS_IDW_Gadus_macrocephalus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2011.tif
-EBS_IDW_Gadus_macrocephalus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2012.tif
-EBS_IDW_Gadus_macrocephalus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2013.tif
-EBS_IDW_Gadus_macrocephalus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2014.tif
-EBS_IDW_Gadus_macrocephalus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2015.tif
-EBS_IDW_Gadus_macrocephalus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2016.tif
-EBS_IDW_Gadus_macrocephalus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2017.tif
-EBS_IDW_Gadus_macrocephalus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2018.tif
-EBS_IDW_Gadus_macrocephalus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2019.tif
-EBS_IDW_Gadus_macrocephalus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2021.tif
-EBS_IDW_Gadus_macrocephalus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2022.tif
-EBS_IDW_Glyptocephalus_zachirus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1985.tif
-EBS_IDW_Glyptocephalus_zachirus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1987.tif
-EBS_IDW_Glyptocephalus_zachirus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1988.tif
-EBS_IDW_Glyptocephalus_zachirus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1989.tif
-EBS_IDW_Glyptocephalus_zachirus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1990.tif
-EBS_IDW_Glyptocephalus_zachirus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1991.tif
-EBS_IDW_Glyptocephalus_zachirus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1992.tif
-EBS_IDW_Glyptocephalus_zachirus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1993.tif
-EBS_IDW_Glyptocephalus_zachirus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1994.tif
-EBS_IDW_Glyptocephalus_zachirus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1995.tif
-EBS_IDW_Glyptocephalus_zachirus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1996.tif
-EBS_IDW_Glyptocephalus_zachirus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1997.tif
-EBS_IDW_Glyptocephalus_zachirus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1998.tif
-EBS_IDW_Glyptocephalus_zachirus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1999.tif
-EBS_IDW_Glyptocephalus_zachirus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2000.tif
-EBS_IDW_Glyptocephalus_zachirus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2001.tif
-EBS_IDW_Glyptocephalus_zachirus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2002.tif
-EBS_IDW_Glyptocephalus_zachirus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2003.tif
-EBS_IDW_Glyptocephalus_zachirus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2004.tif
-EBS_IDW_Glyptocephalus_zachirus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2005.tif
-EBS_IDW_Glyptocephalus_zachirus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2006.tif
-EBS_IDW_Glyptocephalus_zachirus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2007.tif
-EBS_IDW_Glyptocephalus_zachirus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2008.tif
-EBS_IDW_Glyptocephalus_zachirus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2009.tif
-EBS_IDW_Glyptocephalus_zachirus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2010.tif
-EBS_IDW_Glyptocephalus_zachirus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2011.tif
-EBS_IDW_Glyptocephalus_zachirus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2012.tif
-EBS_IDW_Glyptocephalus_zachirus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2013.tif
-EBS_IDW_Glyptocephalus_zachirus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2014.tif
-EBS_IDW_Glyptocephalus_zachirus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2015.tif
-EBS_IDW_Glyptocephalus_zachirus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2016.tif
-EBS_IDW_Glyptocephalus_zachirus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2017.tif
-EBS_IDW_Glyptocephalus_zachirus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2018.tif
-EBS_IDW_Glyptocephalus_zachirus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2019.tif
-EBS_IDW_Glyptocephalus_zachirus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2021.tif
-EBS_IDW_Glyptocephalus_zachirus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2022.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1985.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1987.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1988.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1989.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1990.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1991.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1992.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1993.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1994.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1995.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1996.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1997.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1998.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1999.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2000.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2001.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2002.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2003.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2004.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2005.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2006.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2007.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2008.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2009.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2010.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2011.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2012.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2013.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2014.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2015.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2016.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2017.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2018.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2019.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2021.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2022.tif
-EBS_IDW_Hemilepidotus_jordani_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1985.tif
-EBS_IDW_Hemilepidotus_jordani_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1987.tif
-EBS_IDW_Hemilepidotus_jordani_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1988.tif
-EBS_IDW_Hemilepidotus_jordani_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1989.tif
-EBS_IDW_Hemilepidotus_jordani_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1990.tif
-EBS_IDW_Hemilepidotus_jordani_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1991.tif
-EBS_IDW_Hemilepidotus_jordani_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1992.tif
-EBS_IDW_Hemilepidotus_jordani_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1993.tif
-EBS_IDW_Hemilepidotus_jordani_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1994.tif
-EBS_IDW_Hemilepidotus_jordani_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1995.tif
-EBS_IDW_Hemilepidotus_jordani_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1996.tif
-EBS_IDW_Hemilepidotus_jordani_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1997.tif
-EBS_IDW_Hemilepidotus_jordani_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1998.tif
-EBS_IDW_Hemilepidotus_jordani_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1999.tif
-EBS_IDW_Hemilepidotus_jordani_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2000.tif
-EBS_IDW_Hemilepidotus_jordani_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2001.tif
-EBS_IDW_Hemilepidotus_jordani_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2002.tif
-EBS_IDW_Hemilepidotus_jordani_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2003.tif
-EBS_IDW_Hemilepidotus_jordani_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2004.tif
-EBS_IDW_Hemilepidotus_jordani_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2005.tif
-EBS_IDW_Hemilepidotus_jordani_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2006.tif
-EBS_IDW_Hemilepidotus_jordani_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2007.tif
-EBS_IDW_Hemilepidotus_jordani_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2008.tif
-EBS_IDW_Hemilepidotus_jordani_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2009.tif
-EBS_IDW_Hemilepidotus_jordani_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2010.tif
-EBS_IDW_Hemilepidotus_jordani_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2011.tif
-EBS_IDW_Hemilepidotus_jordani_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2012.tif
-EBS_IDW_Hemilepidotus_jordani_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2013.tif
-EBS_IDW_Hemilepidotus_jordani_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2014.tif
-EBS_IDW_Hemilepidotus_jordani_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2015.tif
-EBS_IDW_Hemilepidotus_jordani_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:03:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2016.tif
-EBS_IDW_Hemilepidotus_jordani_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2017.tif
-EBS_IDW_Hemilepidotus_jordani_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2018.tif
-EBS_IDW_Hemilepidotus_jordani_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2019.tif
-EBS_IDW_Hemilepidotus_jordani_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2021.tif
-EBS_IDW_Hemilepidotus_jordani_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2022.tif
-EBS_IDW_Hemilepidotus_papilio_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_1985.tif
-EBS_IDW_Hemilepidotus_papilio_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_1987.tif
-EBS_IDW_Hemilepidotus_papilio_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_1988.tif
-EBS_IDW_Hemilepidotus_papilio_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_1989.tif
-EBS_IDW_Hemilepidotus_papilio_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_1990.tif
-EBS_IDW_Hemilepidotus_papilio_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_1991.tif
-EBS_IDW_Hemilepidotus_papilio_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_1992.tif
-EBS_IDW_Hemilepidotus_papilio_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_1993.tif
-EBS_IDW_Hemilepidotus_papilio_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_1994.tif
-EBS_IDW_Hemilepidotus_papilio_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_1995.tif
-EBS_IDW_Hemilepidotus_papilio_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_1996.tif
-EBS_IDW_Hemilepidotus_papilio_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_1997.tif
-EBS_IDW_Hemilepidotus_papilio_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_1998.tif
-EBS_IDW_Hemilepidotus_papilio_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_1999.tif
-EBS_IDW_Hemilepidotus_papilio_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_2000.tif
-EBS_IDW_Hemilepidotus_papilio_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_2001.tif
-EBS_IDW_Hemilepidotus_papilio_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_2002.tif
-EBS_IDW_Hemilepidotus_papilio_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_2003.tif
-EBS_IDW_Hemilepidotus_papilio_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_2004.tif
-EBS_IDW_Hemilepidotus_papilio_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_2005.tif
-EBS_IDW_Hemilepidotus_papilio_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_2006.tif
-EBS_IDW_Hemilepidotus_papilio_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_2007.tif
-EBS_IDW_Hemilepidotus_papilio_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_2008.tif
-EBS_IDW_Hemilepidotus_papilio_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_2009.tif
-EBS_IDW_Hemilepidotus_papilio_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_2010.tif
-EBS_IDW_Hemilepidotus_papilio_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_2011.tif
-EBS_IDW_Hemilepidotus_papilio_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_2012.tif
-EBS_IDW_Hemilepidotus_papilio_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_2013.tif
-EBS_IDW_Hemilepidotus_papilio_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_2014.tif
-EBS_IDW_Hemilepidotus_papilio_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_2015.tif
-EBS_IDW_Hemilepidotus_papilio_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_2016.tif
-EBS_IDW_Hemilepidotus_papilio_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_2017.tif
-EBS_IDW_Hemilepidotus_papilio_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_2018.tif
-EBS_IDW_Hemilepidotus_papilio_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_2019.tif
-EBS_IDW_Hemilepidotus_papilio_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_2021.tif
-EBS_IDW_Hemilepidotus_papilio_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemilepidotus papilio\EBS_IDW_Hemilepidotus_papilio_2022.tif
-EBS_IDW_Hemitripterus_bolini_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1985.tif
-EBS_IDW_Hemitripterus_bolini_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1987.tif
-EBS_IDW_Hemitripterus_bolini_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1988.tif
-EBS_IDW_Hemitripterus_bolini_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1989.tif
-EBS_IDW_Hemitripterus_bolini_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1990.tif
-EBS_IDW_Hemitripterus_bolini_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1991.tif
-EBS_IDW_Hemitripterus_bolini_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1992.tif
-EBS_IDW_Hemitripterus_bolini_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1993.tif
-EBS_IDW_Hemitripterus_bolini_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1994.tif
-EBS_IDW_Hemitripterus_bolini_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1995.tif
-EBS_IDW_Hemitripterus_bolini_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1996.tif
-EBS_IDW_Hemitripterus_bolini_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1997.tif
-EBS_IDW_Hemitripterus_bolini_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1998.tif
-EBS_IDW_Hemitripterus_bolini_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1999.tif
-EBS_IDW_Hemitripterus_bolini_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2000.tif
-EBS_IDW_Hemitripterus_bolini_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2001.tif
-EBS_IDW_Hemitripterus_bolini_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2002.tif
-EBS_IDW_Hemitripterus_bolini_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2003.tif
-EBS_IDW_Hemitripterus_bolini_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2004.tif
-EBS_IDW_Hemitripterus_bolini_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2005.tif
-EBS_IDW_Hemitripterus_bolini_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2006.tif
-EBS_IDW_Hemitripterus_bolini_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2007.tif
-EBS_IDW_Hemitripterus_bolini_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2008.tif
-EBS_IDW_Hemitripterus_bolini_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2009.tif
-EBS_IDW_Hemitripterus_bolini_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2010.tif
-EBS_IDW_Hemitripterus_bolini_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2011.tif
-EBS_IDW_Hemitripterus_bolini_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2012.tif
-EBS_IDW_Hemitripterus_bolini_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2013.tif
-EBS_IDW_Hemitripterus_bolini_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2014.tif
-EBS_IDW_Hemitripterus_bolini_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2015.tif
-EBS_IDW_Hemitripterus_bolini_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2016.tif
-EBS_IDW_Hemitripterus_bolini_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2017.tif
-EBS_IDW_Hemitripterus_bolini_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2018.tif
-EBS_IDW_Hemitripterus_bolini_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2019.tif
-EBS_IDW_Hemitripterus_bolini_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2021.tif
-EBS_IDW_Hemitripterus_bolini_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2022.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1985.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1987.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1988.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1989.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1990.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1991.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1992.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1993.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1994.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1995.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1996.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1997.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1998.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_1999.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2000.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2001.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2002.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2003.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2004.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2005.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2006.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2007.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2008.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2009.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2010.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2011.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2012.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2013.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2014.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2015.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2016.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2017.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2018.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2019.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2021.tif
-EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossoides elassodon and H robustus\EBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2022.tif
-EBS_IDW_Hippoglossus_stenolepis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1985.tif
-EBS_IDW_Hippoglossus_stenolepis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1987.tif
-EBS_IDW_Hippoglossus_stenolepis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1988.tif
-EBS_IDW_Hippoglossus_stenolepis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1989.tif
-EBS_IDW_Hippoglossus_stenolepis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1990.tif
-EBS_IDW_Hippoglossus_stenolepis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1991.tif
-EBS_IDW_Hippoglossus_stenolepis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1992.tif
-EBS_IDW_Hippoglossus_stenolepis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1993.tif
-EBS_IDW_Hippoglossus_stenolepis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1994.tif
-EBS_IDW_Hippoglossus_stenolepis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1995.tif
-EBS_IDW_Hippoglossus_stenolepis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1996.tif
-EBS_IDW_Hippoglossus_stenolepis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1997.tif
-EBS_IDW_Hippoglossus_stenolepis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1998.tif
-EBS_IDW_Hippoglossus_stenolepis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1999.tif
-EBS_IDW_Hippoglossus_stenolepis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2000.tif
-EBS_IDW_Hippoglossus_stenolepis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2001.tif
-EBS_IDW_Hippoglossus_stenolepis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2002.tif
-EBS_IDW_Hippoglossus_stenolepis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2003.tif
-EBS_IDW_Hippoglossus_stenolepis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2004.tif
-EBS_IDW_Hippoglossus_stenolepis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2005.tif
-EBS_IDW_Hippoglossus_stenolepis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2006.tif
-EBS_IDW_Hippoglossus_stenolepis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2007.tif
-EBS_IDW_Hippoglossus_stenolepis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2008.tif
-EBS_IDW_Hippoglossus_stenolepis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2009.tif
-EBS_IDW_Hippoglossus_stenolepis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2010.tif
-EBS_IDW_Hippoglossus_stenolepis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2011.tif
-EBS_IDW_Hippoglossus_stenolepis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2012.tif
-EBS_IDW_Hippoglossus_stenolepis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2013.tif
-EBS_IDW_Hippoglossus_stenolepis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2014.tif
-EBS_IDW_Hippoglossus_stenolepis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2015.tif
-EBS_IDW_Hippoglossus_stenolepis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2016.tif
-EBS_IDW_Hippoglossus_stenolepis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2017.tif
-EBS_IDW_Hippoglossus_stenolepis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2018.tif
-EBS_IDW_Hippoglossus_stenolepis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2019.tif
-EBS_IDW_Hippoglossus_stenolepis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2021.tif
-EBS_IDW_Hippoglossus_stenolepis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2022.tif
-EBS_IDW_Hyas_coarctatus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1985.tif
-EBS_IDW_Hyas_coarctatus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1987.tif
-EBS_IDW_Hyas_coarctatus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1988.tif
-EBS_IDW_Hyas_coarctatus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1989.tif
-EBS_IDW_Hyas_coarctatus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1990.tif
-EBS_IDW_Hyas_coarctatus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1991.tif
-EBS_IDW_Hyas_coarctatus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1992.tif
-EBS_IDW_Hyas_coarctatus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1993.tif
-EBS_IDW_Hyas_coarctatus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1994.tif
-EBS_IDW_Hyas_coarctatus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1995.tif
-EBS_IDW_Hyas_coarctatus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1996.tif
-EBS_IDW_Hyas_coarctatus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1997.tif
-EBS_IDW_Hyas_coarctatus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1998.tif
-EBS_IDW_Hyas_coarctatus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1999.tif
-EBS_IDW_Hyas_coarctatus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2000.tif
-EBS_IDW_Hyas_coarctatus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2001.tif
-EBS_IDW_Hyas_coarctatus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2002.tif
-EBS_IDW_Hyas_coarctatus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2003.tif
-EBS_IDW_Hyas_coarctatus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2004.tif
-EBS_IDW_Hyas_coarctatus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2005.tif
-EBS_IDW_Hyas_coarctatus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2006.tif
-EBS_IDW_Hyas_coarctatus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2007.tif
-EBS_IDW_Hyas_coarctatus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2008.tif
-EBS_IDW_Hyas_coarctatus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2009.tif
-EBS_IDW_Hyas_coarctatus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2010.tif
-EBS_IDW_Hyas_coarctatus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2011.tif
-EBS_IDW_Hyas_coarctatus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2012.tif
-EBS_IDW_Hyas_coarctatus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2013.tif
-EBS_IDW_Hyas_coarctatus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2014.tif
-EBS_IDW_Hyas_coarctatus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2015.tif
-EBS_IDW_Hyas_coarctatus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2016.tif
-EBS_IDW_Hyas_coarctatus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2017.tif
-EBS_IDW_Hyas_coarctatus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2018.tif
-EBS_IDW_Hyas_coarctatus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2019.tif
-EBS_IDW_Hyas_coarctatus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2021.tif
-EBS_IDW_Hyas_coarctatus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2022.tif
-EBS_IDW_Hyas_lyratus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1985.tif
-EBS_IDW_Hyas_lyratus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1987.tif
-EBS_IDW_Hyas_lyratus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1988.tif
-EBS_IDW_Hyas_lyratus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1989.tif
-EBS_IDW_Hyas_lyratus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1990.tif
-EBS_IDW_Hyas_lyratus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1991.tif
-EBS_IDW_Hyas_lyratus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1992.tif
-EBS_IDW_Hyas_lyratus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1993.tif
-EBS_IDW_Hyas_lyratus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1994.tif
-EBS_IDW_Hyas_lyratus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1995.tif
-EBS_IDW_Hyas_lyratus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1996.tif
-EBS_IDW_Hyas_lyratus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:04:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1997.tif
-EBS_IDW_Hyas_lyratus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1998.tif
-EBS_IDW_Hyas_lyratus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1999.tif
-EBS_IDW_Hyas_lyratus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2000.tif
-EBS_IDW_Hyas_lyratus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2001.tif
-EBS_IDW_Hyas_lyratus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2002.tif
-EBS_IDW_Hyas_lyratus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2003.tif
-EBS_IDW_Hyas_lyratus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2004.tif
-EBS_IDW_Hyas_lyratus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2005.tif
-EBS_IDW_Hyas_lyratus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2006.tif
-EBS_IDW_Hyas_lyratus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2007.tif
-EBS_IDW_Hyas_lyratus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2008.tif
-EBS_IDW_Hyas_lyratus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2009.tif
-EBS_IDW_Hyas_lyratus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2010.tif
-EBS_IDW_Hyas_lyratus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2011.tif
-EBS_IDW_Hyas_lyratus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2012.tif
-EBS_IDW_Hyas_lyratus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2013.tif
-EBS_IDW_Hyas_lyratus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2014.tif
-EBS_IDW_Hyas_lyratus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2015.tif
-EBS_IDW_Hyas_lyratus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2016.tif
-EBS_IDW_Hyas_lyratus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2017.tif
-EBS_IDW_Hyas_lyratus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2018.tif
-EBS_IDW_Hyas_lyratus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2019.tif
-EBS_IDW_Hyas_lyratus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2021.tif
-EBS_IDW_Hyas_lyratus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2022.tif
-EBS_IDW_Icelus_spiniger_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1985.tif
-EBS_IDW_Icelus_spiniger_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1987.tif
-EBS_IDW_Icelus_spiniger_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1988.tif
-EBS_IDW_Icelus_spiniger_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1989.tif
-EBS_IDW_Icelus_spiniger_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1990.tif
-EBS_IDW_Icelus_spiniger_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1991.tif
-EBS_IDW_Icelus_spiniger_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1992.tif
-EBS_IDW_Icelus_spiniger_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1993.tif
-EBS_IDW_Icelus_spiniger_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1994.tif
-EBS_IDW_Icelus_spiniger_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1995.tif
-EBS_IDW_Icelus_spiniger_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1996.tif
-EBS_IDW_Icelus_spiniger_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1997.tif
-EBS_IDW_Icelus_spiniger_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1998.tif
-EBS_IDW_Icelus_spiniger_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1999.tif
-EBS_IDW_Icelus_spiniger_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2000.tif
-EBS_IDW_Icelus_spiniger_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2001.tif
-EBS_IDW_Icelus_spiniger_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2002.tif
-EBS_IDW_Icelus_spiniger_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2003.tif
-EBS_IDW_Icelus_spiniger_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2004.tif
-EBS_IDW_Icelus_spiniger_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2005.tif
-EBS_IDW_Icelus_spiniger_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2006.tif
-EBS_IDW_Icelus_spiniger_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2007.tif
-EBS_IDW_Icelus_spiniger_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2008.tif
-EBS_IDW_Icelus_spiniger_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2009.tif
-EBS_IDW_Icelus_spiniger_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2010.tif
-EBS_IDW_Icelus_spiniger_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2011.tif
-EBS_IDW_Icelus_spiniger_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2012.tif
-EBS_IDW_Icelus_spiniger_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2013.tif
-EBS_IDW_Icelus_spiniger_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2014.tif
-EBS_IDW_Icelus_spiniger_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2015.tif
-EBS_IDW_Icelus_spiniger_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2016.tif
-EBS_IDW_Icelus_spiniger_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2017.tif
-EBS_IDW_Icelus_spiniger_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2018.tif
-EBS_IDW_Icelus_spiniger_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2019.tif
-EBS_IDW_Icelus_spiniger_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2021.tif
-EBS_IDW_Icelus_spiniger_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2022.tif
-EBS_IDW_Labidochirus_splendescens_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1985.tif
-EBS_IDW_Labidochirus_splendescens_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1987.tif
-EBS_IDW_Labidochirus_splendescens_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1988.tif
-EBS_IDW_Labidochirus_splendescens_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1989.tif
-EBS_IDW_Labidochirus_splendescens_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1990.tif
-EBS_IDW_Labidochirus_splendescens_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1991.tif
-EBS_IDW_Labidochirus_splendescens_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1992.tif
-EBS_IDW_Labidochirus_splendescens_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1993.tif
-EBS_IDW_Labidochirus_splendescens_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1994.tif
-EBS_IDW_Labidochirus_splendescens_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1995.tif
-EBS_IDW_Labidochirus_splendescens_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1996.tif
-EBS_IDW_Labidochirus_splendescens_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1997.tif
-EBS_IDW_Labidochirus_splendescens_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1998.tif
-EBS_IDW_Labidochirus_splendescens_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1999.tif
-EBS_IDW_Labidochirus_splendescens_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2000.tif
-EBS_IDW_Labidochirus_splendescens_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2001.tif
-EBS_IDW_Labidochirus_splendescens_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2002.tif
-EBS_IDW_Labidochirus_splendescens_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2003.tif
-EBS_IDW_Labidochirus_splendescens_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2004.tif
-EBS_IDW_Labidochirus_splendescens_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2005.tif
-EBS_IDW_Labidochirus_splendescens_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2006.tif
-EBS_IDW_Labidochirus_splendescens_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2007.tif
-EBS_IDW_Labidochirus_splendescens_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2008.tif
-EBS_IDW_Labidochirus_splendescens_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2009.tif
-EBS_IDW_Labidochirus_splendescens_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2010.tif
-EBS_IDW_Labidochirus_splendescens_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2011.tif
-EBS_IDW_Labidochirus_splendescens_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2012.tif
-EBS_IDW_Labidochirus_splendescens_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2013.tif
-EBS_IDW_Labidochirus_splendescens_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2014.tif
-EBS_IDW_Labidochirus_splendescens_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2015.tif
-EBS_IDW_Labidochirus_splendescens_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2016.tif
-EBS_IDW_Labidochirus_splendescens_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2017.tif
-EBS_IDW_Labidochirus_splendescens_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2018.tif
-EBS_IDW_Labidochirus_splendescens_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2019.tif
-EBS_IDW_Labidochirus_splendescens_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2021.tif
-EBS_IDW_Labidochirus_splendescens_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2022.tif
-EBS_IDW_Lepidopsetta_sp_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1985.tif
-EBS_IDW_Lepidopsetta_sp_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1987.tif
-EBS_IDW_Lepidopsetta_sp_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1988.tif
-EBS_IDW_Lepidopsetta_sp_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1989.tif
-EBS_IDW_Lepidopsetta_sp_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1990.tif
-EBS_IDW_Lepidopsetta_sp_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1991.tif
-EBS_IDW_Lepidopsetta_sp_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1992.tif
-EBS_IDW_Lepidopsetta_sp_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1993.tif
-EBS_IDW_Lepidopsetta_sp_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1994.tif
-EBS_IDW_Lepidopsetta_sp_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1995.tif
-EBS_IDW_Lepidopsetta_sp_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1996.tif
-EBS_IDW_Lepidopsetta_sp_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1997.tif
-EBS_IDW_Lepidopsetta_sp_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1998.tif
-EBS_IDW_Lepidopsetta_sp_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1999.tif
-EBS_IDW_Lepidopsetta_sp_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2000.tif
-EBS_IDW_Lepidopsetta_sp_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2001.tif
-EBS_IDW_Lepidopsetta_sp_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2002.tif
-EBS_IDW_Lepidopsetta_sp_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2003.tif
-EBS_IDW_Lepidopsetta_sp_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2004.tif
-EBS_IDW_Lepidopsetta_sp_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2005.tif
-EBS_IDW_Lepidopsetta_sp_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2006.tif
-EBS_IDW_Lepidopsetta_sp_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2007.tif
-EBS_IDW_Lepidopsetta_sp_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2008.tif
-EBS_IDW_Lepidopsetta_sp_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2009.tif
-EBS_IDW_Lepidopsetta_sp_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2010.tif
-EBS_IDW_Lepidopsetta_sp_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2011.tif
-EBS_IDW_Lepidopsetta_sp_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2012.tif
-EBS_IDW_Lepidopsetta_sp_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2013.tif
-EBS_IDW_Lepidopsetta_sp_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2014.tif
-EBS_IDW_Lepidopsetta_sp_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2015.tif
-EBS_IDW_Lepidopsetta_sp_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2016.tif
-EBS_IDW_Lepidopsetta_sp_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2017.tif
-EBS_IDW_Lepidopsetta_sp_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2018.tif
-EBS_IDW_Lepidopsetta_sp_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2019.tif
-EBS_IDW_Lepidopsetta_sp_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2021.tif
-EBS_IDW_Lepidopsetta_sp_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2022.tif
-EBS_IDW_Leptasterias_arctica_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1985.tif
-EBS_IDW_Leptasterias_arctica_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1987.tif
-EBS_IDW_Leptasterias_arctica_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1988.tif
-EBS_IDW_Leptasterias_arctica_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1989.tif
-EBS_IDW_Leptasterias_arctica_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1990.tif
-EBS_IDW_Leptasterias_arctica_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1991.tif
-EBS_IDW_Leptasterias_arctica_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1992.tif
-EBS_IDW_Leptasterias_arctica_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1993.tif
-EBS_IDW_Leptasterias_arctica_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1994.tif
-EBS_IDW_Leptasterias_arctica_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1995.tif
-EBS_IDW_Leptasterias_arctica_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1996.tif
-EBS_IDW_Leptasterias_arctica_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1997.tif
-EBS_IDW_Leptasterias_arctica_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1998.tif
-EBS_IDW_Leptasterias_arctica_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1999.tif
-EBS_IDW_Leptasterias_arctica_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2000.tif
-EBS_IDW_Leptasterias_arctica_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2001.tif
-EBS_IDW_Leptasterias_arctica_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2002.tif
-EBS_IDW_Leptasterias_arctica_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2003.tif
-EBS_IDW_Leptasterias_arctica_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2004.tif
-EBS_IDW_Leptasterias_arctica_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2005.tif
-EBS_IDW_Leptasterias_arctica_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2006.tif
-EBS_IDW_Leptasterias_arctica_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2007.tif
-EBS_IDW_Leptasterias_arctica_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2008.tif
-EBS_IDW_Leptasterias_arctica_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2009.tif
-EBS_IDW_Leptasterias_arctica_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2010.tif
-EBS_IDW_Leptasterias_arctica_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2011.tif
-EBS_IDW_Leptasterias_arctica_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2012.tif
-EBS_IDW_Leptasterias_arctica_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2013.tif
-EBS_IDW_Leptasterias_arctica_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2014.tif
-EBS_IDW_Leptasterias_arctica_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2015.tif
-EBS_IDW_Leptasterias_arctica_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2016.tif
-EBS_IDW_Leptasterias_arctica_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2017.tif
-EBS_IDW_Leptasterias_arctica_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2018.tif
-EBS_IDW_Leptasterias_arctica_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2019.tif
-EBS_IDW_Leptasterias_arctica_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2021.tif
-EBS_IDW_Leptasterias_arctica_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2022.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_1985.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_1987.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_1988.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_1989.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_1990.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_1991.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_1992.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_1993.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_1994.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_1995.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_1996.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_1997.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_1998.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_1999.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_2000.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_2001.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_2002.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_2003.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_2004.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_2005.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_2006.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_2007.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_2008.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_2009.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_2010.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_2011.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_2012.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_2013.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_2014.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_2015.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_2016.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_2017.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_2018.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_2019.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_2021.tif
-EBS_IDW_Leptasterias_Hexasterias_polaris_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Leptasterias Hexasterias polaris\EBS_IDW_Leptasterias_Hexasterias_polaris_2022.tif
-EBS_IDW_Lethasterias_nanimensis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1985.tif
-EBS_IDW_Lethasterias_nanimensis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1987.tif
-EBS_IDW_Lethasterias_nanimensis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1988.tif
-EBS_IDW_Lethasterias_nanimensis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1989.tif
-EBS_IDW_Lethasterias_nanimensis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1990.tif
-EBS_IDW_Lethasterias_nanimensis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1991.tif
-EBS_IDW_Lethasterias_nanimensis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1992.tif
-EBS_IDW_Lethasterias_nanimensis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1993.tif
-EBS_IDW_Lethasterias_nanimensis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1994.tif
-EBS_IDW_Lethasterias_nanimensis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1995.tif
-EBS_IDW_Lethasterias_nanimensis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1996.tif
-EBS_IDW_Lethasterias_nanimensis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1997.tif
-EBS_IDW_Lethasterias_nanimensis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1998.tif
-EBS_IDW_Lethasterias_nanimensis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1999.tif
-EBS_IDW_Lethasterias_nanimensis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2000.tif
-EBS_IDW_Lethasterias_nanimensis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2001.tif
-EBS_IDW_Lethasterias_nanimensis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2002.tif
-EBS_IDW_Lethasterias_nanimensis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2003.tif
-EBS_IDW_Lethasterias_nanimensis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2004.tif
-EBS_IDW_Lethasterias_nanimensis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2005.tif
-EBS_IDW_Lethasterias_nanimensis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2006.tif
-EBS_IDW_Lethasterias_nanimensis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2007.tif
-EBS_IDW_Lethasterias_nanimensis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:05:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2008.tif
-EBS_IDW_Lethasterias_nanimensis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2009.tif
-EBS_IDW_Lethasterias_nanimensis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2010.tif
-EBS_IDW_Lethasterias_nanimensis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2011.tif
-EBS_IDW_Lethasterias_nanimensis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2012.tif
-EBS_IDW_Lethasterias_nanimensis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2013.tif
-EBS_IDW_Lethasterias_nanimensis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2014.tif
-EBS_IDW_Lethasterias_nanimensis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2015.tif
-EBS_IDW_Lethasterias_nanimensis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2016.tif
-EBS_IDW_Lethasterias_nanimensis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2017.tif
-EBS_IDW_Lethasterias_nanimensis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2018.tif
-EBS_IDW_Lethasterias_nanimensis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2019.tif
-EBS_IDW_Lethasterias_nanimensis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2021.tif
-EBS_IDW_Lethasterias_nanimensis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2022.tif
-EBS_IDW_Limanda_aspera_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1985.tif
-EBS_IDW_Limanda_aspera_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1987.tif
-EBS_IDW_Limanda_aspera_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1988.tif
-EBS_IDW_Limanda_aspera_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1989.tif
-EBS_IDW_Limanda_aspera_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1990.tif
-EBS_IDW_Limanda_aspera_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1991.tif
-EBS_IDW_Limanda_aspera_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1992.tif
-EBS_IDW_Limanda_aspera_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1993.tif
-EBS_IDW_Limanda_aspera_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1994.tif
-EBS_IDW_Limanda_aspera_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1995.tif
-EBS_IDW_Limanda_aspera_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1996.tif
-EBS_IDW_Limanda_aspera_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1997.tif
-EBS_IDW_Limanda_aspera_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1998.tif
-EBS_IDW_Limanda_aspera_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1999.tif
-EBS_IDW_Limanda_aspera_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2000.tif
-EBS_IDW_Limanda_aspera_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2001.tif
-EBS_IDW_Limanda_aspera_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2002.tif
-EBS_IDW_Limanda_aspera_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2003.tif
-EBS_IDW_Limanda_aspera_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2004.tif
-EBS_IDW_Limanda_aspera_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2005.tif
-EBS_IDW_Limanda_aspera_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2006.tif
-EBS_IDW_Limanda_aspera_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2007.tif
-EBS_IDW_Limanda_aspera_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2008.tif
-EBS_IDW_Limanda_aspera_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2009.tif
-EBS_IDW_Limanda_aspera_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2010.tif
-EBS_IDW_Limanda_aspera_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2011.tif
-EBS_IDW_Limanda_aspera_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2012.tif
-EBS_IDW_Limanda_aspera_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2013.tif
-EBS_IDW_Limanda_aspera_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2014.tif
-EBS_IDW_Limanda_aspera_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2015.tif
-EBS_IDW_Limanda_aspera_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2016.tif
-EBS_IDW_Limanda_aspera_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2017.tif
-EBS_IDW_Limanda_aspera_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2018.tif
-EBS_IDW_Limanda_aspera_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2019.tif
-EBS_IDW_Limanda_aspera_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2021.tif
-EBS_IDW_Limanda_aspera_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2022.tif
-EBS_IDW_Limanda_proboscidea_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_1985.tif
-EBS_IDW_Limanda_proboscidea_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_1987.tif
-EBS_IDW_Limanda_proboscidea_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_1988.tif
-EBS_IDW_Limanda_proboscidea_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_1989.tif
-EBS_IDW_Limanda_proboscidea_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_1990.tif
-EBS_IDW_Limanda_proboscidea_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_1991.tif
-EBS_IDW_Limanda_proboscidea_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_1992.tif
-EBS_IDW_Limanda_proboscidea_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_1993.tif
-EBS_IDW_Limanda_proboscidea_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_1994.tif
-EBS_IDW_Limanda_proboscidea_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_1995.tif
-EBS_IDW_Limanda_proboscidea_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_1996.tif
-EBS_IDW_Limanda_proboscidea_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_1997.tif
-EBS_IDW_Limanda_proboscidea_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_1998.tif
-EBS_IDW_Limanda_proboscidea_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_1999.tif
-EBS_IDW_Limanda_proboscidea_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_2000.tif
-EBS_IDW_Limanda_proboscidea_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_2001.tif
-EBS_IDW_Limanda_proboscidea_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_2002.tif
-EBS_IDW_Limanda_proboscidea_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_2003.tif
-EBS_IDW_Limanda_proboscidea_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_2004.tif
-EBS_IDW_Limanda_proboscidea_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_2005.tif
-EBS_IDW_Limanda_proboscidea_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_2006.tif
-EBS_IDW_Limanda_proboscidea_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_2007.tif
-EBS_IDW_Limanda_proboscidea_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_2008.tif
-EBS_IDW_Limanda_proboscidea_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_2009.tif
-EBS_IDW_Limanda_proboscidea_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_2010.tif
-EBS_IDW_Limanda_proboscidea_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_2011.tif
-EBS_IDW_Limanda_proboscidea_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_2012.tif
-EBS_IDW_Limanda_proboscidea_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_2013.tif
-EBS_IDW_Limanda_proboscidea_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_2014.tif
-EBS_IDW_Limanda_proboscidea_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_2015.tif
-EBS_IDW_Limanda_proboscidea_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_2016.tif
-EBS_IDW_Limanda_proboscidea_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_2017.tif
-EBS_IDW_Limanda_proboscidea_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_2018.tif
-EBS_IDW_Limanda_proboscidea_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_2019.tif
-EBS_IDW_Limanda_proboscidea_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_2021.tif
-EBS_IDW_Limanda_proboscidea_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Limanda proboscidea\EBS_IDW_Limanda_proboscidea_2022.tif
-EBS_IDW_Lycodes_brevipes_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1985.tif
-EBS_IDW_Lycodes_brevipes_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1987.tif
-EBS_IDW_Lycodes_brevipes_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1988.tif
-EBS_IDW_Lycodes_brevipes_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1989.tif
-EBS_IDW_Lycodes_brevipes_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1990.tif
-EBS_IDW_Lycodes_brevipes_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1991.tif
-EBS_IDW_Lycodes_brevipes_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1992.tif
-EBS_IDW_Lycodes_brevipes_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1993.tif
-EBS_IDW_Lycodes_brevipes_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1994.tif
-EBS_IDW_Lycodes_brevipes_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1995.tif
-EBS_IDW_Lycodes_brevipes_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1996.tif
-EBS_IDW_Lycodes_brevipes_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1997.tif
-EBS_IDW_Lycodes_brevipes_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1998.tif
-EBS_IDW_Lycodes_brevipes_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1999.tif
-EBS_IDW_Lycodes_brevipes_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2000.tif
-EBS_IDW_Lycodes_brevipes_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2001.tif
-EBS_IDW_Lycodes_brevipes_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2002.tif
-EBS_IDW_Lycodes_brevipes_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2003.tif
-EBS_IDW_Lycodes_brevipes_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2004.tif
-EBS_IDW_Lycodes_brevipes_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2005.tif
-EBS_IDW_Lycodes_brevipes_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2006.tif
-EBS_IDW_Lycodes_brevipes_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2007.tif
-EBS_IDW_Lycodes_brevipes_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2008.tif
-EBS_IDW_Lycodes_brevipes_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2009.tif
-EBS_IDW_Lycodes_brevipes_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2010.tif
-EBS_IDW_Lycodes_brevipes_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2011.tif
-EBS_IDW_Lycodes_brevipes_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2012.tif
-EBS_IDW_Lycodes_brevipes_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2013.tif
-EBS_IDW_Lycodes_brevipes_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2014.tif
-EBS_IDW_Lycodes_brevipes_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2015.tif
-EBS_IDW_Lycodes_brevipes_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2016.tif
-EBS_IDW_Lycodes_brevipes_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2017.tif
-EBS_IDW_Lycodes_brevipes_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2018.tif
-EBS_IDW_Lycodes_brevipes_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2019.tif
-EBS_IDW_Lycodes_brevipes_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2021.tif
-EBS_IDW_Lycodes_brevipes_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2022.tif
-EBS_IDW_Lycodes_palearis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1985.tif
-EBS_IDW_Lycodes_palearis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1987.tif
-EBS_IDW_Lycodes_palearis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1988.tif
-EBS_IDW_Lycodes_palearis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1989.tif
-EBS_IDW_Lycodes_palearis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1990.tif
-EBS_IDW_Lycodes_palearis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1991.tif
-EBS_IDW_Lycodes_palearis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1992.tif
-EBS_IDW_Lycodes_palearis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1993.tif
-EBS_IDW_Lycodes_palearis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1994.tif
-EBS_IDW_Lycodes_palearis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1995.tif
-EBS_IDW_Lycodes_palearis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1996.tif
-EBS_IDW_Lycodes_palearis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1997.tif
-EBS_IDW_Lycodes_palearis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1998.tif
-EBS_IDW_Lycodes_palearis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1999.tif
-EBS_IDW_Lycodes_palearis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2000.tif
-EBS_IDW_Lycodes_palearis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2001.tif
-EBS_IDW_Lycodes_palearis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2002.tif
-EBS_IDW_Lycodes_palearis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2003.tif
-EBS_IDW_Lycodes_palearis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2004.tif
-EBS_IDW_Lycodes_palearis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2005.tif
-EBS_IDW_Lycodes_palearis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2006.tif
-EBS_IDW_Lycodes_palearis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2007.tif
-EBS_IDW_Lycodes_palearis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2008.tif
-EBS_IDW_Lycodes_palearis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2009.tif
-EBS_IDW_Lycodes_palearis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2010.tif
-EBS_IDW_Lycodes_palearis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2011.tif
-EBS_IDW_Lycodes_palearis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2012.tif
-EBS_IDW_Lycodes_palearis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2013.tif
-EBS_IDW_Lycodes_palearis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2014.tif
-EBS_IDW_Lycodes_palearis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2015.tif
-EBS_IDW_Lycodes_palearis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2016.tif
-EBS_IDW_Lycodes_palearis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2017.tif
-EBS_IDW_Lycodes_palearis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2018.tif
-EBS_IDW_Lycodes_palearis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2019.tif
-EBS_IDW_Lycodes_palearis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2021.tif
-EBS_IDW_Lycodes_palearis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2022.tif
-EBS_IDW_Lycodes_raridens_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_1985.tif
-EBS_IDW_Lycodes_raridens_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_1987.tif
-EBS_IDW_Lycodes_raridens_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_1988.tif
-EBS_IDW_Lycodes_raridens_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_1989.tif
-EBS_IDW_Lycodes_raridens_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_1990.tif
-EBS_IDW_Lycodes_raridens_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_1991.tif
-EBS_IDW_Lycodes_raridens_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_1992.tif
-EBS_IDW_Lycodes_raridens_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_1993.tif
-EBS_IDW_Lycodes_raridens_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_1994.tif
-EBS_IDW_Lycodes_raridens_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_1995.tif
-EBS_IDW_Lycodes_raridens_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_1996.tif
-EBS_IDW_Lycodes_raridens_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_1997.tif
-EBS_IDW_Lycodes_raridens_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_1998.tif
-EBS_IDW_Lycodes_raridens_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_1999.tif
-EBS_IDW_Lycodes_raridens_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_2000.tif
-EBS_IDW_Lycodes_raridens_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_2001.tif
-EBS_IDW_Lycodes_raridens_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_2002.tif
-EBS_IDW_Lycodes_raridens_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_2003.tif
-EBS_IDW_Lycodes_raridens_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_2004.tif
-EBS_IDW_Lycodes_raridens_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_2005.tif
-EBS_IDW_Lycodes_raridens_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_2006.tif
-EBS_IDW_Lycodes_raridens_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_2007.tif
-EBS_IDW_Lycodes_raridens_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_2008.tif
-EBS_IDW_Lycodes_raridens_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_2009.tif
-EBS_IDW_Lycodes_raridens_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_2010.tif
-EBS_IDW_Lycodes_raridens_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_2011.tif
-EBS_IDW_Lycodes_raridens_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_2012.tif
-EBS_IDW_Lycodes_raridens_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_2013.tif
-EBS_IDW_Lycodes_raridens_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_2014.tif
-EBS_IDW_Lycodes_raridens_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_2015.tif
-EBS_IDW_Lycodes_raridens_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_2016.tif
-EBS_IDW_Lycodes_raridens_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_2017.tif
-EBS_IDW_Lycodes_raridens_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_2018.tif
-EBS_IDW_Lycodes_raridens_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_2019.tif
-EBS_IDW_Lycodes_raridens_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_2021.tif
-EBS_IDW_Lycodes_raridens_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Lycodes raridens\EBS_IDW_Lycodes_raridens_2022.tif
-EBS_IDW_Mactromeris_polynyma_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_1985.tif
-EBS_IDW_Mactromeris_polynyma_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_1987.tif
-EBS_IDW_Mactromeris_polynyma_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_1988.tif
-EBS_IDW_Mactromeris_polynyma_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_1989.tif
-EBS_IDW_Mactromeris_polynyma_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_1990.tif
-EBS_IDW_Mactromeris_polynyma_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_1991.tif
-EBS_IDW_Mactromeris_polynyma_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_1992.tif
-EBS_IDW_Mactromeris_polynyma_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_1993.tif
-EBS_IDW_Mactromeris_polynyma_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_1994.tif
-EBS_IDW_Mactromeris_polynyma_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_1995.tif
-EBS_IDW_Mactromeris_polynyma_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_1996.tif
-EBS_IDW_Mactromeris_polynyma_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_1997.tif
-EBS_IDW_Mactromeris_polynyma_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_1998.tif
-EBS_IDW_Mactromeris_polynyma_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_1999.tif
-EBS_IDW_Mactromeris_polynyma_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_2000.tif
-EBS_IDW_Mactromeris_polynyma_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_2001.tif
-EBS_IDW_Mactromeris_polynyma_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_2002.tif
-EBS_IDW_Mactromeris_polynyma_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_2003.tif
-EBS_IDW_Mactromeris_polynyma_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_2004.tif
-EBS_IDW_Mactromeris_polynyma_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_2005.tif
-EBS_IDW_Mactromeris_polynyma_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_2006.tif
-EBS_IDW_Mactromeris_polynyma_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_2007.tif
-EBS_IDW_Mactromeris_polynyma_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_2008.tif
-EBS_IDW_Mactromeris_polynyma_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:06:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_2009.tif
-EBS_IDW_Mactromeris_polynyma_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_2010.tif
-EBS_IDW_Mactromeris_polynyma_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_2011.tif
-EBS_IDW_Mactromeris_polynyma_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_2012.tif
-EBS_IDW_Mactromeris_polynyma_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_2013.tif
-EBS_IDW_Mactromeris_polynyma_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_2014.tif
-EBS_IDW_Mactromeris_polynyma_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_2015.tif
-EBS_IDW_Mactromeris_polynyma_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_2016.tif
-EBS_IDW_Mactromeris_polynyma_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_2017.tif
-EBS_IDW_Mactromeris_polynyma_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_2018.tif
-EBS_IDW_Mactromeris_polynyma_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_2019.tif
-EBS_IDW_Mactromeris_polynyma_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_2021.tif
-EBS_IDW_Mactromeris_polynyma_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mactromeris polynyma\EBS_IDW_Mactromeris_polynyma_2022.tif
-EBS_IDW_Mallotus_villosus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1985.tif
-EBS_IDW_Mallotus_villosus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1987.tif
-EBS_IDW_Mallotus_villosus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1988.tif
-EBS_IDW_Mallotus_villosus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1989.tif
-EBS_IDW_Mallotus_villosus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1990.tif
-EBS_IDW_Mallotus_villosus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1991.tif
-EBS_IDW_Mallotus_villosus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1992.tif
-EBS_IDW_Mallotus_villosus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1993.tif
-EBS_IDW_Mallotus_villosus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1994.tif
-EBS_IDW_Mallotus_villosus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1995.tif
-EBS_IDW_Mallotus_villosus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1996.tif
-EBS_IDW_Mallotus_villosus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1997.tif
-EBS_IDW_Mallotus_villosus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1998.tif
-EBS_IDW_Mallotus_villosus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1999.tif
-EBS_IDW_Mallotus_villosus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2000.tif
-EBS_IDW_Mallotus_villosus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2001.tif
-EBS_IDW_Mallotus_villosus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2002.tif
-EBS_IDW_Mallotus_villosus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2003.tif
-EBS_IDW_Mallotus_villosus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2004.tif
-EBS_IDW_Mallotus_villosus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2005.tif
-EBS_IDW_Mallotus_villosus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2006.tif
-EBS_IDW_Mallotus_villosus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2007.tif
-EBS_IDW_Mallotus_villosus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2008.tif
-EBS_IDW_Mallotus_villosus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2009.tif
-EBS_IDW_Mallotus_villosus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2010.tif
-EBS_IDW_Mallotus_villosus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2011.tif
-EBS_IDW_Mallotus_villosus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2012.tif
-EBS_IDW_Mallotus_villosus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2013.tif
-EBS_IDW_Mallotus_villosus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2014.tif
-EBS_IDW_Mallotus_villosus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2015.tif
-EBS_IDW_Mallotus_villosus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2016.tif
-EBS_IDW_Mallotus_villosus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2017.tif
-EBS_IDW_Mallotus_villosus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2018.tif
-EBS_IDW_Mallotus_villosus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2019.tif
-EBS_IDW_Mallotus_villosus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2021.tif
-EBS_IDW_Mallotus_villosus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2022.tif
-EBS_IDW_Myoxocephalus_jaok_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1985.tif
-EBS_IDW_Myoxocephalus_jaok_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1987.tif
-EBS_IDW_Myoxocephalus_jaok_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1988.tif
-EBS_IDW_Myoxocephalus_jaok_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1989.tif
-EBS_IDW_Myoxocephalus_jaok_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1990.tif
-EBS_IDW_Myoxocephalus_jaok_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1991.tif
-EBS_IDW_Myoxocephalus_jaok_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1992.tif
-EBS_IDW_Myoxocephalus_jaok_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1993.tif
-EBS_IDW_Myoxocephalus_jaok_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1994.tif
-EBS_IDW_Myoxocephalus_jaok_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1995.tif
-EBS_IDW_Myoxocephalus_jaok_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1996.tif
-EBS_IDW_Myoxocephalus_jaok_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1997.tif
-EBS_IDW_Myoxocephalus_jaok_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1998.tif
-EBS_IDW_Myoxocephalus_jaok_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1999.tif
-EBS_IDW_Myoxocephalus_jaok_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2000.tif
-EBS_IDW_Myoxocephalus_jaok_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2001.tif
-EBS_IDW_Myoxocephalus_jaok_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2002.tif
-EBS_IDW_Myoxocephalus_jaok_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2003.tif
-EBS_IDW_Myoxocephalus_jaok_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2004.tif
-EBS_IDW_Myoxocephalus_jaok_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2005.tif
-EBS_IDW_Myoxocephalus_jaok_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2006.tif
-EBS_IDW_Myoxocephalus_jaok_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2007.tif
-EBS_IDW_Myoxocephalus_jaok_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2008.tif
-EBS_IDW_Myoxocephalus_jaok_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2009.tif
-EBS_IDW_Myoxocephalus_jaok_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2010.tif
-EBS_IDW_Myoxocephalus_jaok_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2011.tif
-EBS_IDW_Myoxocephalus_jaok_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2012.tif
-EBS_IDW_Myoxocephalus_jaok_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2013.tif
-EBS_IDW_Myoxocephalus_jaok_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2014.tif
-EBS_IDW_Myoxocephalus_jaok_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2015.tif
-EBS_IDW_Myoxocephalus_jaok_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2016.tif
-EBS_IDW_Myoxocephalus_jaok_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2017.tif
-EBS_IDW_Myoxocephalus_jaok_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2018.tif
-EBS_IDW_Myoxocephalus_jaok_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2019.tif
-EBS_IDW_Myoxocephalus_jaok_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2021.tif
-EBS_IDW_Myoxocephalus_jaok_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2022.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1985.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1987.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1988.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1989.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1990.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1991.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1992.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1993.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1994.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1995.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1996.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1997.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1998.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1999.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2000.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2001.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2002.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2003.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2004.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2005.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2006.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2007.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2008.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2009.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2010.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2011.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2012.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2013.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2014.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2015.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2016.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2017.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2018.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2019.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2021.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2022.tif
-EBS_IDW_Neptunea_borealis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_1985.tif
-EBS_IDW_Neptunea_borealis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_1987.tif
-EBS_IDW_Neptunea_borealis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_1988.tif
-EBS_IDW_Neptunea_borealis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_1989.tif
-EBS_IDW_Neptunea_borealis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_1990.tif
-EBS_IDW_Neptunea_borealis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_1991.tif
-EBS_IDW_Neptunea_borealis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_1992.tif
-EBS_IDW_Neptunea_borealis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_1993.tif
-EBS_IDW_Neptunea_borealis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_1994.tif
-EBS_IDW_Neptunea_borealis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_1995.tif
-EBS_IDW_Neptunea_borealis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_1996.tif
-EBS_IDW_Neptunea_borealis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_1997.tif
-EBS_IDW_Neptunea_borealis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_1998.tif
-EBS_IDW_Neptunea_borealis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_1999.tif
-EBS_IDW_Neptunea_borealis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_2000.tif
-EBS_IDW_Neptunea_borealis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_2001.tif
-EBS_IDW_Neptunea_borealis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_2002.tif
-EBS_IDW_Neptunea_borealis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_2003.tif
-EBS_IDW_Neptunea_borealis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_2004.tif
-EBS_IDW_Neptunea_borealis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_2005.tif
-EBS_IDW_Neptunea_borealis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_2006.tif
-EBS_IDW_Neptunea_borealis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_2007.tif
-EBS_IDW_Neptunea_borealis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_2008.tif
-EBS_IDW_Neptunea_borealis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_2009.tif
-EBS_IDW_Neptunea_borealis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_2010.tif
-EBS_IDW_Neptunea_borealis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_2011.tif
-EBS_IDW_Neptunea_borealis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_2012.tif
-EBS_IDW_Neptunea_borealis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_2013.tif
-EBS_IDW_Neptunea_borealis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_2014.tif
-EBS_IDW_Neptunea_borealis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_2015.tif
-EBS_IDW_Neptunea_borealis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_2016.tif
-EBS_IDW_Neptunea_borealis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_2017.tif
-EBS_IDW_Neptunea_borealis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_2018.tif
-EBS_IDW_Neptunea_borealis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_2019.tif
-EBS_IDW_Neptunea_borealis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_2021.tif
-EBS_IDW_Neptunea_borealis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea borealis\EBS_IDW_Neptunea_borealis_2022.tif
-EBS_IDW_Neptunea_heros_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_1985.tif
-EBS_IDW_Neptunea_heros_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_1987.tif
-EBS_IDW_Neptunea_heros_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_1988.tif
-EBS_IDW_Neptunea_heros_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_1989.tif
-EBS_IDW_Neptunea_heros_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_1990.tif
-EBS_IDW_Neptunea_heros_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_1991.tif
-EBS_IDW_Neptunea_heros_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_1992.tif
-EBS_IDW_Neptunea_heros_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_1993.tif
-EBS_IDW_Neptunea_heros_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_1994.tif
-EBS_IDW_Neptunea_heros_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_1995.tif
-EBS_IDW_Neptunea_heros_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_1996.tif
-EBS_IDW_Neptunea_heros_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_1997.tif
-EBS_IDW_Neptunea_heros_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_1998.tif
-EBS_IDW_Neptunea_heros_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_1999.tif
-EBS_IDW_Neptunea_heros_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_2000.tif
-EBS_IDW_Neptunea_heros_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_2001.tif
-EBS_IDW_Neptunea_heros_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_2002.tif
-EBS_IDW_Neptunea_heros_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_2003.tif
-EBS_IDW_Neptunea_heros_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_2004.tif
-EBS_IDW_Neptunea_heros_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_2005.tif
-EBS_IDW_Neptunea_heros_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_2006.tif
-EBS_IDW_Neptunea_heros_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_2007.tif
-EBS_IDW_Neptunea_heros_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_2008.tif
-EBS_IDW_Neptunea_heros_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_2009.tif
-EBS_IDW_Neptunea_heros_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_2010.tif
-EBS_IDW_Neptunea_heros_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_2011.tif
-EBS_IDW_Neptunea_heros_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_2012.tif
-EBS_IDW_Neptunea_heros_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_2013.tif
-EBS_IDW_Neptunea_heros_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_2014.tif
-EBS_IDW_Neptunea_heros_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_2015.tif
-EBS_IDW_Neptunea_heros_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_2016.tif
-EBS_IDW_Neptunea_heros_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_2017.tif
-EBS_IDW_Neptunea_heros_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_2018.tif
-EBS_IDW_Neptunea_heros_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_2019.tif
-EBS_IDW_Neptunea_heros_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_2021.tif
-EBS_IDW_Neptunea_heros_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea heros\EBS_IDW_Neptunea_heros_2022.tif
-EBS_IDW_Neptunea_lyrata_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_1985.tif
-EBS_IDW_Neptunea_lyrata_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_1987.tif
-EBS_IDW_Neptunea_lyrata_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_1988.tif
-EBS_IDW_Neptunea_lyrata_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_1989.tif
-EBS_IDW_Neptunea_lyrata_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:07:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_1990.tif
-EBS_IDW_Neptunea_lyrata_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_1991.tif
-EBS_IDW_Neptunea_lyrata_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_1992.tif
-EBS_IDW_Neptunea_lyrata_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_1993.tif
-EBS_IDW_Neptunea_lyrata_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_1994.tif
-EBS_IDW_Neptunea_lyrata_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_1995.tif
-EBS_IDW_Neptunea_lyrata_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_1996.tif
-EBS_IDW_Neptunea_lyrata_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_1997.tif
-EBS_IDW_Neptunea_lyrata_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_1998.tif
-EBS_IDW_Neptunea_lyrata_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_1999.tif
-EBS_IDW_Neptunea_lyrata_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_2000.tif
-EBS_IDW_Neptunea_lyrata_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_2001.tif
-EBS_IDW_Neptunea_lyrata_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_2002.tif
-EBS_IDW_Neptunea_lyrata_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_2003.tif
-EBS_IDW_Neptunea_lyrata_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_2004.tif
-EBS_IDW_Neptunea_lyrata_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_2005.tif
-EBS_IDW_Neptunea_lyrata_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_2006.tif
-EBS_IDW_Neptunea_lyrata_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_2007.tif
-EBS_IDW_Neptunea_lyrata_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_2008.tif
-EBS_IDW_Neptunea_lyrata_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_2009.tif
-EBS_IDW_Neptunea_lyrata_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_2010.tif
-EBS_IDW_Neptunea_lyrata_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_2011.tif
-EBS_IDW_Neptunea_lyrata_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_2012.tif
-EBS_IDW_Neptunea_lyrata_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_2013.tif
-EBS_IDW_Neptunea_lyrata_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_2014.tif
-EBS_IDW_Neptunea_lyrata_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_2015.tif
-EBS_IDW_Neptunea_lyrata_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_2016.tif
-EBS_IDW_Neptunea_lyrata_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_2017.tif
-EBS_IDW_Neptunea_lyrata_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_2018.tif
-EBS_IDW_Neptunea_lyrata_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_2019.tif
-EBS_IDW_Neptunea_lyrata_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_2021.tif
-EBS_IDW_Neptunea_lyrata_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea lyrata\EBS_IDW_Neptunea_lyrata_2022.tif
-EBS_IDW_Neptunea_pribiloffensis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_1985.tif
-EBS_IDW_Neptunea_pribiloffensis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_1987.tif
-EBS_IDW_Neptunea_pribiloffensis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_1988.tif
-EBS_IDW_Neptunea_pribiloffensis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_1989.tif
-EBS_IDW_Neptunea_pribiloffensis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_1990.tif
-EBS_IDW_Neptunea_pribiloffensis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_1991.tif
-EBS_IDW_Neptunea_pribiloffensis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_1992.tif
-EBS_IDW_Neptunea_pribiloffensis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_1993.tif
-EBS_IDW_Neptunea_pribiloffensis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_1994.tif
-EBS_IDW_Neptunea_pribiloffensis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_1995.tif
-EBS_IDW_Neptunea_pribiloffensis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_1996.tif
-EBS_IDW_Neptunea_pribiloffensis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_1997.tif
-EBS_IDW_Neptunea_pribiloffensis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_1998.tif
-EBS_IDW_Neptunea_pribiloffensis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_1999.tif
-EBS_IDW_Neptunea_pribiloffensis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_2000.tif
-EBS_IDW_Neptunea_pribiloffensis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_2001.tif
-EBS_IDW_Neptunea_pribiloffensis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_2002.tif
-EBS_IDW_Neptunea_pribiloffensis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_2003.tif
-EBS_IDW_Neptunea_pribiloffensis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_2004.tif
-EBS_IDW_Neptunea_pribiloffensis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_2005.tif
-EBS_IDW_Neptunea_pribiloffensis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_2006.tif
-EBS_IDW_Neptunea_pribiloffensis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_2007.tif
-EBS_IDW_Neptunea_pribiloffensis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_2008.tif
-EBS_IDW_Neptunea_pribiloffensis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_2009.tif
-EBS_IDW_Neptunea_pribiloffensis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_2010.tif
-EBS_IDW_Neptunea_pribiloffensis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_2011.tif
-EBS_IDW_Neptunea_pribiloffensis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_2012.tif
-EBS_IDW_Neptunea_pribiloffensis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_2013.tif
-EBS_IDW_Neptunea_pribiloffensis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_2014.tif
-EBS_IDW_Neptunea_pribiloffensis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_2015.tif
-EBS_IDW_Neptunea_pribiloffensis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_2016.tif
-EBS_IDW_Neptunea_pribiloffensis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_2017.tif
-EBS_IDW_Neptunea_pribiloffensis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_2018.tif
-EBS_IDW_Neptunea_pribiloffensis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_2019.tif
-EBS_IDW_Neptunea_pribiloffensis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_2021.tif
-EBS_IDW_Neptunea_pribiloffensis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea pribiloffensis\EBS_IDW_Neptunea_pribiloffensis_2022.tif
-EBS_IDW_Neptunea_ventricosa_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_1985.tif
-EBS_IDW_Neptunea_ventricosa_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_1987.tif
-EBS_IDW_Neptunea_ventricosa_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_1988.tif
-EBS_IDW_Neptunea_ventricosa_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_1989.tif
-EBS_IDW_Neptunea_ventricosa_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_1990.tif
-EBS_IDW_Neptunea_ventricosa_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_1991.tif
-EBS_IDW_Neptunea_ventricosa_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_1992.tif
-EBS_IDW_Neptunea_ventricosa_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_1993.tif
-EBS_IDW_Neptunea_ventricosa_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_1994.tif
-EBS_IDW_Neptunea_ventricosa_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_1995.tif
-EBS_IDW_Neptunea_ventricosa_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_1996.tif
-EBS_IDW_Neptunea_ventricosa_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_1997.tif
-EBS_IDW_Neptunea_ventricosa_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_1998.tif
-EBS_IDW_Neptunea_ventricosa_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_1999.tif
-EBS_IDW_Neptunea_ventricosa_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_2000.tif
-EBS_IDW_Neptunea_ventricosa_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_2001.tif
-EBS_IDW_Neptunea_ventricosa_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_2002.tif
-EBS_IDW_Neptunea_ventricosa_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_2003.tif
-EBS_IDW_Neptunea_ventricosa_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_2004.tif
-EBS_IDW_Neptunea_ventricosa_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_2005.tif
-EBS_IDW_Neptunea_ventricosa_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_2006.tif
-EBS_IDW_Neptunea_ventricosa_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_2007.tif
-EBS_IDW_Neptunea_ventricosa_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_2008.tif
-EBS_IDW_Neptunea_ventricosa_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_2009.tif
-EBS_IDW_Neptunea_ventricosa_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_2010.tif
-EBS_IDW_Neptunea_ventricosa_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_2011.tif
-EBS_IDW_Neptunea_ventricosa_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_2012.tif
-EBS_IDW_Neptunea_ventricosa_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_2013.tif
-EBS_IDW_Neptunea_ventricosa_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_2014.tif
-EBS_IDW_Neptunea_ventricosa_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_2015.tif
-EBS_IDW_Neptunea_ventricosa_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_2016.tif
-EBS_IDW_Neptunea_ventricosa_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_2017.tif
-EBS_IDW_Neptunea_ventricosa_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_2018.tif
-EBS_IDW_Neptunea_ventricosa_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_2019.tif
-EBS_IDW_Neptunea_ventricosa_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_2021.tif
-EBS_IDW_Neptunea_ventricosa_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Neptunea ventricosa\EBS_IDW_Neptunea_ventricosa_2022.tif
-EBS_IDW_Occella_dodecaedron_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1985.tif
-EBS_IDW_Occella_dodecaedron_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1987.tif
-EBS_IDW_Occella_dodecaedron_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1988.tif
-EBS_IDW_Occella_dodecaedron_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1989.tif
-EBS_IDW_Occella_dodecaedron_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1990.tif
-EBS_IDW_Occella_dodecaedron_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1991.tif
-EBS_IDW_Occella_dodecaedron_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1992.tif
-EBS_IDW_Occella_dodecaedron_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1993.tif
-EBS_IDW_Occella_dodecaedron_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1994.tif
-EBS_IDW_Occella_dodecaedron_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1995.tif
-EBS_IDW_Occella_dodecaedron_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1996.tif
-EBS_IDW_Occella_dodecaedron_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1997.tif
-EBS_IDW_Occella_dodecaedron_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1998.tif
-EBS_IDW_Occella_dodecaedron_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1999.tif
-EBS_IDW_Occella_dodecaedron_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2000.tif
-EBS_IDW_Occella_dodecaedron_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2001.tif
-EBS_IDW_Occella_dodecaedron_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2002.tif
-EBS_IDW_Occella_dodecaedron_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2003.tif
-EBS_IDW_Occella_dodecaedron_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2004.tif
-EBS_IDW_Occella_dodecaedron_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2005.tif
-EBS_IDW_Occella_dodecaedron_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2006.tif
-EBS_IDW_Occella_dodecaedron_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2007.tif
-EBS_IDW_Occella_dodecaedron_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2008.tif
-EBS_IDW_Occella_dodecaedron_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2009.tif
-EBS_IDW_Occella_dodecaedron_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2010.tif
-EBS_IDW_Occella_dodecaedron_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2011.tif
-EBS_IDW_Occella_dodecaedron_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2012.tif
-EBS_IDW_Occella_dodecaedron_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2013.tif
-EBS_IDW_Occella_dodecaedron_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2014.tif
-EBS_IDW_Occella_dodecaedron_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2015.tif
-EBS_IDW_Occella_dodecaedron_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2016.tif
-EBS_IDW_Occella_dodecaedron_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2017.tif
-EBS_IDW_Occella_dodecaedron_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2018.tif
-EBS_IDW_Occella_dodecaedron_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2019.tif
-EBS_IDW_Occella_dodecaedron_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2021.tif
-EBS_IDW_Occella_dodecaedron_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2022.tif
-EBS_IDW_Oregonia_gracilis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1985.tif
-EBS_IDW_Oregonia_gracilis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1987.tif
-EBS_IDW_Oregonia_gracilis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1988.tif
-EBS_IDW_Oregonia_gracilis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1989.tif
-EBS_IDW_Oregonia_gracilis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1990.tif
-EBS_IDW_Oregonia_gracilis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1991.tif
-EBS_IDW_Oregonia_gracilis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1992.tif
-EBS_IDW_Oregonia_gracilis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1993.tif
-EBS_IDW_Oregonia_gracilis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1994.tif
-EBS_IDW_Oregonia_gracilis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1995.tif
-EBS_IDW_Oregonia_gracilis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1996.tif
-EBS_IDW_Oregonia_gracilis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1997.tif
-EBS_IDW_Oregonia_gracilis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1998.tif
-EBS_IDW_Oregonia_gracilis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1999.tif
-EBS_IDW_Oregonia_gracilis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2000.tif
-EBS_IDW_Oregonia_gracilis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2001.tif
-EBS_IDW_Oregonia_gracilis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2002.tif
-EBS_IDW_Oregonia_gracilis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2003.tif
-EBS_IDW_Oregonia_gracilis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2004.tif
-EBS_IDW_Oregonia_gracilis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2005.tif
-EBS_IDW_Oregonia_gracilis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2006.tif
-EBS_IDW_Oregonia_gracilis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2007.tif
-EBS_IDW_Oregonia_gracilis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2008.tif
-EBS_IDW_Oregonia_gracilis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2009.tif
-EBS_IDW_Oregonia_gracilis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2010.tif
-EBS_IDW_Oregonia_gracilis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2011.tif
-EBS_IDW_Oregonia_gracilis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2012.tif
-EBS_IDW_Oregonia_gracilis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2013.tif
-EBS_IDW_Oregonia_gracilis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2014.tif
-EBS_IDW_Oregonia_gracilis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2015.tif
-EBS_IDW_Oregonia_gracilis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2016.tif
-EBS_IDW_Oregonia_gracilis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2017.tif
-EBS_IDW_Oregonia_gracilis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2018.tif
-EBS_IDW_Oregonia_gracilis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2019.tif
-EBS_IDW_Oregonia_gracilis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2021.tif
-EBS_IDW_Oregonia_gracilis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2022.tif
-EBS_IDW_Pagurus_aleuticus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1985.tif
-EBS_IDW_Pagurus_aleuticus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1987.tif
-EBS_IDW_Pagurus_aleuticus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1988.tif
-EBS_IDW_Pagurus_aleuticus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1989.tif
-EBS_IDW_Pagurus_aleuticus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1990.tif
-EBS_IDW_Pagurus_aleuticus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1991.tif
-EBS_IDW_Pagurus_aleuticus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1992.tif
-EBS_IDW_Pagurus_aleuticus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1993.tif
-EBS_IDW_Pagurus_aleuticus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1994.tif
-EBS_IDW_Pagurus_aleuticus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1995.tif
-EBS_IDW_Pagurus_aleuticus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1996.tif
-EBS_IDW_Pagurus_aleuticus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1997.tif
-EBS_IDW_Pagurus_aleuticus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1998.tif
-EBS_IDW_Pagurus_aleuticus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1999.tif
-EBS_IDW_Pagurus_aleuticus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2000.tif
-EBS_IDW_Pagurus_aleuticus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2001.tif
-EBS_IDW_Pagurus_aleuticus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2002.tif
-EBS_IDW_Pagurus_aleuticus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2003.tif
-EBS_IDW_Pagurus_aleuticus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2004.tif
-EBS_IDW_Pagurus_aleuticus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2005.tif
-EBS_IDW_Pagurus_aleuticus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2006.tif
-EBS_IDW_Pagurus_aleuticus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2007.tif
-EBS_IDW_Pagurus_aleuticus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2008.tif
-EBS_IDW_Pagurus_aleuticus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2009.tif
-EBS_IDW_Pagurus_aleuticus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2010.tif
-EBS_IDW_Pagurus_aleuticus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2011.tif
-EBS_IDW_Pagurus_aleuticus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2012.tif
-EBS_IDW_Pagurus_aleuticus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2013.tif
-EBS_IDW_Pagurus_aleuticus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2014.tif
-EBS_IDW_Pagurus_aleuticus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2015.tif
-EBS_IDW_Pagurus_aleuticus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2016.tif
-EBS_IDW_Pagurus_aleuticus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2017.tif
-EBS_IDW_Pagurus_aleuticus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2018.tif
-EBS_IDW_Pagurus_aleuticus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2019.tif
-EBS_IDW_Pagurus_aleuticus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2021.tif
-EBS_IDW_Pagurus_aleuticus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2022.tif
-EBS_IDW_Pagurus_ochotensis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1985.tif
-EBS_IDW_Pagurus_ochotensis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1987.tif
-EBS_IDW_Pagurus_ochotensis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1988.tif
-EBS_IDW_Pagurus_ochotensis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1989.tif
-EBS_IDW_Pagurus_ochotensis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1990.tif
-EBS_IDW_Pagurus_ochotensis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1991.tif
-EBS_IDW_Pagurus_ochotensis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1992.tif
-EBS_IDW_Pagurus_ochotensis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1993.tif
-EBS_IDW_Pagurus_ochotensis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1994.tif
-EBS_IDW_Pagurus_ochotensis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1995.tif
-EBS_IDW_Pagurus_ochotensis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1996.tif
-EBS_IDW_Pagurus_ochotensis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1997.tif
-EBS_IDW_Pagurus_ochotensis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1998.tif
-EBS_IDW_Pagurus_ochotensis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1999.tif
-EBS_IDW_Pagurus_ochotensis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2000.tif
-EBS_IDW_Pagurus_ochotensis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2001.tif
-EBS_IDW_Pagurus_ochotensis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2002.tif
-EBS_IDW_Pagurus_ochotensis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2003.tif
-EBS_IDW_Pagurus_ochotensis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2004.tif
-EBS_IDW_Pagurus_ochotensis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:08:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2005.tif
-EBS_IDW_Pagurus_ochotensis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2006.tif
-EBS_IDW_Pagurus_ochotensis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2007.tif
-EBS_IDW_Pagurus_ochotensis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2008.tif
-EBS_IDW_Pagurus_ochotensis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2009.tif
-EBS_IDW_Pagurus_ochotensis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2010.tif
-EBS_IDW_Pagurus_ochotensis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2011.tif
-EBS_IDW_Pagurus_ochotensis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2012.tif
-EBS_IDW_Pagurus_ochotensis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2013.tif
-EBS_IDW_Pagurus_ochotensis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2014.tif
-EBS_IDW_Pagurus_ochotensis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2015.tif
-EBS_IDW_Pagurus_ochotensis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2016.tif
-EBS_IDW_Pagurus_ochotensis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2017.tif
-EBS_IDW_Pagurus_ochotensis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2018.tif
-EBS_IDW_Pagurus_ochotensis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2019.tif
-EBS_IDW_Pagurus_ochotensis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2021.tif
-EBS_IDW_Pagurus_ochotensis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2022.tif
-EBS_IDW_Pandalus_eous_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_1985.tif
-EBS_IDW_Pandalus_eous_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_1987.tif
-EBS_IDW_Pandalus_eous_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_1988.tif
-EBS_IDW_Pandalus_eous_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_1989.tif
-EBS_IDW_Pandalus_eous_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_1990.tif
-EBS_IDW_Pandalus_eous_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_1991.tif
-EBS_IDW_Pandalus_eous_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_1992.tif
-EBS_IDW_Pandalus_eous_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_1993.tif
-EBS_IDW_Pandalus_eous_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_1994.tif
-EBS_IDW_Pandalus_eous_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_1995.tif
-EBS_IDW_Pandalus_eous_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_1996.tif
-EBS_IDW_Pandalus_eous_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_1997.tif
-EBS_IDW_Pandalus_eous_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_1998.tif
-EBS_IDW_Pandalus_eous_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_1999.tif
-EBS_IDW_Pandalus_eous_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_2000.tif
-EBS_IDW_Pandalus_eous_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_2001.tif
-EBS_IDW_Pandalus_eous_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_2002.tif
-EBS_IDW_Pandalus_eous_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_2003.tif
-EBS_IDW_Pandalus_eous_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_2004.tif
-EBS_IDW_Pandalus_eous_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_2005.tif
-EBS_IDW_Pandalus_eous_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_2006.tif
-EBS_IDW_Pandalus_eous_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_2007.tif
-EBS_IDW_Pandalus_eous_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_2008.tif
-EBS_IDW_Pandalus_eous_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_2009.tif
-EBS_IDW_Pandalus_eous_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_2010.tif
-EBS_IDW_Pandalus_eous_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_2011.tif
-EBS_IDW_Pandalus_eous_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_2012.tif
-EBS_IDW_Pandalus_eous_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_2013.tif
-EBS_IDW_Pandalus_eous_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_2014.tif
-EBS_IDW_Pandalus_eous_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_2015.tif
-EBS_IDW_Pandalus_eous_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_2016.tif
-EBS_IDW_Pandalus_eous_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_2017.tif
-EBS_IDW_Pandalus_eous_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_2018.tif
-EBS_IDW_Pandalus_eous_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_2019.tif
-EBS_IDW_Pandalus_eous_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_2021.tif
-EBS_IDW_Pandalus_eous_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pandalus eous\EBS_IDW_Pandalus_eous_2022.tif
-EBS_IDW_Paralithodes_camtschaticus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1985.tif
-EBS_IDW_Paralithodes_camtschaticus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1987.tif
-EBS_IDW_Paralithodes_camtschaticus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1988.tif
-EBS_IDW_Paralithodes_camtschaticus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1989.tif
-EBS_IDW_Paralithodes_camtschaticus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1990.tif
-EBS_IDW_Paralithodes_camtschaticus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1991.tif
-EBS_IDW_Paralithodes_camtschaticus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1992.tif
-EBS_IDW_Paralithodes_camtschaticus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1993.tif
-EBS_IDW_Paralithodes_camtschaticus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1994.tif
-EBS_IDW_Paralithodes_camtschaticus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1995.tif
-EBS_IDW_Paralithodes_camtschaticus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1996.tif
-EBS_IDW_Paralithodes_camtschaticus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1997.tif
-EBS_IDW_Paralithodes_camtschaticus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1998.tif
-EBS_IDW_Paralithodes_camtschaticus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1999.tif
-EBS_IDW_Paralithodes_camtschaticus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2000.tif
-EBS_IDW_Paralithodes_camtschaticus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2001.tif
-EBS_IDW_Paralithodes_camtschaticus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2002.tif
-EBS_IDW_Paralithodes_camtschaticus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2003.tif
-EBS_IDW_Paralithodes_camtschaticus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2004.tif
-EBS_IDW_Paralithodes_camtschaticus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2005.tif
-EBS_IDW_Paralithodes_camtschaticus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2006.tif
-EBS_IDW_Paralithodes_camtschaticus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2007.tif
-EBS_IDW_Paralithodes_camtschaticus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2008.tif
-EBS_IDW_Paralithodes_camtschaticus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2009.tif
-EBS_IDW_Paralithodes_camtschaticus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2010.tif
-EBS_IDW_Paralithodes_camtschaticus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2011.tif
-EBS_IDW_Paralithodes_camtschaticus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2012.tif
-EBS_IDW_Paralithodes_camtschaticus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2013.tif
-EBS_IDW_Paralithodes_camtschaticus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2014.tif
-EBS_IDW_Paralithodes_camtschaticus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2015.tif
-EBS_IDW_Paralithodes_camtschaticus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2016.tif
-EBS_IDW_Paralithodes_camtschaticus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2017.tif
-EBS_IDW_Paralithodes_camtschaticus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2018.tif
-EBS_IDW_Paralithodes_camtschaticus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2019.tif
-EBS_IDW_Paralithodes_camtschaticus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2021.tif
-EBS_IDW_Paralithodes_camtschaticus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2022.tif
-EBS_IDW_Paralithodes_platypus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1985.tif
-EBS_IDW_Paralithodes_platypus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1987.tif
-EBS_IDW_Paralithodes_platypus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1988.tif
-EBS_IDW_Paralithodes_platypus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1989.tif
-EBS_IDW_Paralithodes_platypus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1990.tif
-EBS_IDW_Paralithodes_platypus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1991.tif
-EBS_IDW_Paralithodes_platypus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1992.tif
-EBS_IDW_Paralithodes_platypus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1993.tif
-EBS_IDW_Paralithodes_platypus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1994.tif
-EBS_IDW_Paralithodes_platypus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1995.tif
-EBS_IDW_Paralithodes_platypus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1996.tif
-EBS_IDW_Paralithodes_platypus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1997.tif
-EBS_IDW_Paralithodes_platypus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1998.tif
-EBS_IDW_Paralithodes_platypus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1999.tif
-EBS_IDW_Paralithodes_platypus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2000.tif
-EBS_IDW_Paralithodes_platypus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2001.tif
-EBS_IDW_Paralithodes_platypus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2002.tif
-EBS_IDW_Paralithodes_platypus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2003.tif
-EBS_IDW_Paralithodes_platypus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2004.tif
-EBS_IDW_Paralithodes_platypus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2005.tif
-EBS_IDW_Paralithodes_platypus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2006.tif
-EBS_IDW_Paralithodes_platypus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2007.tif
-EBS_IDW_Paralithodes_platypus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2008.tif
-EBS_IDW_Paralithodes_platypus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2009.tif
-EBS_IDW_Paralithodes_platypus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2010.tif
-EBS_IDW_Paralithodes_platypus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2011.tif
-EBS_IDW_Paralithodes_platypus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2012.tif
-EBS_IDW_Paralithodes_platypus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2013.tif
-EBS_IDW_Paralithodes_platypus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2014.tif
-EBS_IDW_Paralithodes_platypus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2015.tif
-EBS_IDW_Paralithodes_platypus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2016.tif
-EBS_IDW_Paralithodes_platypus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2017.tif
-EBS_IDW_Paralithodes_platypus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2018.tif
-EBS_IDW_Paralithodes_platypus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2019.tif
-EBS_IDW_Paralithodes_platypus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2021.tif
-EBS_IDW_Paralithodes_platypus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2022.tif
-EBS_IDW_Platichthys_stellatus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1985.tif
-EBS_IDW_Platichthys_stellatus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1987.tif
-EBS_IDW_Platichthys_stellatus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1988.tif
-EBS_IDW_Platichthys_stellatus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1989.tif
-EBS_IDW_Platichthys_stellatus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1990.tif
-EBS_IDW_Platichthys_stellatus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1991.tif
-EBS_IDW_Platichthys_stellatus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1992.tif
-EBS_IDW_Platichthys_stellatus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1993.tif
-EBS_IDW_Platichthys_stellatus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1994.tif
-EBS_IDW_Platichthys_stellatus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1995.tif
-EBS_IDW_Platichthys_stellatus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1996.tif
-EBS_IDW_Platichthys_stellatus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1997.tif
-EBS_IDW_Platichthys_stellatus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1998.tif
-EBS_IDW_Platichthys_stellatus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1999.tif
-EBS_IDW_Platichthys_stellatus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2000.tif
-EBS_IDW_Platichthys_stellatus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2001.tif
-EBS_IDW_Platichthys_stellatus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2002.tif
-EBS_IDW_Platichthys_stellatus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2003.tif
-EBS_IDW_Platichthys_stellatus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2004.tif
-EBS_IDW_Platichthys_stellatus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2005.tif
-EBS_IDW_Platichthys_stellatus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2006.tif
-EBS_IDW_Platichthys_stellatus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2007.tif
-EBS_IDW_Platichthys_stellatus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2008.tif
-EBS_IDW_Platichthys_stellatus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2009.tif
-EBS_IDW_Platichthys_stellatus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2010.tif
-EBS_IDW_Platichthys_stellatus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2011.tif
-EBS_IDW_Platichthys_stellatus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2012.tif
-EBS_IDW_Platichthys_stellatus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2013.tif
-EBS_IDW_Platichthys_stellatus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2014.tif
-EBS_IDW_Platichthys_stellatus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2015.tif
-EBS_IDW_Platichthys_stellatus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2016.tif
-EBS_IDW_Platichthys_stellatus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2017.tif
-EBS_IDW_Platichthys_stellatus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2018.tif
-EBS_IDW_Platichthys_stellatus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2019.tif
-EBS_IDW_Platichthys_stellatus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2021.tif
-EBS_IDW_Platichthys_stellatus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2022.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1985.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1987.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1988.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1989.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1990.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1991.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1992.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1993.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1994.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1995.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1996.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1997.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1998.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1999.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2000.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2001.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2002.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2003.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2004.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2005.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2006.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2007.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2008.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2009.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2010.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2011.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2012.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2013.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2014.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2015.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2016.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2017.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2018.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2019.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2021.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2022.tif
-EBS_IDW_Plicifusus_kroyeri_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_1985.tif
-EBS_IDW_Plicifusus_kroyeri_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_1987.tif
-EBS_IDW_Plicifusus_kroyeri_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_1988.tif
-EBS_IDW_Plicifusus_kroyeri_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_1989.tif
-EBS_IDW_Plicifusus_kroyeri_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_1990.tif
-EBS_IDW_Plicifusus_kroyeri_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_1991.tif
-EBS_IDW_Plicifusus_kroyeri_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_1992.tif
-EBS_IDW_Plicifusus_kroyeri_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_1993.tif
-EBS_IDW_Plicifusus_kroyeri_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_1994.tif
-EBS_IDW_Plicifusus_kroyeri_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_1995.tif
-EBS_IDW_Plicifusus_kroyeri_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_1996.tif
-EBS_IDW_Plicifusus_kroyeri_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_1997.tif
-EBS_IDW_Plicifusus_kroyeri_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_1998.tif
-EBS_IDW_Plicifusus_kroyeri_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_1999.tif
-EBS_IDW_Plicifusus_kroyeri_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_2000.tif
-EBS_IDW_Plicifusus_kroyeri_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_2001.tif
-EBS_IDW_Plicifusus_kroyeri_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_2002.tif
-EBS_IDW_Plicifusus_kroyeri_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_2003.tif
-EBS_IDW_Plicifusus_kroyeri_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_2004.tif
-EBS_IDW_Plicifusus_kroyeri_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_2005.tif
-EBS_IDW_Plicifusus_kroyeri_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_2006.tif
-EBS_IDW_Plicifusus_kroyeri_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_2007.tif
-EBS_IDW_Plicifusus_kroyeri_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_2008.tif
-EBS_IDW_Plicifusus_kroyeri_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_2009.tif
-EBS_IDW_Plicifusus_kroyeri_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_2010.tif
-EBS_IDW_Plicifusus_kroyeri_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_2011.tif
-EBS_IDW_Plicifusus_kroyeri_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_2012.tif
-EBS_IDW_Plicifusus_kroyeri_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_2013.tif
-EBS_IDW_Plicifusus_kroyeri_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_2014.tif
-EBS_IDW_Plicifusus_kroyeri_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_2015.tif
-EBS_IDW_Plicifusus_kroyeri_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_2016.tif
-EBS_IDW_Plicifusus_kroyeri_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_2017.tif
-EBS_IDW_Plicifusus_kroyeri_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_2018.tif
-EBS_IDW_Plicifusus_kroyeri_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_2019.tif
-EBS_IDW_Plicifusus_kroyeri_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_2021.tif
-EBS_IDW_Plicifusus_kroyeri_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Plicifusus kroyeri\EBS_IDW_Plicifusus_kroyeri_2022.tif
-EBS_IDW_Podothecus_accipenserinus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1985.tif
-EBS_IDW_Podothecus_accipenserinus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1987.tif
-EBS_IDW_Podothecus_accipenserinus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1988.tif
-EBS_IDW_Podothecus_accipenserinus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1989.tif
-EBS_IDW_Podothecus_accipenserinus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1990.tif
-EBS_IDW_Podothecus_accipenserinus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1991.tif
-EBS_IDW_Podothecus_accipenserinus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1992.tif
-EBS_IDW_Podothecus_accipenserinus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1993.tif
-EBS_IDW_Podothecus_accipenserinus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1994.tif
-EBS_IDW_Podothecus_accipenserinus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1995.tif
-EBS_IDW_Podothecus_accipenserinus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1996.tif
-EBS_IDW_Podothecus_accipenserinus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1997.tif
-EBS_IDW_Podothecus_accipenserinus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1998.tif
-EBS_IDW_Podothecus_accipenserinus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1999.tif
-EBS_IDW_Podothecus_accipenserinus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2000.tif
-EBS_IDW_Podothecus_accipenserinus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2001.tif
-EBS_IDW_Podothecus_accipenserinus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2002.tif
-EBS_IDW_Podothecus_accipenserinus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2003.tif
-EBS_IDW_Podothecus_accipenserinus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2004.tif
-EBS_IDW_Podothecus_accipenserinus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2005.tif
-EBS_IDW_Podothecus_accipenserinus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2006.tif
-EBS_IDW_Podothecus_accipenserinus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2007.tif
-EBS_IDW_Podothecus_accipenserinus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2008.tif
-EBS_IDW_Podothecus_accipenserinus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2009.tif
-EBS_IDW_Podothecus_accipenserinus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2010.tif
-EBS_IDW_Podothecus_accipenserinus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2011.tif
-EBS_IDW_Podothecus_accipenserinus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2012.tif
-EBS_IDW_Podothecus_accipenserinus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2013.tif
-EBS_IDW_Podothecus_accipenserinus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2014.tif
-EBS_IDW_Podothecus_accipenserinus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2015.tif
-EBS_IDW_Podothecus_accipenserinus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2016.tif
-EBS_IDW_Podothecus_accipenserinus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2017.tif
-EBS_IDW_Podothecus_accipenserinus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2018.tif
-EBS_IDW_Podothecus_accipenserinus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2019.tif
-EBS_IDW_Podothecus_accipenserinus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2021.tif
-EBS_IDW_Podothecus_accipenserinus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2022.tif
-EBS_IDW_Pteraster_obscurus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_1985.tif
-EBS_IDW_Pteraster_obscurus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_1987.tif
-EBS_IDW_Pteraster_obscurus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_1988.tif
-EBS_IDW_Pteraster_obscurus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_1989.tif
-EBS_IDW_Pteraster_obscurus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_1990.tif
-EBS_IDW_Pteraster_obscurus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_1991.tif
-EBS_IDW_Pteraster_obscurus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_1992.tif
-EBS_IDW_Pteraster_obscurus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_1993.tif
-EBS_IDW_Pteraster_obscurus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_1994.tif
-EBS_IDW_Pteraster_obscurus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_1995.tif
-EBS_IDW_Pteraster_obscurus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_1996.tif
-EBS_IDW_Pteraster_obscurus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_1997.tif
-EBS_IDW_Pteraster_obscurus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_1998.tif
-EBS_IDW_Pteraster_obscurus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_1999.tif
-EBS_IDW_Pteraster_obscurus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_2000.tif
-EBS_IDW_Pteraster_obscurus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_2001.tif
-EBS_IDW_Pteraster_obscurus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_2002.tif
-EBS_IDW_Pteraster_obscurus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_2003.tif
-EBS_IDW_Pteraster_obscurus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_2004.tif
-EBS_IDW_Pteraster_obscurus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_2005.tif
-EBS_IDW_Pteraster_obscurus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_2006.tif
-EBS_IDW_Pteraster_obscurus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_2007.tif
-EBS_IDW_Pteraster_obscurus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_2008.tif
-EBS_IDW_Pteraster_obscurus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_2009.tif
-EBS_IDW_Pteraster_obscurus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_2010.tif
-EBS_IDW_Pteraster_obscurus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_2011.tif
-EBS_IDW_Pteraster_obscurus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_2012.tif
-EBS_IDW_Pteraster_obscurus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_2013.tif
-EBS_IDW_Pteraster_obscurus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_2014.tif
-EBS_IDW_Pteraster_obscurus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_2015.tif
-EBS_IDW_Pteraster_obscurus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_2016.tif
-EBS_IDW_Pteraster_obscurus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_2017.tif
-EBS_IDW_Pteraster_obscurus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_2018.tif
-EBS_IDW_Pteraster_obscurus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_2019.tif
-EBS_IDW_Pteraster_obscurus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_2021.tif
-EBS_IDW_Pteraster_obscurus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Pteraster obscurus\EBS_IDW_Pteraster_obscurus_2022.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1985.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1987.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1988.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1989.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1990.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1991.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1992.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1993.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1994.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1995.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1996.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1997.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1998.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1999.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2000.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2001.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2002.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2003.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2004.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2005.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2006.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2007.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2008.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2009.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2010.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2011.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2012.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2013.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2014.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2015.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2016.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2017.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2018.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2019.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2021.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2022.tif
-EBS_IDW_Sarritor_frenatus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1985.tif
-EBS_IDW_Sarritor_frenatus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1987.tif
-EBS_IDW_Sarritor_frenatus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1988.tif
-EBS_IDW_Sarritor_frenatus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1989.tif
-EBS_IDW_Sarritor_frenatus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1990.tif
-EBS_IDW_Sarritor_frenatus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1991.tif
-EBS_IDW_Sarritor_frenatus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1992.tif
-EBS_IDW_Sarritor_frenatus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1993.tif
-EBS_IDW_Sarritor_frenatus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1994.tif
-EBS_IDW_Sarritor_frenatus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1995.tif
-EBS_IDW_Sarritor_frenatus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1996.tif
-EBS_IDW_Sarritor_frenatus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1997.tif
-EBS_IDW_Sarritor_frenatus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1998.tif
-EBS_IDW_Sarritor_frenatus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1999.tif
-EBS_IDW_Sarritor_frenatus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2000.tif
-EBS_IDW_Sarritor_frenatus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2001.tif
-EBS_IDW_Sarritor_frenatus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2002.tif
-EBS_IDW_Sarritor_frenatus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2003.tif
-EBS_IDW_Sarritor_frenatus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2004.tif
-EBS_IDW_Sarritor_frenatus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2005.tif
-EBS_IDW_Sarritor_frenatus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2006.tif
-EBS_IDW_Sarritor_frenatus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2007.tif
-EBS_IDW_Sarritor_frenatus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2008.tif
-EBS_IDW_Sarritor_frenatus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2009.tif
-EBS_IDW_Sarritor_frenatus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2010.tif
-EBS_IDW_Sarritor_frenatus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2011.tif
-EBS_IDW_Sarritor_frenatus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2012.tif
-EBS_IDW_Sarritor_frenatus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2013.tif
-EBS_IDW_Sarritor_frenatus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2014.tif
-EBS_IDW_Sarritor_frenatus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2015.tif
-EBS_IDW_Sarritor_frenatus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2016.tif
-EBS_IDW_Sarritor_frenatus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2017.tif
-EBS_IDW_Sarritor_frenatus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2018.tif
-EBS_IDW_Sarritor_frenatus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2019.tif
-EBS_IDW_Sarritor_frenatus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2021.tif
-EBS_IDW_Sarritor_frenatus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2022.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_1985.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_1987.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_1988.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_1989.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_1990.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_1991.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_1992.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_1993.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_1994.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_1995.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_1996.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_1997.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_1998.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_1999.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_2000.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_2001.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_2002.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_2003.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_2004.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_2005.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_2006.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_2007.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_2008.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_2009.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_2010.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_2011.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_2012.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_2013.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_2014.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_2015.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_2016.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_2017.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_2018.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_2019.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_2021.tif
-EBS_IDW_Strongylocentrotus_droebachiensis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Strongylocentrotus droebachiensis\EBS_IDW_Strongylocentrotus_droebachiensis_2022.tif
-EBS_IDW_Styela_rustica_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_1985.tif
-EBS_IDW_Styela_rustica_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_1987.tif
-EBS_IDW_Styela_rustica_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_1988.tif
-EBS_IDW_Styela_rustica_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_1989.tif
-EBS_IDW_Styela_rustica_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_1990.tif
-EBS_IDW_Styela_rustica_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_1991.tif
-EBS_IDW_Styela_rustica_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_1992.tif
-EBS_IDW_Styela_rustica_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_1993.tif
-EBS_IDW_Styela_rustica_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_1994.tif
-EBS_IDW_Styela_rustica_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_1995.tif
-EBS_IDW_Styela_rustica_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_1996.tif
-EBS_IDW_Styela_rustica_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_1997.tif
-EBS_IDW_Styela_rustica_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_1998.tif
-EBS_IDW_Styela_rustica_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_1999.tif
-EBS_IDW_Styela_rustica_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_2000.tif
-EBS_IDW_Styela_rustica_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_2001.tif
-EBS_IDW_Styela_rustica_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_2002.tif
-EBS_IDW_Styela_rustica_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_2003.tif
-EBS_IDW_Styela_rustica_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_2004.tif
-EBS_IDW_Styela_rustica_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_2005.tif
-EBS_IDW_Styela_rustica_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_2006.tif
-EBS_IDW_Styela_rustica_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_2007.tif
-EBS_IDW_Styela_rustica_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_2008.tif
-EBS_IDW_Styela_rustica_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_2009.tif
-EBS_IDW_Styela_rustica_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_2010.tif
-EBS_IDW_Styela_rustica_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_2011.tif
-EBS_IDW_Styela_rustica_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_2012.tif
-EBS_IDW_Styela_rustica_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_2013.tif
-EBS_IDW_Styela_rustica_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_2014.tif
-EBS_IDW_Styela_rustica_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_2015.tif
-EBS_IDW_Styela_rustica_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_2016.tif
-EBS_IDW_Styela_rustica_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_2017.tif
-EBS_IDW_Styela_rustica_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_2018.tif
-EBS_IDW_Styela_rustica_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_2019.tif
-EBS_IDW_Styela_rustica_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_2021.tif
-EBS_IDW_Styela_rustica_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Styela rustica\EBS_IDW_Styela_rustica_2022.tif
-EBS_IDW_Telmessus_cheiragonus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1985.tif
-EBS_IDW_Telmessus_cheiragonus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1987.tif
-EBS_IDW_Telmessus_cheiragonus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1988.tif
-EBS_IDW_Telmessus_cheiragonus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1989.tif
-EBS_IDW_Telmessus_cheiragonus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1990.tif
-EBS_IDW_Telmessus_cheiragonus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1991.tif
-EBS_IDW_Telmessus_cheiragonus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1992.tif
-EBS_IDW_Telmessus_cheiragonus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1993.tif
-EBS_IDW_Telmessus_cheiragonus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1994.tif
-EBS_IDW_Telmessus_cheiragonus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1995.tif
-EBS_IDW_Telmessus_cheiragonus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1996.tif
-EBS_IDW_Telmessus_cheiragonus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1997.tif
-EBS_IDW_Telmessus_cheiragonus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1998.tif
-EBS_IDW_Telmessus_cheiragonus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1999.tif
-EBS_IDW_Telmessus_cheiragonus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2000.tif
-EBS_IDW_Telmessus_cheiragonus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2001.tif
-EBS_IDW_Telmessus_cheiragonus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2002.tif
-EBS_IDW_Telmessus_cheiragonus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2003.tif
-EBS_IDW_Telmessus_cheiragonus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2004.tif
-EBS_IDW_Telmessus_cheiragonus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2005.tif
-EBS_IDW_Telmessus_cheiragonus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2006.tif
-EBS_IDW_Telmessus_cheiragonus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2007.tif
-EBS_IDW_Telmessus_cheiragonus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2008.tif
-EBS_IDW_Telmessus_cheiragonus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2009.tif
-EBS_IDW_Telmessus_cheiragonus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2010.tif
-EBS_IDW_Telmessus_cheiragonus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2011.tif
-EBS_IDW_Telmessus_cheiragonus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2012.tif
-EBS_IDW_Telmessus_cheiragonus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2013.tif
-EBS_IDW_Telmessus_cheiragonus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2014.tif
-EBS_IDW_Telmessus_cheiragonus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2015.tif
-EBS_IDW_Telmessus_cheiragonus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2016.tif
-EBS_IDW_Telmessus_cheiragonus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2017.tif
-EBS_IDW_Telmessus_cheiragonus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2018.tif
-EBS_IDW_Telmessus_cheiragonus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2019.tif
-EBS_IDW_Telmessus_cheiragonus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2021.tif
-EBS_IDW_Telmessus_cheiragonus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2022.tif
-EBS_IDW_Thaleichthys_pacificus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1985.tif
-EBS_IDW_Thaleichthys_pacificus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1987.tif
-EBS_IDW_Thaleichthys_pacificus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1988.tif
-EBS_IDW_Thaleichthys_pacificus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1989.tif
-EBS_IDW_Thaleichthys_pacificus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1990.tif
-EBS_IDW_Thaleichthys_pacificus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1991.tif
-EBS_IDW_Thaleichthys_pacificus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1992.tif
-EBS_IDW_Thaleichthys_pacificus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1993.tif
-EBS_IDW_Thaleichthys_pacificus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1994.tif
-EBS_IDW_Thaleichthys_pacificus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1995.tif
-EBS_IDW_Thaleichthys_pacificus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1996.tif
-EBS_IDW_Thaleichthys_pacificus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1997.tif
-EBS_IDW_Thaleichthys_pacificus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1998.tif
-EBS_IDW_Thaleichthys_pacificus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1999.tif
-EBS_IDW_Thaleichthys_pacificus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2000.tif
-EBS_IDW_Thaleichthys_pacificus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2001.tif
-EBS_IDW_Thaleichthys_pacificus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2002.tif
-EBS_IDW_Thaleichthys_pacificus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2003.tif
-EBS_IDW_Thaleichthys_pacificus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2004.tif
-EBS_IDW_Thaleichthys_pacificus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2005.tif
-EBS_IDW_Thaleichthys_pacificus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2006.tif
-EBS_IDW_Thaleichthys_pacificus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2007.tif
-EBS_IDW_Thaleichthys_pacificus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2008.tif
-EBS_IDW_Thaleichthys_pacificus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2009.tif
-EBS_IDW_Thaleichthys_pacificus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:09:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2010.tif
-EBS_IDW_Thaleichthys_pacificus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2011.tif
-EBS_IDW_Thaleichthys_pacificus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2012.tif
-EBS_IDW_Thaleichthys_pacificus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2013.tif
-EBS_IDW_Thaleichthys_pacificus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2014.tif
-EBS_IDW_Thaleichthys_pacificus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2015.tif
-EBS_IDW_Thaleichthys_pacificus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2016.tif
-EBS_IDW_Thaleichthys_pacificus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2017.tif
-EBS_IDW_Thaleichthys_pacificus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2018.tif
-EBS_IDW_Thaleichthys_pacificus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2019.tif
-EBS_IDW_Thaleichthys_pacificus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2021.tif
-EBS_IDW_Thaleichthys_pacificus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2022.tif
-EBS_IDW_Core_Species_Richness_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1985.tif
-EBS_IDW_Core_Species_Richness_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1987.tif
-EBS_IDW_Core_Species_Richness_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1988.tif
-EBS_IDW_Core_Species_Richness_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1989.tif
-EBS_IDW_Core_Species_Richness_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1990.tif
-EBS_IDW_Core_Species_Richness_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1991.tif
-EBS_IDW_Core_Species_Richness_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1992.tif
-EBS_IDW_Core_Species_Richness_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1993.tif
-EBS_IDW_Core_Species_Richness_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1994.tif
-EBS_IDW_Core_Species_Richness_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1995.tif
-EBS_IDW_Core_Species_Richness_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1996.tif
-EBS_IDW_Core_Species_Richness_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1997.tif
-EBS_IDW_Core_Species_Richness_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1998.tif
-EBS_IDW_Core_Species_Richness_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1999.tif
-EBS_IDW_Core_Species_Richness_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2000.tif
-EBS_IDW_Core_Species_Richness_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2001.tif
-EBS_IDW_Core_Species_Richness_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2002.tif
-EBS_IDW_Core_Species_Richness_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2003.tif
-EBS_IDW_Core_Species_Richness_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2004.tif
-EBS_IDW_Core_Species_Richness_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2005.tif
-EBS_IDW_Core_Species_Richness_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2006.tif
-EBS_IDW_Core_Species_Richness_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2007.tif
-EBS_IDW_Core_Species_Richness_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2008.tif
-EBS_IDW_Core_Species_Richness_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2009.tif
-EBS_IDW_Core_Species_Richness_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2010.tif
-EBS_IDW_Core_Species_Richness_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2011.tif
-EBS_IDW_Core_Species_Richness_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2012.tif
-EBS_IDW_Core_Species_Richness_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2013.tif
-EBS_IDW_Core_Species_Richness_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2014.tif
-EBS_IDW_Core_Species_Richness_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2015.tif
-EBS_IDW_Core_Species_Richness_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2016.tif
-EBS_IDW_Core_Species_Richness_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2017.tif
-EBS_IDW_Core_Species_Richness_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2018.tif
-EBS_IDW_Core_Species_Richness_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2019.tif
-EBS_IDW_Core_Species_Richness_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2021.tif
-EBS_IDW_Core_Species_Richness_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2022.tif
-EBS_IDW_Species_Richness_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1985.tif
-EBS_IDW_Species_Richness_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1987.tif
-EBS_IDW_Species_Richness_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1988.tif
-EBS_IDW_Species_Richness_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1989.tif
-EBS_IDW_Species_Richness_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1990.tif
-EBS_IDW_Species_Richness_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1991.tif
-EBS_IDW_Species_Richness_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1992.tif
-EBS_IDW_Species_Richness_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1993.tif
-EBS_IDW_Species_Richness_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1994.tif
-EBS_IDW_Species_Richness_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1995.tif
-EBS_IDW_Species_Richness_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1996.tif
-EBS_IDW_Species_Richness_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1997.tif
-EBS_IDW_Species_Richness_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1998.tif
-EBS_IDW_Species_Richness_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1999.tif
-EBS_IDW_Species_Richness_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2000.tif
-EBS_IDW_Species_Richness_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2001.tif
-EBS_IDW_Species_Richness_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2002.tif
-EBS_IDW_Species_Richness_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2003.tif
-EBS_IDW_Species_Richness_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2004.tif
-EBS_IDW_Species_Richness_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2005.tif
-EBS_IDW_Species_Richness_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2006.tif
-EBS_IDW_Species_Richness_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2007.tif
-EBS_IDW_Species_Richness_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2008.tif
-EBS_IDW_Species_Richness_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2009.tif
-EBS_IDW_Species_Richness_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2010.tif
-EBS_IDW_Species_Richness_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2011.tif
-EBS_IDW_Species_Richness_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2012.tif
-EBS_IDW_Species_Richness_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2013.tif
-EBS_IDW_Species_Richness_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2014.tif
-EBS_IDW_Species_Richness_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2015.tif
-EBS_IDW_Species_Richness_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2016.tif
-EBS_IDW_Species_Richness_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2017.tif
-EBS_IDW_Species_Richness_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2018.tif
-EBS_IDW_Species_Richness_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2019.tif
-EBS_IDW_Species_Richness_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2021.tif
-EBS_IDW_Species_Richness_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2022.tif
-ENBS_IDW_Acantholumpenus_mackayi_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Acantholumpenus mackayi\ENBS_IDW_Acantholumpenus_mackayi_2010.tif
-ENBS_IDW_Acantholumpenus_mackayi_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Acantholumpenus mackayi\ENBS_IDW_Acantholumpenus_mackayi_2017.tif
-ENBS_IDW_Acantholumpenus_mackayi_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Acantholumpenus mackayi\ENBS_IDW_Acantholumpenus_mackayi_2019.tif
-ENBS_IDW_Acantholumpenus_mackayi_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Acantholumpenus mackayi\ENBS_IDW_Acantholumpenus_mackayi_2021.tif
-ENBS_IDW_Acantholumpenus_mackayi_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Acantholumpenus mackayi\ENBS_IDW_Acantholumpenus_mackayi_2022.tif
-ENBS_IDW_Aspidophoroides_olrikii_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Aspidophoroides olrikii\ENBS_IDW_Aspidophoroides_olrikii_2010.tif
-ENBS_IDW_Aspidophoroides_olrikii_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Aspidophoroides olrikii\ENBS_IDW_Aspidophoroides_olrikii_2017.tif
-ENBS_IDW_Aspidophoroides_olrikii_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Aspidophoroides olrikii\ENBS_IDW_Aspidophoroides_olrikii_2019.tif
-ENBS_IDW_Aspidophoroides_olrikii_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Aspidophoroides olrikii\ENBS_IDW_Aspidophoroides_olrikii_2021.tif
-ENBS_IDW_Aspidophoroides_olrikii_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Aspidophoroides olrikii\ENBS_IDW_Aspidophoroides_olrikii_2022.tif
-ENBS_IDW_Asterias_amurensis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Asterias amurensis\ENBS_IDW_Asterias_amurensis_2010.tif
-ENBS_IDW_Asterias_amurensis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Asterias amurensis\ENBS_IDW_Asterias_amurensis_2017.tif
-ENBS_IDW_Asterias_amurensis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Asterias amurensis\ENBS_IDW_Asterias_amurensis_2019.tif
-ENBS_IDW_Asterias_amurensis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Asterias amurensis\ENBS_IDW_Asterias_amurensis_2021.tif
-ENBS_IDW_Asterias_amurensis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Asterias amurensis\ENBS_IDW_Asterias_amurensis_2022.tif
-ENBS_IDW_Atheresthes_stomias_and_A_evermanni_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Atheresthes stomias and A evermanni\ENBS_IDW_Atheresthes_stomias_and_A_evermanni_2010.tif
-ENBS_IDW_Atheresthes_stomias_and_A_evermanni_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Atheresthes stomias and A evermanni\ENBS_IDW_Atheresthes_stomias_and_A_evermanni_2017.tif
-ENBS_IDW_Atheresthes_stomias_and_A_evermanni_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Atheresthes stomias and A evermanni\ENBS_IDW_Atheresthes_stomias_and_A_evermanni_2019.tif
-ENBS_IDW_Atheresthes_stomias_and_A_evermanni_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Atheresthes stomias and A evermanni\ENBS_IDW_Atheresthes_stomias_and_A_evermanni_2021.tif
-ENBS_IDW_Atheresthes_stomias_and_A_evermanni_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Atheresthes stomias and A evermanni\ENBS_IDW_Atheresthes_stomias_and_A_evermanni_2022.tif
-ENBS_IDW_Bathymaster_signatus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Bathymaster signatus\ENBS_IDW_Bathymaster_signatus_2010.tif
-ENBS_IDW_Bathymaster_signatus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Bathymaster signatus\ENBS_IDW_Bathymaster_signatus_2017.tif
-ENBS_IDW_Bathymaster_signatus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Bathymaster signatus\ENBS_IDW_Bathymaster_signatus_2019.tif
-ENBS_IDW_Bathymaster_signatus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Bathymaster signatus\ENBS_IDW_Bathymaster_signatus_2021.tif
-ENBS_IDW_Bathymaster_signatus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Bathymaster signatus\ENBS_IDW_Bathymaster_signatus_2022.tif
-ENBS_IDW_Bathyraja_spp_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Bathyraja spp\ENBS_IDW_Bathyraja_spp_2010.tif
-ENBS_IDW_Bathyraja_spp_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Bathyraja spp\ENBS_IDW_Bathyraja_spp_2017.tif
-ENBS_IDW_Bathyraja_spp_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Bathyraja spp\ENBS_IDW_Bathyraja_spp_2019.tif
-ENBS_IDW_Bathyraja_spp_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Bathyraja spp\ENBS_IDW_Bathyraja_spp_2021.tif
-ENBS_IDW_Bathyraja_spp_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Bathyraja spp\ENBS_IDW_Bathyraja_spp_2022.tif
-ENBS_IDW_Boltenia_ovifera_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Boltenia ovifera\ENBS_IDW_Boltenia_ovifera_2010.tif
-ENBS_IDW_Boltenia_ovifera_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Boltenia ovifera\ENBS_IDW_Boltenia_ovifera_2017.tif
-ENBS_IDW_Boltenia_ovifera_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Boltenia ovifera\ENBS_IDW_Boltenia_ovifera_2019.tif
-ENBS_IDW_Boltenia_ovifera_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Boltenia ovifera\ENBS_IDW_Boltenia_ovifera_2021.tif
-ENBS_IDW_Boltenia_ovifera_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Boltenia ovifera\ENBS_IDW_Boltenia_ovifera_2022.tif
-ENBS_IDW_Boreogadus_saida_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Boreogadus saida\ENBS_IDW_Boreogadus_saida_2010.tif
-ENBS_IDW_Boreogadus_saida_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Boreogadus saida\ENBS_IDW_Boreogadus_saida_2017.tif
-ENBS_IDW_Boreogadus_saida_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Boreogadus saida\ENBS_IDW_Boreogadus_saida_2019.tif
-ENBS_IDW_Boreogadus_saida_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Boreogadus saida\ENBS_IDW_Boreogadus_saida_2021.tif
-ENBS_IDW_Boreogadus_saida_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Boreogadus saida\ENBS_IDW_Boreogadus_saida_2022.tif
-ENBS_IDW_Buccinum_angulosum_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Buccinum angulosum\ENBS_IDW_Buccinum_angulosum_2010.tif
-ENBS_IDW_Buccinum_angulosum_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Buccinum angulosum\ENBS_IDW_Buccinum_angulosum_2017.tif
-ENBS_IDW_Buccinum_angulosum_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Buccinum angulosum\ENBS_IDW_Buccinum_angulosum_2019.tif
-ENBS_IDW_Buccinum_angulosum_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Buccinum angulosum\ENBS_IDW_Buccinum_angulosum_2021.tif
-ENBS_IDW_Buccinum_angulosum_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Buccinum angulosum\ENBS_IDW_Buccinum_angulosum_2022.tif
-ENBS_IDW_Buccinum_polare_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Buccinum polare\ENBS_IDW_Buccinum_polare_2010.tif
-ENBS_IDW_Buccinum_polare_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Buccinum polare\ENBS_IDW_Buccinum_polare_2017.tif
-ENBS_IDW_Buccinum_polare_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Buccinum polare\ENBS_IDW_Buccinum_polare_2019.tif
-ENBS_IDW_Buccinum_polare_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Buccinum polare\ENBS_IDW_Buccinum_polare_2021.tif
-ENBS_IDW_Buccinum_polare_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Buccinum polare\ENBS_IDW_Buccinum_polare_2022.tif
-ENBS_IDW_Buccinum_scalariforme_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Buccinum scalariforme\ENBS_IDW_Buccinum_scalariforme_2010.tif
-ENBS_IDW_Buccinum_scalariforme_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Buccinum scalariforme\ENBS_IDW_Buccinum_scalariforme_2017.tif
-ENBS_IDW_Buccinum_scalariforme_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Buccinum scalariforme\ENBS_IDW_Buccinum_scalariforme_2019.tif
-ENBS_IDW_Buccinum_scalariforme_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Buccinum scalariforme\ENBS_IDW_Buccinum_scalariforme_2021.tif
-ENBS_IDW_Buccinum_scalariforme_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Buccinum scalariforme\ENBS_IDW_Buccinum_scalariforme_2022.tif
-ENBS_IDW_Chionoecetes_bairdi_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Chionoecetes bairdi\ENBS_IDW_Chionoecetes_bairdi_2010.tif
-ENBS_IDW_Chionoecetes_bairdi_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Chionoecetes bairdi\ENBS_IDW_Chionoecetes_bairdi_2017.tif
-ENBS_IDW_Chionoecetes_bairdi_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Chionoecetes bairdi\ENBS_IDW_Chionoecetes_bairdi_2019.tif
-ENBS_IDW_Chionoecetes_bairdi_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Chionoecetes bairdi\ENBS_IDW_Chionoecetes_bairdi_2021.tif
-ENBS_IDW_Chionoecetes_bairdi_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Chionoecetes bairdi\ENBS_IDW_Chionoecetes_bairdi_2022.tif
-ENBS_IDW_Chionoecetes_opilio_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Chionoecetes opilio\ENBS_IDW_Chionoecetes_opilio_2010.tif
-ENBS_IDW_Chionoecetes_opilio_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Chionoecetes opilio\ENBS_IDW_Chionoecetes_opilio_2017.tif
-ENBS_IDW_Chionoecetes_opilio_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Chionoecetes opilio\ENBS_IDW_Chionoecetes_opilio_2019.tif
-ENBS_IDW_Chionoecetes_opilio_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Chionoecetes opilio\ENBS_IDW_Chionoecetes_opilio_2021.tif
-ENBS_IDW_Chionoecetes_opilio_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Chionoecetes opilio\ENBS_IDW_Chionoecetes_opilio_2022.tif
-ENBS_IDW_Chrysaora_melanaster_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Chrysaora melanaster\ENBS_IDW_Chrysaora_melanaster_2010.tif
-ENBS_IDW_Chrysaora_melanaster_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Chrysaora melanaster\ENBS_IDW_Chrysaora_melanaster_2017.tif
-ENBS_IDW_Chrysaora_melanaster_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Chrysaora melanaster\ENBS_IDW_Chrysaora_melanaster_2019.tif
-ENBS_IDW_Chrysaora_melanaster_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Chrysaora melanaster\ENBS_IDW_Chrysaora_melanaster_2021.tif
-ENBS_IDW_Chrysaora_melanaster_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Chrysaora melanaster\ENBS_IDW_Chrysaora_melanaster_2022.tif
-ENBS_IDW_Clinopegma_magnum_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Clinopegma magnum\ENBS_IDW_Clinopegma_magnum_2010.tif
-ENBS_IDW_Clinopegma_magnum_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Clinopegma magnum\ENBS_IDW_Clinopegma_magnum_2017.tif
-ENBS_IDW_Clinopegma_magnum_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Clinopegma magnum\ENBS_IDW_Clinopegma_magnum_2019.tif
-ENBS_IDW_Clinopegma_magnum_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Clinopegma magnum\ENBS_IDW_Clinopegma_magnum_2021.tif
-ENBS_IDW_Clinopegma_magnum_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Clinopegma magnum\ENBS_IDW_Clinopegma_magnum_2022.tif
-ENBS_IDW_Clupea_pallasii_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Clupea pallasii\ENBS_IDW_Clupea_pallasii_2010.tif
-ENBS_IDW_Clupea_pallasii_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Clupea pallasii\ENBS_IDW_Clupea_pallasii_2017.tif
-ENBS_IDW_Clupea_pallasii_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Clupea pallasii\ENBS_IDW_Clupea_pallasii_2019.tif
-ENBS_IDW_Clupea_pallasii_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Clupea pallasii\ENBS_IDW_Clupea_pallasii_2021.tif
-ENBS_IDW_Clupea_pallasii_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Clupea pallasii\ENBS_IDW_Clupea_pallasii_2022.tif
-ENBS_IDW_Crossaster_papposus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Crossaster papposus\ENBS_IDW_Crossaster_papposus_2010.tif
-ENBS_IDW_Crossaster_papposus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Crossaster papposus\ENBS_IDW_Crossaster_papposus_2017.tif
-ENBS_IDW_Crossaster_papposus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Crossaster papposus\ENBS_IDW_Crossaster_papposus_2019.tif
-ENBS_IDW_Crossaster_papposus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Crossaster papposus\ENBS_IDW_Crossaster_papposus_2021.tif
-ENBS_IDW_Crossaster_papposus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Crossaster papposus\ENBS_IDW_Crossaster_papposus_2022.tif
-ENBS_IDW_Ctenodiscus_crispatus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Ctenodiscus crispatus\ENBS_IDW_Ctenodiscus_crispatus_2010.tif
-ENBS_IDW_Ctenodiscus_crispatus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Ctenodiscus crispatus\ENBS_IDW_Ctenodiscus_crispatus_2017.tif
-ENBS_IDW_Ctenodiscus_crispatus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Ctenodiscus crispatus\ENBS_IDW_Ctenodiscus_crispatus_2019.tif
-ENBS_IDW_Ctenodiscus_crispatus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Ctenodiscus crispatus\ENBS_IDW_Ctenodiscus_crispatus_2021.tif
-ENBS_IDW_Ctenodiscus_crispatus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Ctenodiscus crispatus\ENBS_IDW_Ctenodiscus_crispatus_2022.tif
-ENBS_IDW_Dasycottus_setiger_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Dasycottus setiger\ENBS_IDW_Dasycottus_setiger_2010.tif
-ENBS_IDW_Dasycottus_setiger_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Dasycottus setiger\ENBS_IDW_Dasycottus_setiger_2017.tif
-ENBS_IDW_Dasycottus_setiger_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Dasycottus setiger\ENBS_IDW_Dasycottus_setiger_2019.tif
-ENBS_IDW_Dasycottus_setiger_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Dasycottus setiger\ENBS_IDW_Dasycottus_setiger_2021.tif
-ENBS_IDW_Dasycottus_setiger_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Dasycottus setiger\ENBS_IDW_Dasycottus_setiger_2022.tif
-ENBS_IDW_Eleginus_gracilis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Eleginus gracilis\ENBS_IDW_Eleginus_gracilis_2010.tif
-ENBS_IDW_Eleginus_gracilis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Eleginus gracilis\ENBS_IDW_Eleginus_gracilis_2017.tif
-ENBS_IDW_Eleginus_gracilis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Eleginus gracilis\ENBS_IDW_Eleginus_gracilis_2019.tif
-ENBS_IDW_Eleginus_gracilis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Eleginus gracilis\ENBS_IDW_Eleginus_gracilis_2021.tif
-ENBS_IDW_Eleginus_gracilis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Eleginus gracilis\ENBS_IDW_Eleginus_gracilis_2022.tif
-ENBS_IDW_Enophrys_diceraus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Enophrys diceraus\ENBS_IDW_Enophrys_diceraus_2010.tif
-ENBS_IDW_Enophrys_diceraus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Enophrys diceraus\ENBS_IDW_Enophrys_diceraus_2017.tif
-ENBS_IDW_Enophrys_diceraus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Enophrys diceraus\ENBS_IDW_Enophrys_diceraus_2019.tif
-ENBS_IDW_Enophrys_diceraus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Enophrys diceraus\ENBS_IDW_Enophrys_diceraus_2021.tif
-ENBS_IDW_Enophrys_diceraus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Enophrys diceraus\ENBS_IDW_Enophrys_diceraus_2022.tif
-ENBS_IDW_Erimacrus_isenbeckii_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Erimacrus isenbeckii\ENBS_IDW_Erimacrus_isenbeckii_2010.tif
-ENBS_IDW_Erimacrus_isenbeckii_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Erimacrus isenbeckii\ENBS_IDW_Erimacrus_isenbeckii_2017.tif
-ENBS_IDW_Erimacrus_isenbeckii_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Erimacrus isenbeckii\ENBS_IDW_Erimacrus_isenbeckii_2019.tif
-ENBS_IDW_Erimacrus_isenbeckii_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Erimacrus isenbeckii\ENBS_IDW_Erimacrus_isenbeckii_2021.tif
-ENBS_IDW_Erimacrus_isenbeckii_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Erimacrus isenbeckii\ENBS_IDW_Erimacrus_isenbeckii_2022.tif
-ENBS_IDW_Eunoe_depressa_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Eunoe depressa\ENBS_IDW_Eunoe_depressa_2010.tif
-ENBS_IDW_Eunoe_depressa_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Eunoe depressa\ENBS_IDW_Eunoe_depressa_2017.tif
-ENBS_IDW_Eunoe_depressa_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Eunoe depressa\ENBS_IDW_Eunoe_depressa_2019.tif
-ENBS_IDW_Eunoe_depressa_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Eunoe depressa\ENBS_IDW_Eunoe_depressa_2021.tif
-ENBS_IDW_Eunoe_depressa_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Eunoe depressa\ENBS_IDW_Eunoe_depressa_2022.tif
-ENBS_IDW_Eunoe_nodosa_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Eunoe nodosa\ENBS_IDW_Eunoe_nodosa_2010.tif
-ENBS_IDW_Eunoe_nodosa_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Eunoe nodosa\ENBS_IDW_Eunoe_nodosa_2017.tif
-ENBS_IDW_Eunoe_nodosa_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Eunoe nodosa\ENBS_IDW_Eunoe_nodosa_2019.tif
-ENBS_IDW_Eunoe_nodosa_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Eunoe nodosa\ENBS_IDW_Eunoe_nodosa_2021.tif
-ENBS_IDW_Eunoe_nodosa_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Eunoe nodosa\ENBS_IDW_Eunoe_nodosa_2022.tif
-ENBS_IDW_Evasterias_echinosoma_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Evasterias echinosoma\ENBS_IDW_Evasterias_echinosoma_2010.tif
-ENBS_IDW_Evasterias_echinosoma_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Evasterias echinosoma\ENBS_IDW_Evasterias_echinosoma_2017.tif
-ENBS_IDW_Evasterias_echinosoma_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Evasterias echinosoma\ENBS_IDW_Evasterias_echinosoma_2019.tif
-ENBS_IDW_Evasterias_echinosoma_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Evasterias echinosoma\ENBS_IDW_Evasterias_echinosoma_2021.tif
-ENBS_IDW_Evasterias_echinosoma_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Evasterias echinosoma\ENBS_IDW_Evasterias_echinosoma_2022.tif
-ENBS_IDW_Fusitriton_oregonensis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Fusitriton oregonensis\ENBS_IDW_Fusitriton_oregonensis_2010.tif
-ENBS_IDW_Fusitriton_oregonensis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Fusitriton oregonensis\ENBS_IDW_Fusitriton_oregonensis_2017.tif
-ENBS_IDW_Fusitriton_oregonensis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Fusitriton oregonensis\ENBS_IDW_Fusitriton_oregonensis_2019.tif
-ENBS_IDW_Fusitriton_oregonensis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Fusitriton oregonensis\ENBS_IDW_Fusitriton_oregonensis_2021.tif
-ENBS_IDW_Fusitriton_oregonensis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Fusitriton oregonensis\ENBS_IDW_Fusitriton_oregonensis_2022.tif
-ENBS_IDW_Gadus_chalcogrammus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Gadus chalcogrammus\ENBS_IDW_Gadus_chalcogrammus_2010.tif
-ENBS_IDW_Gadus_chalcogrammus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Gadus chalcogrammus\ENBS_IDW_Gadus_chalcogrammus_2017.tif
-ENBS_IDW_Gadus_chalcogrammus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Gadus chalcogrammus\ENBS_IDW_Gadus_chalcogrammus_2019.tif
-ENBS_IDW_Gadus_chalcogrammus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Gadus chalcogrammus\ENBS_IDW_Gadus_chalcogrammus_2021.tif
-ENBS_IDW_Gadus_chalcogrammus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Gadus chalcogrammus\ENBS_IDW_Gadus_chalcogrammus_2022.tif
-ENBS_IDW_Gadus_macrocephalus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Gadus macrocephalus\ENBS_IDW_Gadus_macrocephalus_2010.tif
-ENBS_IDW_Gadus_macrocephalus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Gadus macrocephalus\ENBS_IDW_Gadus_macrocephalus_2017.tif
-ENBS_IDW_Gadus_macrocephalus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Gadus macrocephalus\ENBS_IDW_Gadus_macrocephalus_2019.tif
-ENBS_IDW_Gadus_macrocephalus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Gadus macrocephalus\ENBS_IDW_Gadus_macrocephalus_2021.tif
-ENBS_IDW_Gadus_macrocephalus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Gadus macrocephalus\ENBS_IDW_Gadus_macrocephalus_2022.tif
-ENBS_IDW_Glyptocephalus_zachirus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Glyptocephalus zachirus\ENBS_IDW_Glyptocephalus_zachirus_2010.tif
-ENBS_IDW_Glyptocephalus_zachirus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Glyptocephalus zachirus\ENBS_IDW_Glyptocephalus_zachirus_2017.tif
-ENBS_IDW_Glyptocephalus_zachirus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Glyptocephalus zachirus\ENBS_IDW_Glyptocephalus_zachirus_2019.tif
-ENBS_IDW_Glyptocephalus_zachirus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Glyptocephalus zachirus\ENBS_IDW_Glyptocephalus_zachirus_2021.tif
-ENBS_IDW_Glyptocephalus_zachirus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Glyptocephalus zachirus\ENBS_IDW_Glyptocephalus_zachirus_2022.tif
-ENBS_IDW_Gorgonocephalus_eucnemis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Gorgonocephalus eucnemis\ENBS_IDW_Gorgonocephalus_eucnemis_2010.tif
-ENBS_IDW_Gorgonocephalus_eucnemis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Gorgonocephalus eucnemis\ENBS_IDW_Gorgonocephalus_eucnemis_2017.tif
-ENBS_IDW_Gorgonocephalus_eucnemis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Gorgonocephalus eucnemis\ENBS_IDW_Gorgonocephalus_eucnemis_2019.tif
-ENBS_IDW_Gorgonocephalus_eucnemis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Gorgonocephalus eucnemis\ENBS_IDW_Gorgonocephalus_eucnemis_2021.tif
-ENBS_IDW_Gorgonocephalus_eucnemis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Gorgonocephalus eucnemis\ENBS_IDW_Gorgonocephalus_eucnemis_2022.tif
-ENBS_IDW_Gymnocanthus_pistilliger_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Gymnocanthus pistilliger\ENBS_IDW_Gymnocanthus_pistilliger_2010.tif
-ENBS_IDW_Gymnocanthus_pistilliger_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Gymnocanthus pistilliger\ENBS_IDW_Gymnocanthus_pistilliger_2017.tif
-ENBS_IDW_Gymnocanthus_pistilliger_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Gymnocanthus pistilliger\ENBS_IDW_Gymnocanthus_pistilliger_2019.tif
-ENBS_IDW_Gymnocanthus_pistilliger_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Gymnocanthus pistilliger\ENBS_IDW_Gymnocanthus_pistilliger_2021.tif
-ENBS_IDW_Gymnocanthus_pistilliger_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Gymnocanthus pistilliger\ENBS_IDW_Gymnocanthus_pistilliger_2022.tif
-ENBS_IDW_Hemilepidotus_jordani_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hemilepidotus jordani\ENBS_IDW_Hemilepidotus_jordani_2010.tif
-ENBS_IDW_Hemilepidotus_jordani_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hemilepidotus jordani\ENBS_IDW_Hemilepidotus_jordani_2017.tif
-ENBS_IDW_Hemilepidotus_jordani_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hemilepidotus jordani\ENBS_IDW_Hemilepidotus_jordani_2019.tif
-ENBS_IDW_Hemilepidotus_jordani_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hemilepidotus jordani\ENBS_IDW_Hemilepidotus_jordani_2021.tif
-ENBS_IDW_Hemilepidotus_jordani_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hemilepidotus jordani\ENBS_IDW_Hemilepidotus_jordani_2022.tif
-ENBS_IDW_Hemilepidotus_papilio_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hemilepidotus papilio\ENBS_IDW_Hemilepidotus_papilio_2010.tif
-ENBS_IDW_Hemilepidotus_papilio_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hemilepidotus papilio\ENBS_IDW_Hemilepidotus_papilio_2017.tif
-ENBS_IDW_Hemilepidotus_papilio_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hemilepidotus papilio\ENBS_IDW_Hemilepidotus_papilio_2019.tif
-ENBS_IDW_Hemilepidotus_papilio_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hemilepidotus papilio\ENBS_IDW_Hemilepidotus_papilio_2021.tif
-ENBS_IDW_Hemilepidotus_papilio_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hemilepidotus papilio\ENBS_IDW_Hemilepidotus_papilio_2022.tif
-ENBS_IDW_Hemitripterus_bolini_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hemitripterus bolini\ENBS_IDW_Hemitripterus_bolini_2010.tif
-ENBS_IDW_Hemitripterus_bolini_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hemitripterus bolini\ENBS_IDW_Hemitripterus_bolini_2017.tif
-ENBS_IDW_Hemitripterus_bolini_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hemitripterus bolini\ENBS_IDW_Hemitripterus_bolini_2019.tif
-ENBS_IDW_Hemitripterus_bolini_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hemitripterus bolini\ENBS_IDW_Hemitripterus_bolini_2021.tif
-ENBS_IDW_Hemitripterus_bolini_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hemitripterus bolini\ENBS_IDW_Hemitripterus_bolini_2022.tif
-ENBS_IDW_Hexagrammos_stelleri_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hexagrammos stelleri\ENBS_IDW_Hexagrammos_stelleri_2010.tif
-ENBS_IDW_Hexagrammos_stelleri_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hexagrammos stelleri\ENBS_IDW_Hexagrammos_stelleri_2017.tif
-ENBS_IDW_Hexagrammos_stelleri_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hexagrammos stelleri\ENBS_IDW_Hexagrammos_stelleri_2019.tif
-ENBS_IDW_Hexagrammos_stelleri_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hexagrammos stelleri\ENBS_IDW_Hexagrammos_stelleri_2021.tif
-ENBS_IDW_Hexagrammos_stelleri_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hexagrammos stelleri\ENBS_IDW_Hexagrammos_stelleri_2022.tif
-ENBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hippoglossoides elassodon and H robustus\ENBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2010.tif
-ENBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hippoglossoides elassodon and H robustus\ENBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2017.tif
-ENBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hippoglossoides elassodon and H robustus\ENBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2019.tif
-ENBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hippoglossoides elassodon and H robustus\ENBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2021.tif
-ENBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hippoglossoides elassodon and H robustus\ENBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2022.tif
-ENBS_IDW_Hippoglossus_stenolepis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hippoglossus stenolepis\ENBS_IDW_Hippoglossus_stenolepis_2010.tif
-ENBS_IDW_Hippoglossus_stenolepis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hippoglossus stenolepis\ENBS_IDW_Hippoglossus_stenolepis_2017.tif
-ENBS_IDW_Hippoglossus_stenolepis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hippoglossus stenolepis\ENBS_IDW_Hippoglossus_stenolepis_2019.tif
-ENBS_IDW_Hippoglossus_stenolepis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hippoglossus stenolepis\ENBS_IDW_Hippoglossus_stenolepis_2021.tif
-ENBS_IDW_Hippoglossus_stenolepis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hippoglossus stenolepis\ENBS_IDW_Hippoglossus_stenolepis_2022.tif
-ENBS_IDW_Hyas_coarctatus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hyas coarctatus\ENBS_IDW_Hyas_coarctatus_2010.tif
-ENBS_IDW_Hyas_coarctatus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hyas coarctatus\ENBS_IDW_Hyas_coarctatus_2017.tif
-ENBS_IDW_Hyas_coarctatus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hyas coarctatus\ENBS_IDW_Hyas_coarctatus_2019.tif
-ENBS_IDW_Hyas_coarctatus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hyas coarctatus\ENBS_IDW_Hyas_coarctatus_2021.tif
-ENBS_IDW_Hyas_coarctatus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hyas coarctatus\ENBS_IDW_Hyas_coarctatus_2022.tif
-ENBS_IDW_Hyas_lyratus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hyas lyratus\ENBS_IDW_Hyas_lyratus_2010.tif
-ENBS_IDW_Hyas_lyratus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hyas lyratus\ENBS_IDW_Hyas_lyratus_2017.tif
-ENBS_IDW_Hyas_lyratus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hyas lyratus\ENBS_IDW_Hyas_lyratus_2019.tif
-ENBS_IDW_Hyas_lyratus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hyas lyratus\ENBS_IDW_Hyas_lyratus_2021.tif
-ENBS_IDW_Hyas_lyratus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Hyas lyratus\ENBS_IDW_Hyas_lyratus_2022.tif
-ENBS_IDW_Icelus_spiniger_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Icelus spiniger\ENBS_IDW_Icelus_spiniger_2010.tif
-ENBS_IDW_Icelus_spiniger_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Icelus spiniger\ENBS_IDW_Icelus_spiniger_2017.tif
-ENBS_IDW_Icelus_spiniger_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Icelus spiniger\ENBS_IDW_Icelus_spiniger_2019.tif
-ENBS_IDW_Icelus_spiniger_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Icelus spiniger\ENBS_IDW_Icelus_spiniger_2021.tif
-ENBS_IDW_Icelus_spiniger_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Icelus spiniger\ENBS_IDW_Icelus_spiniger_2022.tif
-ENBS_IDW_Labidochirus_splendescens_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Labidochirus splendescens\ENBS_IDW_Labidochirus_splendescens_2010.tif
-ENBS_IDW_Labidochirus_splendescens_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Labidochirus splendescens\ENBS_IDW_Labidochirus_splendescens_2017.tif
-ENBS_IDW_Labidochirus_splendescens_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Labidochirus splendescens\ENBS_IDW_Labidochirus_splendescens_2019.tif
-ENBS_IDW_Labidochirus_splendescens_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Labidochirus splendescens\ENBS_IDW_Labidochirus_splendescens_2021.tif
-ENBS_IDW_Labidochirus_splendescens_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Labidochirus splendescens\ENBS_IDW_Labidochirus_splendescens_2022.tif
-ENBS_IDW_Lepidopsetta_sp_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lepidopsetta sp\ENBS_IDW_Lepidopsetta_sp_2010.tif
-ENBS_IDW_Lepidopsetta_sp_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lepidopsetta sp\ENBS_IDW_Lepidopsetta_sp_2017.tif
-ENBS_IDW_Lepidopsetta_sp_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lepidopsetta sp\ENBS_IDW_Lepidopsetta_sp_2019.tif
-ENBS_IDW_Lepidopsetta_sp_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lepidopsetta sp\ENBS_IDW_Lepidopsetta_sp_2021.tif
-ENBS_IDW_Lepidopsetta_sp_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lepidopsetta sp\ENBS_IDW_Lepidopsetta_sp_2022.tif
-ENBS_IDW_Leptasterias_arctica_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Leptasterias arctica\ENBS_IDW_Leptasterias_arctica_2010.tif
-ENBS_IDW_Leptasterias_arctica_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Leptasterias arctica\ENBS_IDW_Leptasterias_arctica_2017.tif
-ENBS_IDW_Leptasterias_arctica_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Leptasterias arctica\ENBS_IDW_Leptasterias_arctica_2019.tif
-ENBS_IDW_Leptasterias_arctica_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Leptasterias arctica\ENBS_IDW_Leptasterias_arctica_2021.tif
-ENBS_IDW_Leptasterias_arctica_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Leptasterias arctica\ENBS_IDW_Leptasterias_arctica_2022.tif
-ENBS_IDW_Leptasterias_groenlandica_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Leptasterias groenlandica\ENBS_IDW_Leptasterias_groenlandica_2010.tif
-ENBS_IDW_Leptasterias_groenlandica_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Leptasterias groenlandica\ENBS_IDW_Leptasterias_groenlandica_2017.tif
-ENBS_IDW_Leptasterias_groenlandica_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Leptasterias groenlandica\ENBS_IDW_Leptasterias_groenlandica_2019.tif
-ENBS_IDW_Leptasterias_groenlandica_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Leptasterias groenlandica\ENBS_IDW_Leptasterias_groenlandica_2021.tif
-ENBS_IDW_Leptasterias_groenlandica_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Leptasterias groenlandica\ENBS_IDW_Leptasterias_groenlandica_2022.tif
-ENBS_IDW_Leptasterias_Hexasterias_polaris_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Leptasterias Hexasterias polaris\ENBS_IDW_Leptasterias_Hexasterias_polaris_2010.tif
-ENBS_IDW_Leptasterias_Hexasterias_polaris_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Leptasterias Hexasterias polaris\ENBS_IDW_Leptasterias_Hexasterias_polaris_2017.tif
-ENBS_IDW_Leptasterias_Hexasterias_polaris_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Leptasterias Hexasterias polaris\ENBS_IDW_Leptasterias_Hexasterias_polaris_2019.tif
-ENBS_IDW_Leptasterias_Hexasterias_polaris_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Leptasterias Hexasterias polaris\ENBS_IDW_Leptasterias_Hexasterias_polaris_2021.tif
-ENBS_IDW_Leptasterias_Hexasterias_polaris_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Leptasterias Hexasterias polaris\ENBS_IDW_Leptasterias_Hexasterias_polaris_2022.tif
-ENBS_IDW_Lethasterias_nanimensis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lethasterias nanimensis\ENBS_IDW_Lethasterias_nanimensis_2010.tif
-ENBS_IDW_Lethasterias_nanimensis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lethasterias nanimensis\ENBS_IDW_Lethasterias_nanimensis_2017.tif
-ENBS_IDW_Lethasterias_nanimensis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lethasterias nanimensis\ENBS_IDW_Lethasterias_nanimensis_2019.tif
-ENBS_IDW_Lethasterias_nanimensis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lethasterias nanimensis\ENBS_IDW_Lethasterias_nanimensis_2021.tif
-ENBS_IDW_Lethasterias_nanimensis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lethasterias nanimensis\ENBS_IDW_Lethasterias_nanimensis_2022.tif
-ENBS_IDW_Limanda_aspera_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Limanda aspera\ENBS_IDW_Limanda_aspera_2010.tif
-ENBS_IDW_Limanda_aspera_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Limanda aspera\ENBS_IDW_Limanda_aspera_2017.tif
-ENBS_IDW_Limanda_aspera_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Limanda aspera\ENBS_IDW_Limanda_aspera_2019.tif
-ENBS_IDW_Limanda_aspera_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Limanda aspera\ENBS_IDW_Limanda_aspera_2021.tif
-ENBS_IDW_Limanda_aspera_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Limanda aspera\ENBS_IDW_Limanda_aspera_2022.tif
-ENBS_IDW_Limanda_proboscidea_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Limanda proboscidea\ENBS_IDW_Limanda_proboscidea_2010.tif
-ENBS_IDW_Limanda_proboscidea_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Limanda proboscidea\ENBS_IDW_Limanda_proboscidea_2017.tif
-ENBS_IDW_Limanda_proboscidea_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Limanda proboscidea\ENBS_IDW_Limanda_proboscidea_2019.tif
-ENBS_IDW_Limanda_proboscidea_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Limanda proboscidea\ENBS_IDW_Limanda_proboscidea_2021.tif
-ENBS_IDW_Limanda_proboscidea_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Limanda proboscidea\ENBS_IDW_Limanda_proboscidea_2022.tif
-ENBS_IDW_Limanda_sakhalinensis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:10:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Limanda sakhalinensis\ENBS_IDW_Limanda_sakhalinensis_2010.tif
-ENBS_IDW_Limanda_sakhalinensis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Limanda sakhalinensis\ENBS_IDW_Limanda_sakhalinensis_2017.tif
-ENBS_IDW_Limanda_sakhalinensis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Limanda sakhalinensis\ENBS_IDW_Limanda_sakhalinensis_2019.tif
-ENBS_IDW_Limanda_sakhalinensis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Limanda sakhalinensis\ENBS_IDW_Limanda_sakhalinensis_2021.tif
-ENBS_IDW_Limanda_sakhalinensis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Limanda sakhalinensis\ENBS_IDW_Limanda_sakhalinensis_2022.tif
-ENBS_IDW_Liparis_gibbus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Liparis gibbus\ENBS_IDW_Liparis_gibbus_2010.tif
-ENBS_IDW_Liparis_gibbus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Liparis gibbus\ENBS_IDW_Liparis_gibbus_2017.tif
-ENBS_IDW_Liparis_gibbus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Liparis gibbus\ENBS_IDW_Liparis_gibbus_2019.tif
-ENBS_IDW_Liparis_gibbus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Liparis gibbus\ENBS_IDW_Liparis_gibbus_2021.tif
-ENBS_IDW_Liparis_gibbus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Liparis gibbus\ENBS_IDW_Liparis_gibbus_2022.tif
-ENBS_IDW_Lumpenus_fabricii_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lumpenus fabricii\ENBS_IDW_Lumpenus_fabricii_2010.tif
-ENBS_IDW_Lumpenus_fabricii_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lumpenus fabricii\ENBS_IDW_Lumpenus_fabricii_2017.tif
-ENBS_IDW_Lumpenus_fabricii_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lumpenus fabricii\ENBS_IDW_Lumpenus_fabricii_2019.tif
-ENBS_IDW_Lumpenus_fabricii_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lumpenus fabricii\ENBS_IDW_Lumpenus_fabricii_2021.tif
-ENBS_IDW_Lumpenus_fabricii_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lumpenus fabricii\ENBS_IDW_Lumpenus_fabricii_2022.tif
-ENBS_IDW_Lycodes_brevipes_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lycodes brevipes\ENBS_IDW_Lycodes_brevipes_2010.tif
-ENBS_IDW_Lycodes_brevipes_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lycodes brevipes\ENBS_IDW_Lycodes_brevipes_2017.tif
-ENBS_IDW_Lycodes_brevipes_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lycodes brevipes\ENBS_IDW_Lycodes_brevipes_2019.tif
-ENBS_IDW_Lycodes_brevipes_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lycodes brevipes\ENBS_IDW_Lycodes_brevipes_2021.tif
-ENBS_IDW_Lycodes_brevipes_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lycodes brevipes\ENBS_IDW_Lycodes_brevipes_2022.tif
-ENBS_IDW_Lycodes_palearis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lycodes palearis\ENBS_IDW_Lycodes_palearis_2010.tif
-ENBS_IDW_Lycodes_palearis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lycodes palearis\ENBS_IDW_Lycodes_palearis_2017.tif
-ENBS_IDW_Lycodes_palearis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lycodes palearis\ENBS_IDW_Lycodes_palearis_2019.tif
-ENBS_IDW_Lycodes_palearis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lycodes palearis\ENBS_IDW_Lycodes_palearis_2021.tif
-ENBS_IDW_Lycodes_palearis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lycodes palearis\ENBS_IDW_Lycodes_palearis_2022.tif
-ENBS_IDW_Lycodes_raridens_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lycodes raridens\ENBS_IDW_Lycodes_raridens_2010.tif
-ENBS_IDW_Lycodes_raridens_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lycodes raridens\ENBS_IDW_Lycodes_raridens_2017.tif
-ENBS_IDW_Lycodes_raridens_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lycodes raridens\ENBS_IDW_Lycodes_raridens_2019.tif
-ENBS_IDW_Lycodes_raridens_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lycodes raridens\ENBS_IDW_Lycodes_raridens_2021.tif
-ENBS_IDW_Lycodes_raridens_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lycodes raridens\ENBS_IDW_Lycodes_raridens_2022.tif
-ENBS_IDW_Lycodes_turneri_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lycodes turneri\ENBS_IDW_Lycodes_turneri_2010.tif
-ENBS_IDW_Lycodes_turneri_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lycodes turneri\ENBS_IDW_Lycodes_turneri_2017.tif
-ENBS_IDW_Lycodes_turneri_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lycodes turneri\ENBS_IDW_Lycodes_turneri_2019.tif
-ENBS_IDW_Lycodes_turneri_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lycodes turneri\ENBS_IDW_Lycodes_turneri_2021.tif
-ENBS_IDW_Lycodes_turneri_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Lycodes turneri\ENBS_IDW_Lycodes_turneri_2022.tif
-ENBS_IDW_Mactromeris_polynyma_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Mactromeris polynyma\ENBS_IDW_Mactromeris_polynyma_2010.tif
-ENBS_IDW_Mactromeris_polynyma_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Mactromeris polynyma\ENBS_IDW_Mactromeris_polynyma_2017.tif
-ENBS_IDW_Mactromeris_polynyma_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Mactromeris polynyma\ENBS_IDW_Mactromeris_polynyma_2019.tif
-ENBS_IDW_Mactromeris_polynyma_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Mactromeris polynyma\ENBS_IDW_Mactromeris_polynyma_2021.tif
-ENBS_IDW_Mactromeris_polynyma_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Mactromeris polynyma\ENBS_IDW_Mactromeris_polynyma_2022.tif
-ENBS_IDW_Mallotus_villosus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Mallotus villosus\ENBS_IDW_Mallotus_villosus_2010.tif
-ENBS_IDW_Mallotus_villosus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Mallotus villosus\ENBS_IDW_Mallotus_villosus_2017.tif
-ENBS_IDW_Mallotus_villosus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Mallotus villosus\ENBS_IDW_Mallotus_villosus_2019.tif
-ENBS_IDW_Mallotus_villosus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Mallotus villosus\ENBS_IDW_Mallotus_villosus_2021.tif
-ENBS_IDW_Mallotus_villosus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Mallotus villosus\ENBS_IDW_Mallotus_villosus_2022.tif
-ENBS_IDW_Myoxocephalus_jaok_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Myoxocephalus jaok\ENBS_IDW_Myoxocephalus_jaok_2010.tif
-ENBS_IDW_Myoxocephalus_jaok_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Myoxocephalus jaok\ENBS_IDW_Myoxocephalus_jaok_2017.tif
-ENBS_IDW_Myoxocephalus_jaok_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Myoxocephalus jaok\ENBS_IDW_Myoxocephalus_jaok_2019.tif
-ENBS_IDW_Myoxocephalus_jaok_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Myoxocephalus jaok\ENBS_IDW_Myoxocephalus_jaok_2021.tif
-ENBS_IDW_Myoxocephalus_jaok_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Myoxocephalus jaok\ENBS_IDW_Myoxocephalus_jaok_2022.tif
-ENBS_IDW_Myoxocephalus_polyacanthocephalus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Myoxocephalus polyacanthocephalus\ENBS_IDW_Myoxocephalus_polyacanthocephalus_2010.tif
-ENBS_IDW_Myoxocephalus_polyacanthocephalus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Myoxocephalus polyacanthocephalus\ENBS_IDW_Myoxocephalus_polyacanthocephalus_2017.tif
-ENBS_IDW_Myoxocephalus_polyacanthocephalus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Myoxocephalus polyacanthocephalus\ENBS_IDW_Myoxocephalus_polyacanthocephalus_2019.tif
-ENBS_IDW_Myoxocephalus_polyacanthocephalus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Myoxocephalus polyacanthocephalus\ENBS_IDW_Myoxocephalus_polyacanthocephalus_2021.tif
-ENBS_IDW_Myoxocephalus_polyacanthocephalus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Myoxocephalus polyacanthocephalus\ENBS_IDW_Myoxocephalus_polyacanthocephalus_2022.tif
-ENBS_IDW_Myoxocephalus_scorpius_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Myoxocephalus scorpius\ENBS_IDW_Myoxocephalus_scorpius_2010.tif
-ENBS_IDW_Myoxocephalus_scorpius_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Myoxocephalus scorpius\ENBS_IDW_Myoxocephalus_scorpius_2017.tif
-ENBS_IDW_Myoxocephalus_scorpius_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Myoxocephalus scorpius\ENBS_IDW_Myoxocephalus_scorpius_2019.tif
-ENBS_IDW_Myoxocephalus_scorpius_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Myoxocephalus scorpius\ENBS_IDW_Myoxocephalus_scorpius_2021.tif
-ENBS_IDW_Myoxocephalus_scorpius_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Myoxocephalus scorpius\ENBS_IDW_Myoxocephalus_scorpius_2022.tif
-ENBS_IDW_Neptunea_borealis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea borealis\ENBS_IDW_Neptunea_borealis_2010.tif
-ENBS_IDW_Neptunea_borealis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea borealis\ENBS_IDW_Neptunea_borealis_2017.tif
-ENBS_IDW_Neptunea_borealis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea borealis\ENBS_IDW_Neptunea_borealis_2019.tif
-ENBS_IDW_Neptunea_borealis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea borealis\ENBS_IDW_Neptunea_borealis_2021.tif
-ENBS_IDW_Neptunea_borealis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea borealis\ENBS_IDW_Neptunea_borealis_2022.tif
-ENBS_IDW_Neptunea_heros_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea heros\ENBS_IDW_Neptunea_heros_2010.tif
-ENBS_IDW_Neptunea_heros_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea heros\ENBS_IDW_Neptunea_heros_2017.tif
-ENBS_IDW_Neptunea_heros_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea heros\ENBS_IDW_Neptunea_heros_2019.tif
-ENBS_IDW_Neptunea_heros_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea heros\ENBS_IDW_Neptunea_heros_2021.tif
-ENBS_IDW_Neptunea_heros_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea heros\ENBS_IDW_Neptunea_heros_2022.tif
-ENBS_IDW_Neptunea_lyrata_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea lyrata\ENBS_IDW_Neptunea_lyrata_2010.tif
-ENBS_IDW_Neptunea_lyrata_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea lyrata\ENBS_IDW_Neptunea_lyrata_2017.tif
-ENBS_IDW_Neptunea_lyrata_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea lyrata\ENBS_IDW_Neptunea_lyrata_2019.tif
-ENBS_IDW_Neptunea_lyrata_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea lyrata\ENBS_IDW_Neptunea_lyrata_2021.tif
-ENBS_IDW_Neptunea_lyrata_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea lyrata\ENBS_IDW_Neptunea_lyrata_2022.tif
-ENBS_IDW_Neptunea_pribiloffensis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea pribiloffensis\ENBS_IDW_Neptunea_pribiloffensis_2010.tif
-ENBS_IDW_Neptunea_pribiloffensis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea pribiloffensis\ENBS_IDW_Neptunea_pribiloffensis_2017.tif
-ENBS_IDW_Neptunea_pribiloffensis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea pribiloffensis\ENBS_IDW_Neptunea_pribiloffensis_2019.tif
-ENBS_IDW_Neptunea_pribiloffensis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea pribiloffensis\ENBS_IDW_Neptunea_pribiloffensis_2021.tif
-ENBS_IDW_Neptunea_pribiloffensis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea pribiloffensis\ENBS_IDW_Neptunea_pribiloffensis_2022.tif
-ENBS_IDW_Neptunea_ventricosa_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea ventricosa\ENBS_IDW_Neptunea_ventricosa_2010.tif
-ENBS_IDW_Neptunea_ventricosa_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea ventricosa\ENBS_IDW_Neptunea_ventricosa_2017.tif
-ENBS_IDW_Neptunea_ventricosa_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea ventricosa\ENBS_IDW_Neptunea_ventricosa_2019.tif
-ENBS_IDW_Neptunea_ventricosa_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea ventricosa\ENBS_IDW_Neptunea_ventricosa_2021.tif
-ENBS_IDW_Neptunea_ventricosa_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Neptunea ventricosa\ENBS_IDW_Neptunea_ventricosa_2022.tif
-ENBS_IDW_Occella_dodecaedron_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Occella dodecaedron\ENBS_IDW_Occella_dodecaedron_2010.tif
-ENBS_IDW_Occella_dodecaedron_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Occella dodecaedron\ENBS_IDW_Occella_dodecaedron_2017.tif
-ENBS_IDW_Occella_dodecaedron_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Occella dodecaedron\ENBS_IDW_Occella_dodecaedron_2019.tif
-ENBS_IDW_Occella_dodecaedron_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Occella dodecaedron\ENBS_IDW_Occella_dodecaedron_2021.tif
-ENBS_IDW_Occella_dodecaedron_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Occella dodecaedron\ENBS_IDW_Occella_dodecaedron_2022.tif
-ENBS_IDW_Ophiura_sarsii_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Ophiura sarsii\ENBS_IDW_Ophiura_sarsii_2010.tif
-ENBS_IDW_Ophiura_sarsii_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Ophiura sarsii\ENBS_IDW_Ophiura_sarsii_2017.tif
-ENBS_IDW_Ophiura_sarsii_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Ophiura sarsii\ENBS_IDW_Ophiura_sarsii_2019.tif
-ENBS_IDW_Ophiura_sarsii_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Ophiura sarsii\ENBS_IDW_Ophiura_sarsii_2021.tif
-ENBS_IDW_Ophiura_sarsii_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Ophiura sarsii\ENBS_IDW_Ophiura_sarsii_2022.tif
-ENBS_IDW_Oregonia_gracilis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Oregonia gracilis\ENBS_IDW_Oregonia_gracilis_2010.tif
-ENBS_IDW_Oregonia_gracilis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Oregonia gracilis\ENBS_IDW_Oregonia_gracilis_2017.tif
-ENBS_IDW_Oregonia_gracilis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Oregonia gracilis\ENBS_IDW_Oregonia_gracilis_2019.tif
-ENBS_IDW_Oregonia_gracilis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Oregonia gracilis\ENBS_IDW_Oregonia_gracilis_2021.tif
-ENBS_IDW_Oregonia_gracilis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Oregonia gracilis\ENBS_IDW_Oregonia_gracilis_2022.tif
-ENBS_IDW_Osmerus_mordax_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Osmerus mordax\ENBS_IDW_Osmerus_mordax_2010.tif
-ENBS_IDW_Osmerus_mordax_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Osmerus mordax\ENBS_IDW_Osmerus_mordax_2017.tif
-ENBS_IDW_Osmerus_mordax_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Osmerus mordax\ENBS_IDW_Osmerus_mordax_2019.tif
-ENBS_IDW_Osmerus_mordax_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Osmerus mordax\ENBS_IDW_Osmerus_mordax_2021.tif
-ENBS_IDW_Osmerus_mordax_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Osmerus mordax\ENBS_IDW_Osmerus_mordax_2022.tif
-ENBS_IDW_Pagurus_aleuticus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus aleuticus\ENBS_IDW_Pagurus_aleuticus_2010.tif
-ENBS_IDW_Pagurus_aleuticus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus aleuticus\ENBS_IDW_Pagurus_aleuticus_2017.tif
-ENBS_IDW_Pagurus_aleuticus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus aleuticus\ENBS_IDW_Pagurus_aleuticus_2019.tif
-ENBS_IDW_Pagurus_aleuticus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus aleuticus\ENBS_IDW_Pagurus_aleuticus_2021.tif
-ENBS_IDW_Pagurus_aleuticus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus aleuticus\ENBS_IDW_Pagurus_aleuticus_2022.tif
-ENBS_IDW_Pagurus_capillatus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus capillatus\ENBS_IDW_Pagurus_capillatus_2010.tif
-ENBS_IDW_Pagurus_capillatus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus capillatus\ENBS_IDW_Pagurus_capillatus_2017.tif
-ENBS_IDW_Pagurus_capillatus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus capillatus\ENBS_IDW_Pagurus_capillatus_2019.tif
-ENBS_IDW_Pagurus_capillatus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus capillatus\ENBS_IDW_Pagurus_capillatus_2021.tif
-ENBS_IDW_Pagurus_capillatus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus capillatus\ENBS_IDW_Pagurus_capillatus_2022.tif
-ENBS_IDW_Pagurus_ochotensis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus ochotensis\ENBS_IDW_Pagurus_ochotensis_2010.tif
-ENBS_IDW_Pagurus_ochotensis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus ochotensis\ENBS_IDW_Pagurus_ochotensis_2017.tif
-ENBS_IDW_Pagurus_ochotensis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus ochotensis\ENBS_IDW_Pagurus_ochotensis_2019.tif
-ENBS_IDW_Pagurus_ochotensis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus ochotensis\ENBS_IDW_Pagurus_ochotensis_2021.tif
-ENBS_IDW_Pagurus_ochotensis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus ochotensis\ENBS_IDW_Pagurus_ochotensis_2022.tif
-ENBS_IDW_Pagurus_rathbuni_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus rathbuni\ENBS_IDW_Pagurus_rathbuni_2010.tif
-ENBS_IDW_Pagurus_rathbuni_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus rathbuni\ENBS_IDW_Pagurus_rathbuni_2017.tif
-ENBS_IDW_Pagurus_rathbuni_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus rathbuni\ENBS_IDW_Pagurus_rathbuni_2019.tif
-ENBS_IDW_Pagurus_rathbuni_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus rathbuni\ENBS_IDW_Pagurus_rathbuni_2021.tif
-ENBS_IDW_Pagurus_rathbuni_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus rathbuni\ENBS_IDW_Pagurus_rathbuni_2022.tif
-ENBS_IDW_Pagurus_trigonocheirus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus trigonocheirus\ENBS_IDW_Pagurus_trigonocheirus_2010.tif
-ENBS_IDW_Pagurus_trigonocheirus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus trigonocheirus\ENBS_IDW_Pagurus_trigonocheirus_2017.tif
-ENBS_IDW_Pagurus_trigonocheirus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus trigonocheirus\ENBS_IDW_Pagurus_trigonocheirus_2019.tif
-ENBS_IDW_Pagurus_trigonocheirus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus trigonocheirus\ENBS_IDW_Pagurus_trigonocheirus_2021.tif
-ENBS_IDW_Pagurus_trigonocheirus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pagurus trigonocheirus\ENBS_IDW_Pagurus_trigonocheirus_2022.tif
-ENBS_IDW_Pallasina_barbata_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pallasina barbata\ENBS_IDW_Pallasina_barbata_2010.tif
-ENBS_IDW_Pallasina_barbata_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pallasina barbata\ENBS_IDW_Pallasina_barbata_2017.tif
-ENBS_IDW_Pallasina_barbata_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pallasina barbata\ENBS_IDW_Pallasina_barbata_2019.tif
-ENBS_IDW_Pallasina_barbata_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pallasina barbata\ENBS_IDW_Pallasina_barbata_2021.tif
-ENBS_IDW_Pallasina_barbata_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pallasina barbata\ENBS_IDW_Pallasina_barbata_2022.tif
-ENBS_IDW_Pandalus_eous_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pandalus eous\ENBS_IDW_Pandalus_eous_2010.tif
-ENBS_IDW_Pandalus_eous_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pandalus eous\ENBS_IDW_Pandalus_eous_2017.tif
-ENBS_IDW_Pandalus_eous_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pandalus eous\ENBS_IDW_Pandalus_eous_2019.tif
-ENBS_IDW_Pandalus_eous_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pandalus eous\ENBS_IDW_Pandalus_eous_2021.tif
-ENBS_IDW_Pandalus_eous_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pandalus eous\ENBS_IDW_Pandalus_eous_2022.tif
-ENBS_IDW_Pandalus_goniurus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pandalus goniurus\ENBS_IDW_Pandalus_goniurus_2010.tif
-ENBS_IDW_Pandalus_goniurus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pandalus goniurus\ENBS_IDW_Pandalus_goniurus_2017.tif
-ENBS_IDW_Pandalus_goniurus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pandalus goniurus\ENBS_IDW_Pandalus_goniurus_2019.tif
-ENBS_IDW_Pandalus_goniurus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pandalus goniurus\ENBS_IDW_Pandalus_goniurus_2021.tif
-ENBS_IDW_Pandalus_goniurus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pandalus goniurus\ENBS_IDW_Pandalus_goniurus_2022.tif
-ENBS_IDW_Paralithodes_camtschaticus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Paralithodes camtschaticus\ENBS_IDW_Paralithodes_camtschaticus_2010.tif
-ENBS_IDW_Paralithodes_camtschaticus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Paralithodes camtschaticus\ENBS_IDW_Paralithodes_camtschaticus_2017.tif
-ENBS_IDW_Paralithodes_camtschaticus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Paralithodes camtschaticus\ENBS_IDW_Paralithodes_camtschaticus_2019.tif
-ENBS_IDW_Paralithodes_camtschaticus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Paralithodes camtschaticus\ENBS_IDW_Paralithodes_camtschaticus_2021.tif
-ENBS_IDW_Paralithodes_camtschaticus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Paralithodes camtschaticus\ENBS_IDW_Paralithodes_camtschaticus_2022.tif
-ENBS_IDW_Paralithodes_platypus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Paralithodes platypus\ENBS_IDW_Paralithodes_platypus_2010.tif
-ENBS_IDW_Paralithodes_platypus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Paralithodes platypus\ENBS_IDW_Paralithodes_platypus_2017.tif
-ENBS_IDW_Paralithodes_platypus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Paralithodes platypus\ENBS_IDW_Paralithodes_platypus_2019.tif
-ENBS_IDW_Paralithodes_platypus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Paralithodes platypus\ENBS_IDW_Paralithodes_platypus_2021.tif
-ENBS_IDW_Paralithodes_platypus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Paralithodes platypus\ENBS_IDW_Paralithodes_platypus_2022.tif
-ENBS_IDW_Platichthys_stellatus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Platichthys stellatus\ENBS_IDW_Platichthys_stellatus_2010.tif
-ENBS_IDW_Platichthys_stellatus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Platichthys stellatus\ENBS_IDW_Platichthys_stellatus_2017.tif
-ENBS_IDW_Platichthys_stellatus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Platichthys stellatus\ENBS_IDW_Platichthys_stellatus_2019.tif
-ENBS_IDW_Platichthys_stellatus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Platichthys stellatus\ENBS_IDW_Platichthys_stellatus_2021.tif
-ENBS_IDW_Platichthys_stellatus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Platichthys stellatus\ENBS_IDW_Platichthys_stellatus_2022.tif
-ENBS_IDW_Pleuronectes_quadrituberculatus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pleuronectes quadrituberculatus\ENBS_IDW_Pleuronectes_quadrituberculatus_2010.tif
-ENBS_IDW_Pleuronectes_quadrituberculatus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pleuronectes quadrituberculatus\ENBS_IDW_Pleuronectes_quadrituberculatus_2017.tif
-ENBS_IDW_Pleuronectes_quadrituberculatus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pleuronectes quadrituberculatus\ENBS_IDW_Pleuronectes_quadrituberculatus_2019.tif
-ENBS_IDW_Pleuronectes_quadrituberculatus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pleuronectes quadrituberculatus\ENBS_IDW_Pleuronectes_quadrituberculatus_2021.tif
-ENBS_IDW_Pleuronectes_quadrituberculatus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pleuronectes quadrituberculatus\ENBS_IDW_Pleuronectes_quadrituberculatus_2022.tif
-ENBS_IDW_Plicifusus_kroyeri_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Plicifusus kroyeri\ENBS_IDW_Plicifusus_kroyeri_2010.tif
-ENBS_IDW_Plicifusus_kroyeri_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Plicifusus kroyeri\ENBS_IDW_Plicifusus_kroyeri_2017.tif
-ENBS_IDW_Plicifusus_kroyeri_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Plicifusus kroyeri\ENBS_IDW_Plicifusus_kroyeri_2019.tif
-ENBS_IDW_Plicifusus_kroyeri_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Plicifusus kroyeri\ENBS_IDW_Plicifusus_kroyeri_2021.tif
-ENBS_IDW_Plicifusus_kroyeri_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Plicifusus kroyeri\ENBS_IDW_Plicifusus_kroyeri_2022.tif
-ENBS_IDW_Podothecus_accipenserinus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Podothecus accipenserinus\ENBS_IDW_Podothecus_accipenserinus_2010.tif
-ENBS_IDW_Podothecus_accipenserinus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Podothecus accipenserinus\ENBS_IDW_Podothecus_accipenserinus_2017.tif
-ENBS_IDW_Podothecus_accipenserinus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Podothecus accipenserinus\ENBS_IDW_Podothecus_accipenserinus_2019.tif
-ENBS_IDW_Podothecus_accipenserinus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Podothecus accipenserinus\ENBS_IDW_Podothecus_accipenserinus_2021.tif
-ENBS_IDW_Podothecus_accipenserinus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Podothecus accipenserinus\ENBS_IDW_Podothecus_accipenserinus_2022.tif
-ENBS_IDW_Podothecus_veternus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:11:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Podothecus veternus\ENBS_IDW_Podothecus_veternus_2010.tif
-ENBS_IDW_Podothecus_veternus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Podothecus veternus\ENBS_IDW_Podothecus_veternus_2017.tif
-ENBS_IDW_Podothecus_veternus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Podothecus veternus\ENBS_IDW_Podothecus_veternus_2019.tif
-ENBS_IDW_Podothecus_veternus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Podothecus veternus\ENBS_IDW_Podothecus_veternus_2021.tif
-ENBS_IDW_Podothecus_veternus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Podothecus veternus\ENBS_IDW_Podothecus_veternus_2022.tif
-ENBS_IDW_Pteraster_obscurus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pteraster obscurus\ENBS_IDW_Pteraster_obscurus_2010.tif
-ENBS_IDW_Pteraster_obscurus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pteraster obscurus\ENBS_IDW_Pteraster_obscurus_2017.tif
-ENBS_IDW_Pteraster_obscurus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pteraster obscurus\ENBS_IDW_Pteraster_obscurus_2019.tif
-ENBS_IDW_Pteraster_obscurus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pteraster obscurus\ENBS_IDW_Pteraster_obscurus_2021.tif
-ENBS_IDW_Pteraster_obscurus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Pteraster obscurus\ENBS_IDW_Pteraster_obscurus_2022.tif
-ENBS_IDW_Reinhardtius_hippoglossoides_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Reinhardtius hippoglossoides\ENBS_IDW_Reinhardtius_hippoglossoides_2010.tif
-ENBS_IDW_Reinhardtius_hippoglossoides_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Reinhardtius hippoglossoides\ENBS_IDW_Reinhardtius_hippoglossoides_2017.tif
-ENBS_IDW_Reinhardtius_hippoglossoides_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Reinhardtius hippoglossoides\ENBS_IDW_Reinhardtius_hippoglossoides_2019.tif
-ENBS_IDW_Reinhardtius_hippoglossoides_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Reinhardtius hippoglossoides\ENBS_IDW_Reinhardtius_hippoglossoides_2021.tif
-ENBS_IDW_Reinhardtius_hippoglossoides_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Reinhardtius hippoglossoides\ENBS_IDW_Reinhardtius_hippoglossoides_2022.tif
-ENBS_IDW_Sarritor_frenatus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Sarritor frenatus\ENBS_IDW_Sarritor_frenatus_2010.tif
-ENBS_IDW_Sarritor_frenatus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Sarritor frenatus\ENBS_IDW_Sarritor_frenatus_2017.tif
-ENBS_IDW_Sarritor_frenatus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Sarritor frenatus\ENBS_IDW_Sarritor_frenatus_2019.tif
-ENBS_IDW_Sarritor_frenatus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Sarritor frenatus\ENBS_IDW_Sarritor_frenatus_2021.tif
-ENBS_IDW_Sarritor_frenatus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Sarritor frenatus\ENBS_IDW_Sarritor_frenatus_2022.tif
-ENBS_IDW_Sclerocrangon_boreas_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Sclerocrangon boreas\ENBS_IDW_Sclerocrangon_boreas_2010.tif
-ENBS_IDW_Sclerocrangon_boreas_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Sclerocrangon boreas\ENBS_IDW_Sclerocrangon_boreas_2017.tif
-ENBS_IDW_Sclerocrangon_boreas_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Sclerocrangon boreas\ENBS_IDW_Sclerocrangon_boreas_2019.tif
-ENBS_IDW_Sclerocrangon_boreas_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Sclerocrangon boreas\ENBS_IDW_Sclerocrangon_boreas_2021.tif
-ENBS_IDW_Sclerocrangon_boreas_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Sclerocrangon boreas\ENBS_IDW_Sclerocrangon_boreas_2022.tif
-ENBS_IDW_Serripes_notabilis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Serripes notabilis\ENBS_IDW_Serripes_notabilis_2010.tif
-ENBS_IDW_Serripes_notabilis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Serripes notabilis\ENBS_IDW_Serripes_notabilis_2017.tif
-ENBS_IDW_Serripes_notabilis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Serripes notabilis\ENBS_IDW_Serripes_notabilis_2019.tif
-ENBS_IDW_Serripes_notabilis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Serripes notabilis\ENBS_IDW_Serripes_notabilis_2021.tif
-ENBS_IDW_Serripes_notabilis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Serripes notabilis\ENBS_IDW_Serripes_notabilis_2022.tif
-ENBS_IDW_Strongylocentrotus_droebachiensis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Strongylocentrotus droebachiensis\ENBS_IDW_Strongylocentrotus_droebachiensis_2010.tif
-ENBS_IDW_Strongylocentrotus_droebachiensis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Strongylocentrotus droebachiensis\ENBS_IDW_Strongylocentrotus_droebachiensis_2017.tif
-ENBS_IDW_Strongylocentrotus_droebachiensis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Strongylocentrotus droebachiensis\ENBS_IDW_Strongylocentrotus_droebachiensis_2019.tif
-ENBS_IDW_Strongylocentrotus_droebachiensis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Strongylocentrotus droebachiensis\ENBS_IDW_Strongylocentrotus_droebachiensis_2021.tif
-ENBS_IDW_Strongylocentrotus_droebachiensis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Strongylocentrotus droebachiensis\ENBS_IDW_Strongylocentrotus_droebachiensis_2022.tif
-ENBS_IDW_Styela_rustica_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Styela rustica\ENBS_IDW_Styela_rustica_2010.tif
-ENBS_IDW_Styela_rustica_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Styela rustica\ENBS_IDW_Styela_rustica_2017.tif
-ENBS_IDW_Styela_rustica_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Styela rustica\ENBS_IDW_Styela_rustica_2019.tif
-ENBS_IDW_Styela_rustica_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Styela rustica\ENBS_IDW_Styela_rustica_2021.tif
-ENBS_IDW_Styela_rustica_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Styela rustica\ENBS_IDW_Styela_rustica_2022.tif
-ENBS_IDW_Telmessus_cheiragonus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Telmessus cheiragonus\ENBS_IDW_Telmessus_cheiragonus_2010.tif
-ENBS_IDW_Telmessus_cheiragonus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Telmessus cheiragonus\ENBS_IDW_Telmessus_cheiragonus_2017.tif
-ENBS_IDW_Telmessus_cheiragonus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Telmessus cheiragonus\ENBS_IDW_Telmessus_cheiragonus_2019.tif
-ENBS_IDW_Telmessus_cheiragonus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Telmessus cheiragonus\ENBS_IDW_Telmessus_cheiragonus_2021.tif
-ENBS_IDW_Telmessus_cheiragonus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Telmessus cheiragonus\ENBS_IDW_Telmessus_cheiragonus_2022.tif
-ENBS_IDW_Thaleichthys_pacificus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Thaleichthys pacificus\ENBS_IDW_Thaleichthys_pacificus_2010.tif
-ENBS_IDW_Thaleichthys_pacificus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Thaleichthys pacificus\ENBS_IDW_Thaleichthys_pacificus_2017.tif
-ENBS_IDW_Thaleichthys_pacificus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Thaleichthys pacificus\ENBS_IDW_Thaleichthys_pacificus_2019.tif
-ENBS_IDW_Thaleichthys_pacificus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Thaleichthys pacificus\ENBS_IDW_Thaleichthys_pacificus_2021.tif
-ENBS_IDW_Thaleichthys_pacificus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Thaleichthys pacificus\ENBS_IDW_Thaleichthys_pacificus_2022.tif
-ENBS_IDW_Triglops_pingelii_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Triglops pingelii\ENBS_IDW_Triglops_pingelii_2010.tif
-ENBS_IDW_Triglops_pingelii_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Triglops pingelii\ENBS_IDW_Triglops_pingelii_2017.tif
-ENBS_IDW_Triglops_pingelii_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Triglops pingelii\ENBS_IDW_Triglops_pingelii_2019.tif
-ENBS_IDW_Triglops_pingelii_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Triglops pingelii\ENBS_IDW_Triglops_pingelii_2021.tif
-ENBS_IDW_Triglops_pingelii_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\Triglops pingelii\ENBS_IDW_Triglops_pingelii_2022.tif
-ENBS_IDW_Core_Species_Richness_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\_Core Species Richness\ENBS_IDW_Core_Species_Richness_2010.tif
-ENBS_IDW_Core_Species_Richness_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\_Core Species Richness\ENBS_IDW_Core_Species_Richness_2017.tif
-ENBS_IDW_Core_Species_Richness_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\_Core Species Richness\ENBS_IDW_Core_Species_Richness_2019.tif
-ENBS_IDW_Core_Species_Richness_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\_Core Species Richness\ENBS_IDW_Core_Species_Richness_2021.tif
-ENBS_IDW_Core_Species_Richness_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\_Core Species Richness\ENBS_IDW_Core_Species_Richness_2022.tif
-ENBS_IDW_Species_Richness_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\_Species Richness\ENBS_IDW_Species_Richness_2010.tif
-ENBS_IDW_Species_Richness_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\_Species Richness\ENBS_IDW_Species_Richness_2017.tif
-ENBS_IDW_Species_Richness_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\_Species Richness\ENBS_IDW_Species_Richness_2019.tif
-ENBS_IDW_Species_Richness_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\_Species Richness\ENBS_IDW_Species_Richness_2021.tif
-ENBS_IDW_Species_Richness_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\ENBS_IDW\_Species Richness\ENBS_IDW_Species_Richness_2022.tif
-GMEX_IDW_Acanthostracion_quadricornis_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2008.tif
-GMEX_IDW_Acanthostracion_quadricornis_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2009.tif
-GMEX_IDW_Acanthostracion_quadricornis_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2010.tif
-GMEX_IDW_Acanthostracion_quadricornis_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2011.tif
-GMEX_IDW_Acanthostracion_quadricornis_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2012.tif
-GMEX_IDW_Acanthostracion_quadricornis_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2013.tif
-GMEX_IDW_Acanthostracion_quadricornis_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2014.tif
-GMEX_IDW_Acanthostracion_quadricornis_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2015.tif
-GMEX_IDW_Acanthostracion_quadricornis_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2016.tif
-GMEX_IDW_Acanthostracion_quadricornis_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2017.tif
-GMEX_IDW_Acanthostracion_quadricornis_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2018.tif
-GMEX_IDW_Acanthostracion_quadricornis_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2019.tif
-GMEX_IDW_Acanthostracion_quadricornis_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2021.tif
-GMEX_IDW_Acanthostracion_quadricornis_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2022.tif
-GMEX_IDW_Achelous_gibbesii_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2008.tif
-GMEX_IDW_Achelous_gibbesii_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2009.tif
-GMEX_IDW_Achelous_gibbesii_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2010.tif
-GMEX_IDW_Achelous_gibbesii_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2011.tif
-GMEX_IDW_Achelous_gibbesii_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2012.tif
-GMEX_IDW_Achelous_gibbesii_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2013.tif
-GMEX_IDW_Achelous_gibbesii_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2014.tif
-GMEX_IDW_Achelous_gibbesii_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2015.tif
-GMEX_IDW_Achelous_gibbesii_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2016.tif
-GMEX_IDW_Achelous_gibbesii_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2017.tif
-GMEX_IDW_Achelous_gibbesii_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2018.tif
-GMEX_IDW_Achelous_gibbesii_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2019.tif
-GMEX_IDW_Achelous_gibbesii_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2021.tif
-GMEX_IDW_Achelous_gibbesii_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2022.tif
-GMEX_IDW_Achelous_spinicarpus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2008.tif
-GMEX_IDW_Achelous_spinicarpus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2009.tif
-GMEX_IDW_Achelous_spinicarpus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2010.tif
-GMEX_IDW_Achelous_spinicarpus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2011.tif
-GMEX_IDW_Achelous_spinicarpus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2012.tif
-GMEX_IDW_Achelous_spinicarpus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2013.tif
-GMEX_IDW_Achelous_spinicarpus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2014.tif
-GMEX_IDW_Achelous_spinicarpus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2015.tif
-GMEX_IDW_Achelous_spinicarpus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2016.tif
-GMEX_IDW_Achelous_spinicarpus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2017.tif
-GMEX_IDW_Achelous_spinicarpus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2018.tif
-GMEX_IDW_Achelous_spinicarpus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2019.tif
-GMEX_IDW_Achelous_spinicarpus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2021.tif
-GMEX_IDW_Achelous_spinicarpus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2022.tif
-GMEX_IDW_Achelous_spinimanus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2008.tif
-GMEX_IDW_Achelous_spinimanus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2009.tif
-GMEX_IDW_Achelous_spinimanus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2010.tif
-GMEX_IDW_Achelous_spinimanus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2011.tif
-GMEX_IDW_Achelous_spinimanus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2012.tif
-GMEX_IDW_Achelous_spinimanus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2013.tif
-GMEX_IDW_Achelous_spinimanus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2014.tif
-GMEX_IDW_Achelous_spinimanus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2015.tif
-GMEX_IDW_Achelous_spinimanus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2016.tif
-GMEX_IDW_Achelous_spinimanus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2017.tif
-GMEX_IDW_Achelous_spinimanus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2018.tif
-GMEX_IDW_Achelous_spinimanus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2019.tif
-GMEX_IDW_Achelous_spinimanus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2021.tif
-GMEX_IDW_Achelous_spinimanus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2022.tif
-GMEX_IDW_Amusium_papyraceum_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Amusium papyraceum\GMEX_IDW_Amusium_papyraceum_2008.tif
-GMEX_IDW_Amusium_papyraceum_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Amusium papyraceum\GMEX_IDW_Amusium_papyraceum_2009.tif
-GMEX_IDW_Amusium_papyraceum_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Amusium papyraceum\GMEX_IDW_Amusium_papyraceum_2010.tif
-GMEX_IDW_Amusium_papyraceum_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Amusium papyraceum\GMEX_IDW_Amusium_papyraceum_2011.tif
-GMEX_IDW_Amusium_papyraceum_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Amusium papyraceum\GMEX_IDW_Amusium_papyraceum_2012.tif
-GMEX_IDW_Amusium_papyraceum_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Amusium papyraceum\GMEX_IDW_Amusium_papyraceum_2013.tif
-GMEX_IDW_Amusium_papyraceum_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Amusium papyraceum\GMEX_IDW_Amusium_papyraceum_2014.tif
-GMEX_IDW_Amusium_papyraceum_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Amusium papyraceum\GMEX_IDW_Amusium_papyraceum_2015.tif
-GMEX_IDW_Amusium_papyraceum_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Amusium papyraceum\GMEX_IDW_Amusium_papyraceum_2016.tif
-GMEX_IDW_Amusium_papyraceum_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Amusium papyraceum\GMEX_IDW_Amusium_papyraceum_2017.tif
-GMEX_IDW_Amusium_papyraceum_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Amusium papyraceum\GMEX_IDW_Amusium_papyraceum_2018.tif
-GMEX_IDW_Amusium_papyraceum_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Amusium papyraceum\GMEX_IDW_Amusium_papyraceum_2019.tif
-GMEX_IDW_Amusium_papyraceum_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Amusium papyraceum\GMEX_IDW_Amusium_papyraceum_2021.tif
-GMEX_IDW_Amusium_papyraceum_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Amusium papyraceum\GMEX_IDW_Amusium_papyraceum_2022.tif
-GMEX_IDW_Anasimus_latus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2008.tif
-GMEX_IDW_Anasimus_latus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2009.tif
-GMEX_IDW_Anasimus_latus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2010.tif
-GMEX_IDW_Anasimus_latus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2011.tif
-GMEX_IDW_Anasimus_latus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2012.tif
-GMEX_IDW_Anasimus_latus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2013.tif
-GMEX_IDW_Anasimus_latus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2014.tif
-GMEX_IDW_Anasimus_latus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2015.tif
-GMEX_IDW_Anasimus_latus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2016.tif
-GMEX_IDW_Anasimus_latus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2017.tif
-GMEX_IDW_Anasimus_latus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2018.tif
-GMEX_IDW_Anasimus_latus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2019.tif
-GMEX_IDW_Anasimus_latus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2021.tif
-GMEX_IDW_Anasimus_latus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2022.tif
-GMEX_IDW_Anchoa_hepsetus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2008.tif
-GMEX_IDW_Anchoa_hepsetus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2009.tif
-GMEX_IDW_Anchoa_hepsetus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2010.tif
-GMEX_IDW_Anchoa_hepsetus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2011.tif
-GMEX_IDW_Anchoa_hepsetus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2012.tif
-GMEX_IDW_Anchoa_hepsetus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2013.tif
-GMEX_IDW_Anchoa_hepsetus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2014.tif
-GMEX_IDW_Anchoa_hepsetus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2015.tif
-GMEX_IDW_Anchoa_hepsetus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2016.tif
-GMEX_IDW_Anchoa_hepsetus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2017.tif
-GMEX_IDW_Anchoa_hepsetus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2018.tif
-GMEX_IDW_Anchoa_hepsetus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2019.tif
-GMEX_IDW_Anchoa_hepsetus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2021.tif
-GMEX_IDW_Anchoa_hepsetus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2022.tif
-GMEX_IDW_Ancylopsetta_quadrocellata_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ancylopsetta quadrocellata\GMEX_IDW_Ancylopsetta_quadrocellata_2008.tif
-GMEX_IDW_Ancylopsetta_quadrocellata_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ancylopsetta quadrocellata\GMEX_IDW_Ancylopsetta_quadrocellata_2009.tif
-GMEX_IDW_Ancylopsetta_quadrocellata_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ancylopsetta quadrocellata\GMEX_IDW_Ancylopsetta_quadrocellata_2010.tif
-GMEX_IDW_Ancylopsetta_quadrocellata_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ancylopsetta quadrocellata\GMEX_IDW_Ancylopsetta_quadrocellata_2011.tif
-GMEX_IDW_Ancylopsetta_quadrocellata_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ancylopsetta quadrocellata\GMEX_IDW_Ancylopsetta_quadrocellata_2012.tif
-GMEX_IDW_Ancylopsetta_quadrocellata_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ancylopsetta quadrocellata\GMEX_IDW_Ancylopsetta_quadrocellata_2013.tif
-GMEX_IDW_Ancylopsetta_quadrocellata_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ancylopsetta quadrocellata\GMEX_IDW_Ancylopsetta_quadrocellata_2014.tif
-GMEX_IDW_Ancylopsetta_quadrocellata_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ancylopsetta quadrocellata\GMEX_IDW_Ancylopsetta_quadrocellata_2015.tif
-GMEX_IDW_Ancylopsetta_quadrocellata_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ancylopsetta quadrocellata\GMEX_IDW_Ancylopsetta_quadrocellata_2016.tif
-GMEX_IDW_Ancylopsetta_quadrocellata_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ancylopsetta quadrocellata\GMEX_IDW_Ancylopsetta_quadrocellata_2017.tif
-GMEX_IDW_Ancylopsetta_quadrocellata_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ancylopsetta quadrocellata\GMEX_IDW_Ancylopsetta_quadrocellata_2018.tif
-GMEX_IDW_Ancylopsetta_quadrocellata_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ancylopsetta quadrocellata\GMEX_IDW_Ancylopsetta_quadrocellata_2019.tif
-GMEX_IDW_Ancylopsetta_quadrocellata_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ancylopsetta quadrocellata\GMEX_IDW_Ancylopsetta_quadrocellata_2021.tif
-GMEX_IDW_Ancylopsetta_quadrocellata_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ancylopsetta quadrocellata\GMEX_IDW_Ancylopsetta_quadrocellata_2022.tif
-GMEX_IDW_Astropecten_cingulatus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2008.tif
-GMEX_IDW_Astropecten_cingulatus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2009.tif
-GMEX_IDW_Astropecten_cingulatus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2010.tif
-GMEX_IDW_Astropecten_cingulatus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2011.tif
-GMEX_IDW_Astropecten_cingulatus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2012.tif
-GMEX_IDW_Astropecten_cingulatus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2013.tif
-GMEX_IDW_Astropecten_cingulatus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2014.tif
-GMEX_IDW_Astropecten_cingulatus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2015.tif
-GMEX_IDW_Astropecten_cingulatus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2016.tif
-GMEX_IDW_Astropecten_cingulatus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2017.tif
-GMEX_IDW_Astropecten_cingulatus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2018.tif
-GMEX_IDW_Astropecten_cingulatus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2019.tif
-GMEX_IDW_Astropecten_cingulatus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2021.tif
-GMEX_IDW_Astropecten_cingulatus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2022.tif
-GMEX_IDW_Astropecten_duplicatus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2008.tif
-GMEX_IDW_Astropecten_duplicatus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2009.tif
-GMEX_IDW_Astropecten_duplicatus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2010.tif
-GMEX_IDW_Astropecten_duplicatus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2011.tif
-GMEX_IDW_Astropecten_duplicatus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2012.tif
-GMEX_IDW_Astropecten_duplicatus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2013.tif
-GMEX_IDW_Astropecten_duplicatus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2014.tif
-GMEX_IDW_Astropecten_duplicatus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2015.tif
-GMEX_IDW_Astropecten_duplicatus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2016.tif
-GMEX_IDW_Astropecten_duplicatus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2017.tif
-GMEX_IDW_Astropecten_duplicatus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2018.tif
-GMEX_IDW_Astropecten_duplicatus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2019.tif
-GMEX_IDW_Astropecten_duplicatus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2021.tif
-GMEX_IDW_Astropecten_duplicatus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2022.tif
-GMEX_IDW_Balistes_capriscus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2008.tif
-GMEX_IDW_Balistes_capriscus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2009.tif
-GMEX_IDW_Balistes_capriscus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2010.tif
-GMEX_IDW_Balistes_capriscus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2011.tif
-GMEX_IDW_Balistes_capriscus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2012.tif
-GMEX_IDW_Balistes_capriscus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2013.tif
-GMEX_IDW_Balistes_capriscus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2014.tif
-GMEX_IDW_Balistes_capriscus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2015.tif
-GMEX_IDW_Balistes_capriscus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2016.tif
-GMEX_IDW_Balistes_capriscus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2017.tif
-GMEX_IDW_Balistes_capriscus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2018.tif
-GMEX_IDW_Balistes_capriscus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2019.tif
-GMEX_IDW_Balistes_capriscus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2021.tif
-GMEX_IDW_Balistes_capriscus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2022.tif
-GMEX_IDW_Bellator_militaris_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2008.tif
-GMEX_IDW_Bellator_militaris_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2009.tif
-GMEX_IDW_Bellator_militaris_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2010.tif
-GMEX_IDW_Bellator_militaris_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2011.tif
-GMEX_IDW_Bellator_militaris_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2012.tif
-GMEX_IDW_Bellator_militaris_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2013.tif
-GMEX_IDW_Bellator_militaris_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2014.tif
-GMEX_IDW_Bellator_militaris_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2015.tif
-GMEX_IDW_Bellator_militaris_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2016.tif
-GMEX_IDW_Bellator_militaris_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2017.tif
-GMEX_IDW_Bellator_militaris_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2018.tif
-GMEX_IDW_Bellator_militaris_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2019.tif
-GMEX_IDW_Bellator_militaris_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2021.tif
-GMEX_IDW_Bellator_militaris_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2022.tif
-GMEX_IDW_Calamus_proridens_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2008.tif
-GMEX_IDW_Calamus_proridens_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2009.tif
-GMEX_IDW_Calamus_proridens_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2010.tif
-GMEX_IDW_Calamus_proridens_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2011.tif
-GMEX_IDW_Calamus_proridens_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2012.tif
-GMEX_IDW_Calamus_proridens_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2013.tif
-GMEX_IDW_Calamus_proridens_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2014.tif
-GMEX_IDW_Calamus_proridens_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2015.tif
-GMEX_IDW_Calamus_proridens_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2016.tif
-GMEX_IDW_Calamus_proridens_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:12:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2017.tif
-GMEX_IDW_Calamus_proridens_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2018.tif
-GMEX_IDW_Calamus_proridens_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2019.tif
-GMEX_IDW_Calamus_proridens_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2021.tif
-GMEX_IDW_Calamus_proridens_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2022.tif
-GMEX_IDW_Calappa_sulcata_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2008.tif
-GMEX_IDW_Calappa_sulcata_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2009.tif
-GMEX_IDW_Calappa_sulcata_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2010.tif
-GMEX_IDW_Calappa_sulcata_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2011.tif
-GMEX_IDW_Calappa_sulcata_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2012.tif
-GMEX_IDW_Calappa_sulcata_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2013.tif
-GMEX_IDW_Calappa_sulcata_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2014.tif
-GMEX_IDW_Calappa_sulcata_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2015.tif
-GMEX_IDW_Calappa_sulcata_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2016.tif
-GMEX_IDW_Calappa_sulcata_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2017.tif
-GMEX_IDW_Calappa_sulcata_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2018.tif
-GMEX_IDW_Calappa_sulcata_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2019.tif
-GMEX_IDW_Calappa_sulcata_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2021.tif
-GMEX_IDW_Calappa_sulcata_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2022.tif
-GMEX_IDW_Callinectes_sapidus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2008.tif
-GMEX_IDW_Callinectes_sapidus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2009.tif
-GMEX_IDW_Callinectes_sapidus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2010.tif
-GMEX_IDW_Callinectes_sapidus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2011.tif
-GMEX_IDW_Callinectes_sapidus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2012.tif
-GMEX_IDW_Callinectes_sapidus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2013.tif
-GMEX_IDW_Callinectes_sapidus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2014.tif
-GMEX_IDW_Callinectes_sapidus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2015.tif
-GMEX_IDW_Callinectes_sapidus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2016.tif
-GMEX_IDW_Callinectes_sapidus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2017.tif
-GMEX_IDW_Callinectes_sapidus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2018.tif
-GMEX_IDW_Callinectes_sapidus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2019.tif
-GMEX_IDW_Callinectes_sapidus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2021.tif
-GMEX_IDW_Callinectes_sapidus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2022.tif
-GMEX_IDW_Callinectes_similis_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2008.tif
-GMEX_IDW_Callinectes_similis_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2009.tif
-GMEX_IDW_Callinectes_similis_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2010.tif
-GMEX_IDW_Callinectes_similis_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2011.tif
-GMEX_IDW_Callinectes_similis_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2012.tif
-GMEX_IDW_Callinectes_similis_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2013.tif
-GMEX_IDW_Callinectes_similis_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2014.tif
-GMEX_IDW_Callinectes_similis_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2015.tif
-GMEX_IDW_Callinectes_similis_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2016.tif
-GMEX_IDW_Callinectes_similis_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2017.tif
-GMEX_IDW_Callinectes_similis_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2018.tif
-GMEX_IDW_Callinectes_similis_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2019.tif
-GMEX_IDW_Callinectes_similis_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2021.tif
-GMEX_IDW_Callinectes_similis_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2022.tif
-GMEX_IDW_Centropristis_ocyurus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2008.tif
-GMEX_IDW_Centropristis_ocyurus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2009.tif
-GMEX_IDW_Centropristis_ocyurus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2010.tif
-GMEX_IDW_Centropristis_ocyurus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2011.tif
-GMEX_IDW_Centropristis_ocyurus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2012.tif
-GMEX_IDW_Centropristis_ocyurus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2013.tif
-GMEX_IDW_Centropristis_ocyurus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2014.tif
-GMEX_IDW_Centropristis_ocyurus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2015.tif
-GMEX_IDW_Centropristis_ocyurus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2016.tif
-GMEX_IDW_Centropristis_ocyurus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2017.tif
-GMEX_IDW_Centropristis_ocyurus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2018.tif
-GMEX_IDW_Centropristis_ocyurus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2019.tif
-GMEX_IDW_Centropristis_ocyurus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2021.tif
-GMEX_IDW_Centropristis_ocyurus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2022.tif
-GMEX_IDW_Centropristis_philadelphica_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2008.tif
-GMEX_IDW_Centropristis_philadelphica_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2009.tif
-GMEX_IDW_Centropristis_philadelphica_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2010.tif
-GMEX_IDW_Centropristis_philadelphica_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2011.tif
-GMEX_IDW_Centropristis_philadelphica_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2012.tif
-GMEX_IDW_Centropristis_philadelphica_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2013.tif
-GMEX_IDW_Centropristis_philadelphica_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2014.tif
-GMEX_IDW_Centropristis_philadelphica_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2015.tif
-GMEX_IDW_Centropristis_philadelphica_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2016.tif
-GMEX_IDW_Centropristis_philadelphica_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2017.tif
-GMEX_IDW_Centropristis_philadelphica_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2018.tif
-GMEX_IDW_Centropristis_philadelphica_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2019.tif
-GMEX_IDW_Centropristis_philadelphica_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2021.tif
-GMEX_IDW_Centropristis_philadelphica_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2022.tif
-GMEX_IDW_Chaetodon_ocellatus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2008.tif
-GMEX_IDW_Chaetodon_ocellatus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2009.tif
-GMEX_IDW_Chaetodon_ocellatus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2010.tif
-GMEX_IDW_Chaetodon_ocellatus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2011.tif
-GMEX_IDW_Chaetodon_ocellatus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2012.tif
-GMEX_IDW_Chaetodon_ocellatus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2013.tif
-GMEX_IDW_Chaetodon_ocellatus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2014.tif
-GMEX_IDW_Chaetodon_ocellatus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2015.tif
-GMEX_IDW_Chaetodon_ocellatus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2016.tif
-GMEX_IDW_Chaetodon_ocellatus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2017.tif
-GMEX_IDW_Chaetodon_ocellatus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2018.tif
-GMEX_IDW_Chaetodon_ocellatus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2019.tif
-GMEX_IDW_Chaetodon_ocellatus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2021.tif
-GMEX_IDW_Chaetodon_ocellatus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2022.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2008.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2009.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2010.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2011.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2012.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2013.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2014.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2015.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2016.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2017.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2018.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2019.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2021.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2022.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2008.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2009.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2010.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2011.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2012.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2013.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2014.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2015.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2016.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2017.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2018.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2019.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2021.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2022.tif
-GMEX_IDW_Decapterus_punctatus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2008.tif
-GMEX_IDW_Decapterus_punctatus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2009.tif
-GMEX_IDW_Decapterus_punctatus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2010.tif
-GMEX_IDW_Decapterus_punctatus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2011.tif
-GMEX_IDW_Decapterus_punctatus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2012.tif
-GMEX_IDW_Decapterus_punctatus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2013.tif
-GMEX_IDW_Decapterus_punctatus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2014.tif
-GMEX_IDW_Decapterus_punctatus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2015.tif
-GMEX_IDW_Decapterus_punctatus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2016.tif
-GMEX_IDW_Decapterus_punctatus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2017.tif
-GMEX_IDW_Decapterus_punctatus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2018.tif
-GMEX_IDW_Decapterus_punctatus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2019.tif
-GMEX_IDW_Decapterus_punctatus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2021.tif
-GMEX_IDW_Decapterus_punctatus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2022.tif
-GMEX_IDW_Diplectrum_bivittatum_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2008.tif
-GMEX_IDW_Diplectrum_bivittatum_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2009.tif
-GMEX_IDW_Diplectrum_bivittatum_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2010.tif
-GMEX_IDW_Diplectrum_bivittatum_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2011.tif
-GMEX_IDW_Diplectrum_bivittatum_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2012.tif
-GMEX_IDW_Diplectrum_bivittatum_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2013.tif
-GMEX_IDW_Diplectrum_bivittatum_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2014.tif
-GMEX_IDW_Diplectrum_bivittatum_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2015.tif
-GMEX_IDW_Diplectrum_bivittatum_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2016.tif
-GMEX_IDW_Diplectrum_bivittatum_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2017.tif
-GMEX_IDW_Diplectrum_bivittatum_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2018.tif
-GMEX_IDW_Diplectrum_bivittatum_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2019.tif
-GMEX_IDW_Diplectrum_bivittatum_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2021.tif
-GMEX_IDW_Diplectrum_bivittatum_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2022.tif
-GMEX_IDW_Diplectrum_formosum_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2008.tif
-GMEX_IDW_Diplectrum_formosum_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2009.tif
-GMEX_IDW_Diplectrum_formosum_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2010.tif
-GMEX_IDW_Diplectrum_formosum_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2011.tif
-GMEX_IDW_Diplectrum_formosum_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2012.tif
-GMEX_IDW_Diplectrum_formosum_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2013.tif
-GMEX_IDW_Diplectrum_formosum_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2014.tif
-GMEX_IDW_Diplectrum_formosum_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2015.tif
-GMEX_IDW_Diplectrum_formosum_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2016.tif
-GMEX_IDW_Diplectrum_formosum_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2017.tif
-GMEX_IDW_Diplectrum_formosum_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2018.tif
-GMEX_IDW_Diplectrum_formosum_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2019.tif
-GMEX_IDW_Diplectrum_formosum_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2021.tif
-GMEX_IDW_Diplectrum_formosum_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2022.tif
-GMEX_IDW_Doryteuthis_pleii_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Doryteuthis pleii\GMEX_IDW_Doryteuthis_pleii_2008.tif
-GMEX_IDW_Doryteuthis_pleii_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Doryteuthis pleii\GMEX_IDW_Doryteuthis_pleii_2009.tif
-GMEX_IDW_Doryteuthis_pleii_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Doryteuthis pleii\GMEX_IDW_Doryteuthis_pleii_2010.tif
-GMEX_IDW_Doryteuthis_pleii_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Doryteuthis pleii\GMEX_IDW_Doryteuthis_pleii_2011.tif
-GMEX_IDW_Doryteuthis_pleii_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Doryteuthis pleii\GMEX_IDW_Doryteuthis_pleii_2012.tif
-GMEX_IDW_Doryteuthis_pleii_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Doryteuthis pleii\GMEX_IDW_Doryteuthis_pleii_2013.tif
-GMEX_IDW_Doryteuthis_pleii_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Doryteuthis pleii\GMEX_IDW_Doryteuthis_pleii_2014.tif
-GMEX_IDW_Doryteuthis_pleii_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Doryteuthis pleii\GMEX_IDW_Doryteuthis_pleii_2015.tif
-GMEX_IDW_Doryteuthis_pleii_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Doryteuthis pleii\GMEX_IDW_Doryteuthis_pleii_2016.tif
-GMEX_IDW_Doryteuthis_pleii_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Doryteuthis pleii\GMEX_IDW_Doryteuthis_pleii_2017.tif
-GMEX_IDW_Doryteuthis_pleii_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Doryteuthis pleii\GMEX_IDW_Doryteuthis_pleii_2018.tif
-GMEX_IDW_Doryteuthis_pleii_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Doryteuthis pleii\GMEX_IDW_Doryteuthis_pleii_2019.tif
-GMEX_IDW_Doryteuthis_pleii_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Doryteuthis pleii\GMEX_IDW_Doryteuthis_pleii_2021.tif
-GMEX_IDW_Doryteuthis_pleii_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Doryteuthis pleii\GMEX_IDW_Doryteuthis_pleii_2022.tif
-GMEX_IDW_Epinephelus_morio_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2008.tif
-GMEX_IDW_Epinephelus_morio_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2009.tif
-GMEX_IDW_Epinephelus_morio_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2010.tif
-GMEX_IDW_Epinephelus_morio_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2011.tif
-GMEX_IDW_Epinephelus_morio_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2012.tif
-GMEX_IDW_Epinephelus_morio_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2013.tif
-GMEX_IDW_Epinephelus_morio_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2014.tif
-GMEX_IDW_Epinephelus_morio_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2015.tif
-GMEX_IDW_Epinephelus_morio_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2016.tif
-GMEX_IDW_Epinephelus_morio_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2017.tif
-GMEX_IDW_Epinephelus_morio_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2018.tif
-GMEX_IDW_Epinephelus_morio_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2019.tif
-GMEX_IDW_Epinephelus_morio_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2021.tif
-GMEX_IDW_Epinephelus_morio_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2022.tif
-GMEX_IDW_Eques_lanceolatus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2008.tif
-GMEX_IDW_Eques_lanceolatus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2009.tif
-GMEX_IDW_Eques_lanceolatus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2010.tif
-GMEX_IDW_Eques_lanceolatus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2011.tif
-GMEX_IDW_Eques_lanceolatus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2012.tif
-GMEX_IDW_Eques_lanceolatus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2013.tif
-GMEX_IDW_Eques_lanceolatus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2014.tif
-GMEX_IDW_Eques_lanceolatus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2015.tif
-GMEX_IDW_Eques_lanceolatus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2016.tif
-GMEX_IDW_Eques_lanceolatus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2017.tif
-GMEX_IDW_Eques_lanceolatus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2018.tif
-GMEX_IDW_Eques_lanceolatus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2019.tif
-GMEX_IDW_Eques_lanceolatus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2021.tif
-GMEX_IDW_Eques_lanceolatus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2022.tif
-GMEX_IDW_Etropus_crossotus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2008.tif
-GMEX_IDW_Etropus_crossotus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2009.tif
-GMEX_IDW_Etropus_crossotus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2010.tif
-GMEX_IDW_Etropus_crossotus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2011.tif
-GMEX_IDW_Etropus_crossotus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2012.tif
-GMEX_IDW_Etropus_crossotus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2013.tif
-GMEX_IDW_Etropus_crossotus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2014.tif
-GMEX_IDW_Etropus_crossotus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2015.tif
-GMEX_IDW_Etropus_crossotus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2016.tif
-GMEX_IDW_Etropus_crossotus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2017.tif
-GMEX_IDW_Etropus_crossotus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2018.tif
-GMEX_IDW_Etropus_crossotus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2019.tif
-GMEX_IDW_Etropus_crossotus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2021.tif
-GMEX_IDW_Etropus_crossotus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2022.tif
-GMEX_IDW_Eucidaris_tribuloides_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2008.tif
-GMEX_IDW_Eucidaris_tribuloides_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2009.tif
-GMEX_IDW_Eucidaris_tribuloides_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2010.tif
-GMEX_IDW_Eucidaris_tribuloides_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2011.tif
-GMEX_IDW_Eucidaris_tribuloides_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2012.tif
-GMEX_IDW_Eucidaris_tribuloides_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2013.tif
-GMEX_IDW_Eucidaris_tribuloides_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2014.tif
-GMEX_IDW_Eucidaris_tribuloides_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2015.tif
-GMEX_IDW_Eucidaris_tribuloides_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2016.tif
-GMEX_IDW_Eucidaris_tribuloides_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2017.tif
-GMEX_IDW_Eucidaris_tribuloides_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2018.tif
-GMEX_IDW_Eucidaris_tribuloides_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2019.tif
-GMEX_IDW_Eucidaris_tribuloides_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2021.tif
-GMEX_IDW_Eucidaris_tribuloides_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2022.tif
-GMEX_IDW_Eucinostomus_gula_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucinostomus gula\GMEX_IDW_Eucinostomus_gula_2008.tif
-GMEX_IDW_Eucinostomus_gula_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucinostomus gula\GMEX_IDW_Eucinostomus_gula_2009.tif
-GMEX_IDW_Eucinostomus_gula_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucinostomus gula\GMEX_IDW_Eucinostomus_gula_2010.tif
-GMEX_IDW_Eucinostomus_gula_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucinostomus gula\GMEX_IDW_Eucinostomus_gula_2011.tif
-GMEX_IDW_Eucinostomus_gula_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucinostomus gula\GMEX_IDW_Eucinostomus_gula_2012.tif
-GMEX_IDW_Eucinostomus_gula_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucinostomus gula\GMEX_IDW_Eucinostomus_gula_2013.tif
-GMEX_IDW_Eucinostomus_gula_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucinostomus gula\GMEX_IDW_Eucinostomus_gula_2014.tif
-GMEX_IDW_Eucinostomus_gula_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucinostomus gula\GMEX_IDW_Eucinostomus_gula_2015.tif
-GMEX_IDW_Eucinostomus_gula_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucinostomus gula\GMEX_IDW_Eucinostomus_gula_2016.tif
-GMEX_IDW_Eucinostomus_gula_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucinostomus gula\GMEX_IDW_Eucinostomus_gula_2017.tif
-GMEX_IDW_Eucinostomus_gula_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucinostomus gula\GMEX_IDW_Eucinostomus_gula_2018.tif
-GMEX_IDW_Eucinostomus_gula_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucinostomus gula\GMEX_IDW_Eucinostomus_gula_2019.tif
-GMEX_IDW_Eucinostomus_gula_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucinostomus gula\GMEX_IDW_Eucinostomus_gula_2021.tif
-GMEX_IDW_Eucinostomus_gula_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Eucinostomus gula\GMEX_IDW_Eucinostomus_gula_2022.tif
-GMEX_IDW_Gymnothorax_saxicola_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2008.tif
-GMEX_IDW_Gymnothorax_saxicola_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:13:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2009.tif
-GMEX_IDW_Gymnothorax_saxicola_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2010.tif
-GMEX_IDW_Gymnothorax_saxicola_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2011.tif
-GMEX_IDW_Gymnothorax_saxicola_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2012.tif
-GMEX_IDW_Gymnothorax_saxicola_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2013.tif
-GMEX_IDW_Gymnothorax_saxicola_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2014.tif
-GMEX_IDW_Gymnothorax_saxicola_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2015.tif
-GMEX_IDW_Gymnothorax_saxicola_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2016.tif
-GMEX_IDW_Gymnothorax_saxicola_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2017.tif
-GMEX_IDW_Gymnothorax_saxicola_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2018.tif
-GMEX_IDW_Gymnothorax_saxicola_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2019.tif
-GMEX_IDW_Gymnothorax_saxicola_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2021.tif
-GMEX_IDW_Gymnothorax_saxicola_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2022.tif
-GMEX_IDW_Haemulon_aurolineatum_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2008.tif
-GMEX_IDW_Haemulon_aurolineatum_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2009.tif
-GMEX_IDW_Haemulon_aurolineatum_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2010.tif
-GMEX_IDW_Haemulon_aurolineatum_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2011.tif
-GMEX_IDW_Haemulon_aurolineatum_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2012.tif
-GMEX_IDW_Haemulon_aurolineatum_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2013.tif
-GMEX_IDW_Haemulon_aurolineatum_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2014.tif
-GMEX_IDW_Haemulon_aurolineatum_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2015.tif
-GMEX_IDW_Haemulon_aurolineatum_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2016.tif
-GMEX_IDW_Haemulon_aurolineatum_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2017.tif
-GMEX_IDW_Haemulon_aurolineatum_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2018.tif
-GMEX_IDW_Haemulon_aurolineatum_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2019.tif
-GMEX_IDW_Haemulon_aurolineatum_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2021.tif
-GMEX_IDW_Haemulon_aurolineatum_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2022.tif
-GMEX_IDW_Halieutichthys_aculeatus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Halieutichthys aculeatus\GMEX_IDW_Halieutichthys_aculeatus_2008.tif
-GMEX_IDW_Halieutichthys_aculeatus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Halieutichthys aculeatus\GMEX_IDW_Halieutichthys_aculeatus_2009.tif
-GMEX_IDW_Halieutichthys_aculeatus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Halieutichthys aculeatus\GMEX_IDW_Halieutichthys_aculeatus_2010.tif
-GMEX_IDW_Halieutichthys_aculeatus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Halieutichthys aculeatus\GMEX_IDW_Halieutichthys_aculeatus_2011.tif
-GMEX_IDW_Halieutichthys_aculeatus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Halieutichthys aculeatus\GMEX_IDW_Halieutichthys_aculeatus_2012.tif
-GMEX_IDW_Halieutichthys_aculeatus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Halieutichthys aculeatus\GMEX_IDW_Halieutichthys_aculeatus_2013.tif
-GMEX_IDW_Halieutichthys_aculeatus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Halieutichthys aculeatus\GMEX_IDW_Halieutichthys_aculeatus_2014.tif
-GMEX_IDW_Halieutichthys_aculeatus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Halieutichthys aculeatus\GMEX_IDW_Halieutichthys_aculeatus_2015.tif
-GMEX_IDW_Halieutichthys_aculeatus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Halieutichthys aculeatus\GMEX_IDW_Halieutichthys_aculeatus_2016.tif
-GMEX_IDW_Halieutichthys_aculeatus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Halieutichthys aculeatus\GMEX_IDW_Halieutichthys_aculeatus_2017.tif
-GMEX_IDW_Halieutichthys_aculeatus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Halieutichthys aculeatus\GMEX_IDW_Halieutichthys_aculeatus_2018.tif
-GMEX_IDW_Halieutichthys_aculeatus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Halieutichthys aculeatus\GMEX_IDW_Halieutichthys_aculeatus_2019.tif
-GMEX_IDW_Halieutichthys_aculeatus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Halieutichthys aculeatus\GMEX_IDW_Halieutichthys_aculeatus_2021.tif
-GMEX_IDW_Halieutichthys_aculeatus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Halieutichthys aculeatus\GMEX_IDW_Halieutichthys_aculeatus_2022.tif
-GMEX_IDW_Harengula_jaguana_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2008.tif
-GMEX_IDW_Harengula_jaguana_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2009.tif
-GMEX_IDW_Harengula_jaguana_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2010.tif
-GMEX_IDW_Harengula_jaguana_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2011.tif
-GMEX_IDW_Harengula_jaguana_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2012.tif
-GMEX_IDW_Harengula_jaguana_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2013.tif
-GMEX_IDW_Harengula_jaguana_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2014.tif
-GMEX_IDW_Harengula_jaguana_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2015.tif
-GMEX_IDW_Harengula_jaguana_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2016.tif
-GMEX_IDW_Harengula_jaguana_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2017.tif
-GMEX_IDW_Harengula_jaguana_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2018.tif
-GMEX_IDW_Harengula_jaguana_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2019.tif
-GMEX_IDW_Harengula_jaguana_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2021.tif
-GMEX_IDW_Harengula_jaguana_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2022.tif
-GMEX_IDW_Kathetostoma_albigutta_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2008.tif
-GMEX_IDW_Kathetostoma_albigutta_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2009.tif
-GMEX_IDW_Kathetostoma_albigutta_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2010.tif
-GMEX_IDW_Kathetostoma_albigutta_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2011.tif
-GMEX_IDW_Kathetostoma_albigutta_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2012.tif
-GMEX_IDW_Kathetostoma_albigutta_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2013.tif
-GMEX_IDW_Kathetostoma_albigutta_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2014.tif
-GMEX_IDW_Kathetostoma_albigutta_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2015.tif
-GMEX_IDW_Kathetostoma_albigutta_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2016.tif
-GMEX_IDW_Kathetostoma_albigutta_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2017.tif
-GMEX_IDW_Kathetostoma_albigutta_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2018.tif
-GMEX_IDW_Kathetostoma_albigutta_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2019.tif
-GMEX_IDW_Kathetostoma_albigutta_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2021.tif
-GMEX_IDW_Kathetostoma_albigutta_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2022.tif
-GMEX_IDW_Lagocephalus_laevigatus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2008.tif
-GMEX_IDW_Lagocephalus_laevigatus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2009.tif
-GMEX_IDW_Lagocephalus_laevigatus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2010.tif
-GMEX_IDW_Lagocephalus_laevigatus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2011.tif
-GMEX_IDW_Lagocephalus_laevigatus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2012.tif
-GMEX_IDW_Lagocephalus_laevigatus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2013.tif
-GMEX_IDW_Lagocephalus_laevigatus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2014.tif
-GMEX_IDW_Lagocephalus_laevigatus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2015.tif
-GMEX_IDW_Lagocephalus_laevigatus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2016.tif
-GMEX_IDW_Lagocephalus_laevigatus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2017.tif
-GMEX_IDW_Lagocephalus_laevigatus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2018.tif
-GMEX_IDW_Lagocephalus_laevigatus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2019.tif
-GMEX_IDW_Lagocephalus_laevigatus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2021.tif
-GMEX_IDW_Lagocephalus_laevigatus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2022.tif
-GMEX_IDW_Lagodon_rhomboides_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2008.tif
-GMEX_IDW_Lagodon_rhomboides_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2009.tif
-GMEX_IDW_Lagodon_rhomboides_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2010.tif
-GMEX_IDW_Lagodon_rhomboides_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2011.tif
-GMEX_IDW_Lagodon_rhomboides_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2012.tif
-GMEX_IDW_Lagodon_rhomboides_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2013.tif
-GMEX_IDW_Lagodon_rhomboides_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2014.tif
-GMEX_IDW_Lagodon_rhomboides_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2015.tif
-GMEX_IDW_Lagodon_rhomboides_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2016.tif
-GMEX_IDW_Lagodon_rhomboides_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2017.tif
-GMEX_IDW_Lagodon_rhomboides_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2018.tif
-GMEX_IDW_Lagodon_rhomboides_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2019.tif
-GMEX_IDW_Lagodon_rhomboides_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2021.tif
-GMEX_IDW_Lagodon_rhomboides_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2022.tif
-GMEX_IDW_Larimus_fasciatus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2008.tif
-GMEX_IDW_Larimus_fasciatus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2009.tif
-GMEX_IDW_Larimus_fasciatus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2010.tif
-GMEX_IDW_Larimus_fasciatus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2011.tif
-GMEX_IDW_Larimus_fasciatus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2012.tif
-GMEX_IDW_Larimus_fasciatus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2013.tif
-GMEX_IDW_Larimus_fasciatus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2014.tif
-GMEX_IDW_Larimus_fasciatus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2015.tif
-GMEX_IDW_Larimus_fasciatus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2016.tif
-GMEX_IDW_Larimus_fasciatus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2017.tif
-GMEX_IDW_Larimus_fasciatus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2018.tif
-GMEX_IDW_Larimus_fasciatus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2019.tif
-GMEX_IDW_Larimus_fasciatus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2021.tif
-GMEX_IDW_Larimus_fasciatus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2022.tif
-GMEX_IDW_Leiolambrus_nitidus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2008.tif
-GMEX_IDW_Leiolambrus_nitidus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2009.tif
-GMEX_IDW_Leiolambrus_nitidus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2010.tif
-GMEX_IDW_Leiolambrus_nitidus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2011.tif
-GMEX_IDW_Leiolambrus_nitidus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2012.tif
-GMEX_IDW_Leiolambrus_nitidus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2013.tif
-GMEX_IDW_Leiolambrus_nitidus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2014.tif
-GMEX_IDW_Leiolambrus_nitidus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2015.tif
-GMEX_IDW_Leiolambrus_nitidus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2016.tif
-GMEX_IDW_Leiolambrus_nitidus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2017.tif
-GMEX_IDW_Leiolambrus_nitidus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2018.tif
-GMEX_IDW_Leiolambrus_nitidus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2019.tif
-GMEX_IDW_Leiolambrus_nitidus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2021.tif
-GMEX_IDW_Leiolambrus_nitidus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2022.tif
-GMEX_IDW_Leiostomus_xanthurus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2008.tif
-GMEX_IDW_Leiostomus_xanthurus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2009.tif
-GMEX_IDW_Leiostomus_xanthurus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2010.tif
-GMEX_IDW_Leiostomus_xanthurus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2011.tif
-GMEX_IDW_Leiostomus_xanthurus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2012.tif
-GMEX_IDW_Leiostomus_xanthurus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2013.tif
-GMEX_IDW_Leiostomus_xanthurus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2014.tif
-GMEX_IDW_Leiostomus_xanthurus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2015.tif
-GMEX_IDW_Leiostomus_xanthurus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2016.tif
-GMEX_IDW_Leiostomus_xanthurus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2017.tif
-GMEX_IDW_Leiostomus_xanthurus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2018.tif
-GMEX_IDW_Leiostomus_xanthurus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2019.tif
-GMEX_IDW_Leiostomus_xanthurus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2021.tif
-GMEX_IDW_Leiostomus_xanthurus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2022.tif
-GMEX_IDW_Lepophidium_brevibarbe_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2008.tif
-GMEX_IDW_Lepophidium_brevibarbe_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2009.tif
-GMEX_IDW_Lepophidium_brevibarbe_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2010.tif
-GMEX_IDW_Lepophidium_brevibarbe_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2011.tif
-GMEX_IDW_Lepophidium_brevibarbe_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2012.tif
-GMEX_IDW_Lepophidium_brevibarbe_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2013.tif
-GMEX_IDW_Lepophidium_brevibarbe_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2014.tif
-GMEX_IDW_Lepophidium_brevibarbe_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2015.tif
-GMEX_IDW_Lepophidium_brevibarbe_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2016.tif
-GMEX_IDW_Lepophidium_brevibarbe_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2017.tif
-GMEX_IDW_Lepophidium_brevibarbe_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2018.tif
-GMEX_IDW_Lepophidium_brevibarbe_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2019.tif
-GMEX_IDW_Lepophidium_brevibarbe_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2021.tif
-GMEX_IDW_Lepophidium_brevibarbe_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2022.tif
-GMEX_IDW_Lepophidium_jeannae_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2008.tif
-GMEX_IDW_Lepophidium_jeannae_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2009.tif
-GMEX_IDW_Lepophidium_jeannae_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2010.tif
-GMEX_IDW_Lepophidium_jeannae_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2011.tif
-GMEX_IDW_Lepophidium_jeannae_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2012.tif
-GMEX_IDW_Lepophidium_jeannae_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2013.tif
-GMEX_IDW_Lepophidium_jeannae_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2014.tif
-GMEX_IDW_Lepophidium_jeannae_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2015.tif
-GMEX_IDW_Lepophidium_jeannae_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2016.tif
-GMEX_IDW_Lepophidium_jeannae_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2017.tif
-GMEX_IDW_Lepophidium_jeannae_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2018.tif
-GMEX_IDW_Lepophidium_jeannae_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2019.tif
-GMEX_IDW_Lepophidium_jeannae_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2021.tif
-GMEX_IDW_Lepophidium_jeannae_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2022.tif
-GMEX_IDW_Lolliguncula_brevis_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2008.tif
-GMEX_IDW_Lolliguncula_brevis_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2009.tif
-GMEX_IDW_Lolliguncula_brevis_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2010.tif
-GMEX_IDW_Lolliguncula_brevis_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2011.tif
-GMEX_IDW_Lolliguncula_brevis_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2012.tif
-GMEX_IDW_Lolliguncula_brevis_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2013.tif
-GMEX_IDW_Lolliguncula_brevis_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2014.tif
-GMEX_IDW_Lolliguncula_brevis_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2015.tif
-GMEX_IDW_Lolliguncula_brevis_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2016.tif
-GMEX_IDW_Lolliguncula_brevis_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2017.tif
-GMEX_IDW_Lolliguncula_brevis_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2018.tif
-GMEX_IDW_Lolliguncula_brevis_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2019.tif
-GMEX_IDW_Lolliguncula_brevis_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2021.tif
-GMEX_IDW_Lolliguncula_brevis_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2022.tif
-GMEX_IDW_Luidia_clathrata_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2008.tif
-GMEX_IDW_Luidia_clathrata_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2009.tif
-GMEX_IDW_Luidia_clathrata_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2010.tif
-GMEX_IDW_Luidia_clathrata_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2011.tif
-GMEX_IDW_Luidia_clathrata_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2012.tif
-GMEX_IDW_Luidia_clathrata_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2013.tif
-GMEX_IDW_Luidia_clathrata_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2014.tif
-GMEX_IDW_Luidia_clathrata_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2015.tif
-GMEX_IDW_Luidia_clathrata_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2016.tif
-GMEX_IDW_Luidia_clathrata_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2017.tif
-GMEX_IDW_Luidia_clathrata_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2018.tif
-GMEX_IDW_Luidia_clathrata_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2019.tif
-GMEX_IDW_Luidia_clathrata_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2021.tif
-GMEX_IDW_Luidia_clathrata_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2022.tif
-GMEX_IDW_Lutjanus_campechanus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2008.tif
-GMEX_IDW_Lutjanus_campechanus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2009.tif
-GMEX_IDW_Lutjanus_campechanus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2010.tif
-GMEX_IDW_Lutjanus_campechanus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2011.tif
-GMEX_IDW_Lutjanus_campechanus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2012.tif
-GMEX_IDW_Lutjanus_campechanus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2013.tif
-GMEX_IDW_Lutjanus_campechanus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2014.tif
-GMEX_IDW_Lutjanus_campechanus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2015.tif
-GMEX_IDW_Lutjanus_campechanus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2016.tif
-GMEX_IDW_Lutjanus_campechanus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2017.tif
-GMEX_IDW_Lutjanus_campechanus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2018.tif
-GMEX_IDW_Lutjanus_campechanus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2019.tif
-GMEX_IDW_Lutjanus_campechanus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2021.tif
-GMEX_IDW_Lutjanus_campechanus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2022.tif
-GMEX_IDW_Lutjanus_griseus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2008.tif
-GMEX_IDW_Lutjanus_griseus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2009.tif
-GMEX_IDW_Lutjanus_griseus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2010.tif
-GMEX_IDW_Lutjanus_griseus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2011.tif
-GMEX_IDW_Lutjanus_griseus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2012.tif
-GMEX_IDW_Lutjanus_griseus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2013.tif
-GMEX_IDW_Lutjanus_griseus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2014.tif
-GMEX_IDW_Lutjanus_griseus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2015.tif
-GMEX_IDW_Lutjanus_griseus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2016.tif
-GMEX_IDW_Lutjanus_griseus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2017.tif
-GMEX_IDW_Lutjanus_griseus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2018.tif
-GMEX_IDW_Lutjanus_griseus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2019.tif
-GMEX_IDW_Lutjanus_griseus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2021.tif
-GMEX_IDW_Lutjanus_griseus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2022.tif
-GMEX_IDW_Lutjanus_synagris_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2008.tif
-GMEX_IDW_Lutjanus_synagris_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2009.tif
-GMEX_IDW_Lutjanus_synagris_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2010.tif
-GMEX_IDW_Lutjanus_synagris_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2011.tif
-GMEX_IDW_Lutjanus_synagris_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2012.tif
-GMEX_IDW_Lutjanus_synagris_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2013.tif
-GMEX_IDW_Lutjanus_synagris_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2014.tif
-GMEX_IDW_Lutjanus_synagris_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2015.tif
-GMEX_IDW_Lutjanus_synagris_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2016.tif
-GMEX_IDW_Lutjanus_synagris_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2017.tif
-GMEX_IDW_Lutjanus_synagris_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2018.tif
-GMEX_IDW_Lutjanus_synagris_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2019.tif
-GMEX_IDW_Lutjanus_synagris_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2021.tif
-GMEX_IDW_Lutjanus_synagris_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2022.tif
-GMEX_IDW_Metapenaeopsis_goodei_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2008.tif
-GMEX_IDW_Metapenaeopsis_goodei_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2009.tif
-GMEX_IDW_Metapenaeopsis_goodei_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2010.tif
-GMEX_IDW_Metapenaeopsis_goodei_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2011.tif
-GMEX_IDW_Metapenaeopsis_goodei_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2012.tif
-GMEX_IDW_Metapenaeopsis_goodei_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2013.tif
-GMEX_IDW_Metapenaeopsis_goodei_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2014.tif
-GMEX_IDW_Metapenaeopsis_goodei_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2015.tif
-GMEX_IDW_Metapenaeopsis_goodei_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2016.tif
-GMEX_IDW_Metapenaeopsis_goodei_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2017.tif
-GMEX_IDW_Metapenaeopsis_goodei_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2018.tif
-GMEX_IDW_Metapenaeopsis_goodei_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2019.tif
-GMEX_IDW_Metapenaeopsis_goodei_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2021.tif
-GMEX_IDW_Metapenaeopsis_goodei_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2022.tif
-GMEX_IDW_Micropogonias_undulatus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2008.tif
-GMEX_IDW_Micropogonias_undulatus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2009.tif
-GMEX_IDW_Micropogonias_undulatus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2010.tif
-GMEX_IDW_Micropogonias_undulatus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2011.tif
-GMEX_IDW_Micropogonias_undulatus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2012.tif
-GMEX_IDW_Micropogonias_undulatus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2013.tif
-GMEX_IDW_Micropogonias_undulatus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2014.tif
-GMEX_IDW_Micropogonias_undulatus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2015.tif
-GMEX_IDW_Micropogonias_undulatus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2016.tif
-GMEX_IDW_Micropogonias_undulatus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2017.tif
-GMEX_IDW_Micropogonias_undulatus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2018.tif
-GMEX_IDW_Micropogonias_undulatus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2019.tif
-GMEX_IDW_Micropogonias_undulatus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2021.tif
-GMEX_IDW_Micropogonias_undulatus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2022.tif
-GMEX_IDW_Monacanthus_ciliatus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2008.tif
-GMEX_IDW_Monacanthus_ciliatus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2009.tif
-GMEX_IDW_Monacanthus_ciliatus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2010.tif
-GMEX_IDW_Monacanthus_ciliatus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2011.tif
-GMEX_IDW_Monacanthus_ciliatus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2012.tif
-GMEX_IDW_Monacanthus_ciliatus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2013.tif
-GMEX_IDW_Monacanthus_ciliatus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2014.tif
-GMEX_IDW_Monacanthus_ciliatus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2015.tif
-GMEX_IDW_Monacanthus_ciliatus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2016.tif
-GMEX_IDW_Monacanthus_ciliatus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2017.tif
-GMEX_IDW_Monacanthus_ciliatus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2018.tif
-GMEX_IDW_Monacanthus_ciliatus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2019.tif
-GMEX_IDW_Monacanthus_ciliatus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2021.tif
-GMEX_IDW_Monacanthus_ciliatus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2022.tif
-GMEX_IDW_Mullus_auratus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2008.tif
-GMEX_IDW_Mullus_auratus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2009.tif
-GMEX_IDW_Mullus_auratus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2010.tif
-GMEX_IDW_Mullus_auratus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2011.tif
-GMEX_IDW_Mullus_auratus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2012.tif
-GMEX_IDW_Mullus_auratus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2013.tif
-GMEX_IDW_Mullus_auratus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2014.tif
-GMEX_IDW_Mullus_auratus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:14:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2015.tif
-GMEX_IDW_Mullus_auratus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2016.tif
-GMEX_IDW_Mullus_auratus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2017.tif
-GMEX_IDW_Mullus_auratus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2018.tif
-GMEX_IDW_Mullus_auratus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2019.tif
-GMEX_IDW_Mullus_auratus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2021.tif
-GMEX_IDW_Mullus_auratus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2022.tif
-GMEX_IDW_Nicholsina_usta_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2008.tif
-GMEX_IDW_Nicholsina_usta_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2009.tif
-GMEX_IDW_Nicholsina_usta_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2010.tif
-GMEX_IDW_Nicholsina_usta_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2011.tif
-GMEX_IDW_Nicholsina_usta_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2012.tif
-GMEX_IDW_Nicholsina_usta_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2013.tif
-GMEX_IDW_Nicholsina_usta_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2014.tif
-GMEX_IDW_Nicholsina_usta_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2015.tif
-GMEX_IDW_Nicholsina_usta_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2016.tif
-GMEX_IDW_Nicholsina_usta_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2017.tif
-GMEX_IDW_Nicholsina_usta_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2018.tif
-GMEX_IDW_Nicholsina_usta_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2019.tif
-GMEX_IDW_Nicholsina_usta_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2021.tif
-GMEX_IDW_Nicholsina_usta_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2022.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2008.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2009.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2010.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2011.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2012.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2013.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2014.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2015.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2016.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2017.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2018.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2019.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2021.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2022.tif
-GMEX_IDW_Ophiolepis_elegans_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2008.tif
-GMEX_IDW_Ophiolepis_elegans_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2009.tif
-GMEX_IDW_Ophiolepis_elegans_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2010.tif
-GMEX_IDW_Ophiolepis_elegans_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2011.tif
-GMEX_IDW_Ophiolepis_elegans_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2012.tif
-GMEX_IDW_Ophiolepis_elegans_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2013.tif
-GMEX_IDW_Ophiolepis_elegans_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2014.tif
-GMEX_IDW_Ophiolepis_elegans_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2015.tif
-GMEX_IDW_Ophiolepis_elegans_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2016.tif
-GMEX_IDW_Ophiolepis_elegans_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2017.tif
-GMEX_IDW_Ophiolepis_elegans_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2018.tif
-GMEX_IDW_Ophiolepis_elegans_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2019.tif
-GMEX_IDW_Ophiolepis_elegans_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2021.tif
-GMEX_IDW_Ophiolepis_elegans_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2022.tif
-GMEX_IDW_Opisthonema_oglinum_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2008.tif
-GMEX_IDW_Opisthonema_oglinum_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2009.tif
-GMEX_IDW_Opisthonema_oglinum_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2010.tif
-GMEX_IDW_Opisthonema_oglinum_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2011.tif
-GMEX_IDW_Opisthonema_oglinum_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2012.tif
-GMEX_IDW_Opisthonema_oglinum_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2013.tif
-GMEX_IDW_Opisthonema_oglinum_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2014.tif
-GMEX_IDW_Opisthonema_oglinum_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2015.tif
-GMEX_IDW_Opisthonema_oglinum_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2016.tif
-GMEX_IDW_Opisthonema_oglinum_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2017.tif
-GMEX_IDW_Opisthonema_oglinum_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2018.tif
-GMEX_IDW_Opisthonema_oglinum_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2019.tif
-GMEX_IDW_Opisthonema_oglinum_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2021.tif
-GMEX_IDW_Opisthonema_oglinum_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2022.tif
-GMEX_IDW_Pagrus_pagrus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pagrus pagrus\GMEX_IDW_Pagrus_pagrus_2008.tif
-GMEX_IDW_Pagrus_pagrus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pagrus pagrus\GMEX_IDW_Pagrus_pagrus_2009.tif
-GMEX_IDW_Pagrus_pagrus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pagrus pagrus\GMEX_IDW_Pagrus_pagrus_2010.tif
-GMEX_IDW_Pagrus_pagrus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pagrus pagrus\GMEX_IDW_Pagrus_pagrus_2011.tif
-GMEX_IDW_Pagrus_pagrus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pagrus pagrus\GMEX_IDW_Pagrus_pagrus_2012.tif
-GMEX_IDW_Pagrus_pagrus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pagrus pagrus\GMEX_IDW_Pagrus_pagrus_2013.tif
-GMEX_IDW_Pagrus_pagrus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pagrus pagrus\GMEX_IDW_Pagrus_pagrus_2014.tif
-GMEX_IDW_Pagrus_pagrus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pagrus pagrus\GMEX_IDW_Pagrus_pagrus_2015.tif
-GMEX_IDW_Pagrus_pagrus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pagrus pagrus\GMEX_IDW_Pagrus_pagrus_2016.tif
-GMEX_IDW_Pagrus_pagrus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pagrus pagrus\GMEX_IDW_Pagrus_pagrus_2017.tif
-GMEX_IDW_Pagrus_pagrus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pagrus pagrus\GMEX_IDW_Pagrus_pagrus_2018.tif
-GMEX_IDW_Pagrus_pagrus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pagrus pagrus\GMEX_IDW_Pagrus_pagrus_2019.tif
-GMEX_IDW_Pagrus_pagrus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pagrus pagrus\GMEX_IDW_Pagrus_pagrus_2021.tif
-GMEX_IDW_Pagrus_pagrus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pagrus pagrus\GMEX_IDW_Pagrus_pagrus_2022.tif
-GMEX_IDW_Penaeus_aztecus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2008.tif
-GMEX_IDW_Penaeus_aztecus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2009.tif
-GMEX_IDW_Penaeus_aztecus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2010.tif
-GMEX_IDW_Penaeus_aztecus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2011.tif
-GMEX_IDW_Penaeus_aztecus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2012.tif
-GMEX_IDW_Penaeus_aztecus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2013.tif
-GMEX_IDW_Penaeus_aztecus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2014.tif
-GMEX_IDW_Penaeus_aztecus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2015.tif
-GMEX_IDW_Penaeus_aztecus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2016.tif
-GMEX_IDW_Penaeus_aztecus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2017.tif
-GMEX_IDW_Penaeus_aztecus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2018.tif
-GMEX_IDW_Penaeus_aztecus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2019.tif
-GMEX_IDW_Penaeus_aztecus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2021.tif
-GMEX_IDW_Penaeus_aztecus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2022.tif
-GMEX_IDW_Penaeus_duorarum_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2008.tif
-GMEX_IDW_Penaeus_duorarum_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2009.tif
-GMEX_IDW_Penaeus_duorarum_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2010.tif
-GMEX_IDW_Penaeus_duorarum_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2011.tif
-GMEX_IDW_Penaeus_duorarum_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2012.tif
-GMEX_IDW_Penaeus_duorarum_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2013.tif
-GMEX_IDW_Penaeus_duorarum_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2014.tif
-GMEX_IDW_Penaeus_duorarum_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2015.tif
-GMEX_IDW_Penaeus_duorarum_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2016.tif
-GMEX_IDW_Penaeus_duorarum_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2017.tif
-GMEX_IDW_Penaeus_duorarum_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2018.tif
-GMEX_IDW_Penaeus_duorarum_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2019.tif
-GMEX_IDW_Penaeus_duorarum_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2021.tif
-GMEX_IDW_Penaeus_duorarum_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2022.tif
-GMEX_IDW_Penaeus_setiferus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2008.tif
-GMEX_IDW_Penaeus_setiferus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2009.tif
-GMEX_IDW_Penaeus_setiferus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2010.tif
-GMEX_IDW_Penaeus_setiferus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2011.tif
-GMEX_IDW_Penaeus_setiferus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2012.tif
-GMEX_IDW_Penaeus_setiferus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2013.tif
-GMEX_IDW_Penaeus_setiferus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2014.tif
-GMEX_IDW_Penaeus_setiferus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2015.tif
-GMEX_IDW_Penaeus_setiferus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2016.tif
-GMEX_IDW_Penaeus_setiferus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2017.tif
-GMEX_IDW_Penaeus_setiferus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2018.tif
-GMEX_IDW_Penaeus_setiferus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2019.tif
-GMEX_IDW_Penaeus_setiferus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2021.tif
-GMEX_IDW_Penaeus_setiferus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2022.tif
-GMEX_IDW_Peprilus_burti_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2008.tif
-GMEX_IDW_Peprilus_burti_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2009.tif
-GMEX_IDW_Peprilus_burti_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2010.tif
-GMEX_IDW_Peprilus_burti_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2011.tif
-GMEX_IDW_Peprilus_burti_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2012.tif
-GMEX_IDW_Peprilus_burti_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2013.tif
-GMEX_IDW_Peprilus_burti_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2014.tif
-GMEX_IDW_Peprilus_burti_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2015.tif
-GMEX_IDW_Peprilus_burti_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2016.tif
-GMEX_IDW_Peprilus_burti_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2017.tif
-GMEX_IDW_Peprilus_burti_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2018.tif
-GMEX_IDW_Peprilus_burti_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2019.tif
-GMEX_IDW_Peprilus_burti_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2021.tif
-GMEX_IDW_Peprilus_burti_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2022.tif
-GMEX_IDW_Pitarenus_cordatus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2008.tif
-GMEX_IDW_Pitarenus_cordatus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2009.tif
-GMEX_IDW_Pitarenus_cordatus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2010.tif
-GMEX_IDW_Pitarenus_cordatus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2011.tif
-GMEX_IDW_Pitarenus_cordatus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2012.tif
-GMEX_IDW_Pitarenus_cordatus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2013.tif
-GMEX_IDW_Pitarenus_cordatus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2014.tif
-GMEX_IDW_Pitarenus_cordatus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2015.tif
-GMEX_IDW_Pitarenus_cordatus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2016.tif
-GMEX_IDW_Pitarenus_cordatus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2017.tif
-GMEX_IDW_Pitarenus_cordatus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2018.tif
-GMEX_IDW_Pitarenus_cordatus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2019.tif
-GMEX_IDW_Pitarenus_cordatus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2021.tif
-GMEX_IDW_Pitarenus_cordatus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2022.tif
-GMEX_IDW_Platylambrus_granulatus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2008.tif
-GMEX_IDW_Platylambrus_granulatus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2009.tif
-GMEX_IDW_Platylambrus_granulatus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2010.tif
-GMEX_IDW_Platylambrus_granulatus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2011.tif
-GMEX_IDW_Platylambrus_granulatus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2012.tif
-GMEX_IDW_Platylambrus_granulatus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2013.tif
-GMEX_IDW_Platylambrus_granulatus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2014.tif
-GMEX_IDW_Platylambrus_granulatus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2015.tif
-GMEX_IDW_Platylambrus_granulatus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2016.tif
-GMEX_IDW_Platylambrus_granulatus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2017.tif
-GMEX_IDW_Platylambrus_granulatus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2018.tif
-GMEX_IDW_Platylambrus_granulatus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2019.tif
-GMEX_IDW_Platylambrus_granulatus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2021.tif
-GMEX_IDW_Platylambrus_granulatus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2022.tif
-GMEX_IDW_Porichthys_plectrodon_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2008.tif
-GMEX_IDW_Porichthys_plectrodon_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2009.tif
-GMEX_IDW_Porichthys_plectrodon_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2010.tif
-GMEX_IDW_Porichthys_plectrodon_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2011.tif
-GMEX_IDW_Porichthys_plectrodon_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2012.tif
-GMEX_IDW_Porichthys_plectrodon_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2013.tif
-GMEX_IDW_Porichthys_plectrodon_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2014.tif
-GMEX_IDW_Porichthys_plectrodon_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2015.tif
-GMEX_IDW_Porichthys_plectrodon_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2016.tif
-GMEX_IDW_Porichthys_plectrodon_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2017.tif
-GMEX_IDW_Porichthys_plectrodon_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2018.tif
-GMEX_IDW_Porichthys_plectrodon_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2019.tif
-GMEX_IDW_Porichthys_plectrodon_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2021.tif
-GMEX_IDW_Porichthys_plectrodon_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2022.tif
-GMEX_IDW_Prionotus_longispinosus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2008.tif
-GMEX_IDW_Prionotus_longispinosus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2009.tif
-GMEX_IDW_Prionotus_longispinosus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2010.tif
-GMEX_IDW_Prionotus_longispinosus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2011.tif
-GMEX_IDW_Prionotus_longispinosus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2012.tif
-GMEX_IDW_Prionotus_longispinosus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2013.tif
-GMEX_IDW_Prionotus_longispinosus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2014.tif
-GMEX_IDW_Prionotus_longispinosus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2015.tif
-GMEX_IDW_Prionotus_longispinosus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2016.tif
-GMEX_IDW_Prionotus_longispinosus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2017.tif
-GMEX_IDW_Prionotus_longispinosus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2018.tif
-GMEX_IDW_Prionotus_longispinosus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2019.tif
-GMEX_IDW_Prionotus_longispinosus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2021.tif
-GMEX_IDW_Prionotus_longispinosus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2022.tif
-GMEX_IDW_Prionotus_ophryas_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2008.tif
-GMEX_IDW_Prionotus_ophryas_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2009.tif
-GMEX_IDW_Prionotus_ophryas_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2010.tif
-GMEX_IDW_Prionotus_ophryas_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2011.tif
-GMEX_IDW_Prionotus_ophryas_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2012.tif
-GMEX_IDW_Prionotus_ophryas_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2013.tif
-GMEX_IDW_Prionotus_ophryas_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2014.tif
-GMEX_IDW_Prionotus_ophryas_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2015.tif
-GMEX_IDW_Prionotus_ophryas_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2016.tif
-GMEX_IDW_Prionotus_ophryas_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2017.tif
-GMEX_IDW_Prionotus_ophryas_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2018.tif
-GMEX_IDW_Prionotus_ophryas_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2019.tif
-GMEX_IDW_Prionotus_ophryas_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2021.tif
-GMEX_IDW_Prionotus_ophryas_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2022.tif
-GMEX_IDW_Prionotus_roseus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2008.tif
-GMEX_IDW_Prionotus_roseus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2009.tif
-GMEX_IDW_Prionotus_roseus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2010.tif
-GMEX_IDW_Prionotus_roseus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2011.tif
-GMEX_IDW_Prionotus_roseus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2012.tif
-GMEX_IDW_Prionotus_roseus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2013.tif
-GMEX_IDW_Prionotus_roseus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2014.tif
-GMEX_IDW_Prionotus_roseus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2015.tif
-GMEX_IDW_Prionotus_roseus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2016.tif
-GMEX_IDW_Prionotus_roseus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2017.tif
-GMEX_IDW_Prionotus_roseus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2018.tif
-GMEX_IDW_Prionotus_roseus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2019.tif
-GMEX_IDW_Prionotus_roseus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2021.tif
-GMEX_IDW_Prionotus_roseus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2022.tif
-GMEX_IDW_Prionotus_rubio_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2008.tif
-GMEX_IDW_Prionotus_rubio_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2009.tif
-GMEX_IDW_Prionotus_rubio_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2010.tif
-GMEX_IDW_Prionotus_rubio_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2011.tif
-GMEX_IDW_Prionotus_rubio_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2012.tif
-GMEX_IDW_Prionotus_rubio_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2013.tif
-GMEX_IDW_Prionotus_rubio_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2014.tif
-GMEX_IDW_Prionotus_rubio_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2015.tif
-GMEX_IDW_Prionotus_rubio_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2016.tif
-GMEX_IDW_Prionotus_rubio_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2017.tif
-GMEX_IDW_Prionotus_rubio_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2018.tif
-GMEX_IDW_Prionotus_rubio_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2019.tif
-GMEX_IDW_Prionotus_rubio_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2021.tif
-GMEX_IDW_Prionotus_rubio_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2022.tif
-GMEX_IDW_Prionotus_stearnsi_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2008.tif
-GMEX_IDW_Prionotus_stearnsi_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2009.tif
-GMEX_IDW_Prionotus_stearnsi_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2010.tif
-GMEX_IDW_Prionotus_stearnsi_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2011.tif
-GMEX_IDW_Prionotus_stearnsi_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2012.tif
-GMEX_IDW_Prionotus_stearnsi_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2013.tif
-GMEX_IDW_Prionotus_stearnsi_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2014.tif
-GMEX_IDW_Prionotus_stearnsi_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2015.tif
-GMEX_IDW_Prionotus_stearnsi_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2016.tif
-GMEX_IDW_Prionotus_stearnsi_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2017.tif
-GMEX_IDW_Prionotus_stearnsi_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2018.tif
-GMEX_IDW_Prionotus_stearnsi_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2019.tif
-GMEX_IDW_Prionotus_stearnsi_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2021.tif
-GMEX_IDW_Prionotus_stearnsi_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2022.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:15:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2008.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2009.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2010.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2011.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2012.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2013.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2014.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2015.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2016.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2017.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2018.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2019.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2021.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2022.tif
-GMEX_IDW_Raja_texana_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raja texana\GMEX_IDW_Raja_texana_2008.tif
-GMEX_IDW_Raja_texana_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raja texana\GMEX_IDW_Raja_texana_2009.tif
-GMEX_IDW_Raja_texana_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raja texana\GMEX_IDW_Raja_texana_2010.tif
-GMEX_IDW_Raja_texana_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raja texana\GMEX_IDW_Raja_texana_2011.tif
-GMEX_IDW_Raja_texana_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raja texana\GMEX_IDW_Raja_texana_2012.tif
-GMEX_IDW_Raja_texana_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raja texana\GMEX_IDW_Raja_texana_2013.tif
-GMEX_IDW_Raja_texana_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raja texana\GMEX_IDW_Raja_texana_2014.tif
-GMEX_IDW_Raja_texana_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raja texana\GMEX_IDW_Raja_texana_2015.tif
-GMEX_IDW_Raja_texana_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raja texana\GMEX_IDW_Raja_texana_2016.tif
-GMEX_IDW_Raja_texana_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raja texana\GMEX_IDW_Raja_texana_2017.tif
-GMEX_IDW_Raja_texana_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raja texana\GMEX_IDW_Raja_texana_2018.tif
-GMEX_IDW_Raja_texana_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raja texana\GMEX_IDW_Raja_texana_2019.tif
-GMEX_IDW_Raja_texana_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raja texana\GMEX_IDW_Raja_texana_2021.tif
-GMEX_IDW_Raja_texana_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raja texana\GMEX_IDW_Raja_texana_2022.tif
-GMEX_IDW_Raninoides_louisianensis_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2008.tif
-GMEX_IDW_Raninoides_louisianensis_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2009.tif
-GMEX_IDW_Raninoides_louisianensis_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2010.tif
-GMEX_IDW_Raninoides_louisianensis_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2011.tif
-GMEX_IDW_Raninoides_louisianensis_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2012.tif
-GMEX_IDW_Raninoides_louisianensis_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2013.tif
-GMEX_IDW_Raninoides_louisianensis_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2014.tif
-GMEX_IDW_Raninoides_louisianensis_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2015.tif
-GMEX_IDW_Raninoides_louisianensis_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2016.tif
-GMEX_IDW_Raninoides_louisianensis_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2017.tif
-GMEX_IDW_Raninoides_louisianensis_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2018.tif
-GMEX_IDW_Raninoides_louisianensis_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2019.tif
-GMEX_IDW_Raninoides_louisianensis_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2021.tif
-GMEX_IDW_Raninoides_louisianensis_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2022.tif
-GMEX_IDW_Renilla_muelleri_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2008.tif
-GMEX_IDW_Renilla_muelleri_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2009.tif
-GMEX_IDW_Renilla_muelleri_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2010.tif
-GMEX_IDW_Renilla_muelleri_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2011.tif
-GMEX_IDW_Renilla_muelleri_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2012.tif
-GMEX_IDW_Renilla_muelleri_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2013.tif
-GMEX_IDW_Renilla_muelleri_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2014.tif
-GMEX_IDW_Renilla_muelleri_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2015.tif
-GMEX_IDW_Renilla_muelleri_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2016.tif
-GMEX_IDW_Renilla_muelleri_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2017.tif
-GMEX_IDW_Renilla_muelleri_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2018.tif
-GMEX_IDW_Renilla_muelleri_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2019.tif
-GMEX_IDW_Renilla_muelleri_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2021.tif
-GMEX_IDW_Renilla_muelleri_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2022.tif
-GMEX_IDW_Rhomboplites_aurorubens_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2008.tif
-GMEX_IDW_Rhomboplites_aurorubens_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2009.tif
-GMEX_IDW_Rhomboplites_aurorubens_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2010.tif
-GMEX_IDW_Rhomboplites_aurorubens_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2011.tif
-GMEX_IDW_Rhomboplites_aurorubens_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2012.tif
-GMEX_IDW_Rhomboplites_aurorubens_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2013.tif
-GMEX_IDW_Rhomboplites_aurorubens_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2014.tif
-GMEX_IDW_Rhomboplites_aurorubens_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2015.tif
-GMEX_IDW_Rhomboplites_aurorubens_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2016.tif
-GMEX_IDW_Rhomboplites_aurorubens_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2017.tif
-GMEX_IDW_Rhomboplites_aurorubens_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2018.tif
-GMEX_IDW_Rhomboplites_aurorubens_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2019.tif
-GMEX_IDW_Rhomboplites_aurorubens_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2021.tif
-GMEX_IDW_Rhomboplites_aurorubens_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2022.tif
-GMEX_IDW_Sardinella_aurita_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2008.tif
-GMEX_IDW_Sardinella_aurita_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2009.tif
-GMEX_IDW_Sardinella_aurita_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2010.tif
-GMEX_IDW_Sardinella_aurita_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2011.tif
-GMEX_IDW_Sardinella_aurita_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2012.tif
-GMEX_IDW_Sardinella_aurita_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2013.tif
-GMEX_IDW_Sardinella_aurita_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2014.tif
-GMEX_IDW_Sardinella_aurita_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2015.tif
-GMEX_IDW_Sardinella_aurita_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2016.tif
-GMEX_IDW_Sardinella_aurita_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2017.tif
-GMEX_IDW_Sardinella_aurita_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2018.tif
-GMEX_IDW_Sardinella_aurita_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2019.tif
-GMEX_IDW_Sardinella_aurita_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2021.tif
-GMEX_IDW_Sardinella_aurita_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2022.tif
-GMEX_IDW_Saurida_brasiliensis_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2008.tif
-GMEX_IDW_Saurida_brasiliensis_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2009.tif
-GMEX_IDW_Saurida_brasiliensis_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2010.tif
-GMEX_IDW_Saurida_brasiliensis_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2011.tif
-GMEX_IDW_Saurida_brasiliensis_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2012.tif
-GMEX_IDW_Saurida_brasiliensis_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2013.tif
-GMEX_IDW_Saurida_brasiliensis_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2014.tif
-GMEX_IDW_Saurida_brasiliensis_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2015.tif
-GMEX_IDW_Saurida_brasiliensis_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2016.tif
-GMEX_IDW_Saurida_brasiliensis_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2017.tif
-GMEX_IDW_Saurida_brasiliensis_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2018.tif
-GMEX_IDW_Saurida_brasiliensis_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2019.tif
-GMEX_IDW_Saurida_brasiliensis_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2021.tif
-GMEX_IDW_Saurida_brasiliensis_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2022.tif
-GMEX_IDW_Scorpaena_brasiliensis_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2008.tif
-GMEX_IDW_Scorpaena_brasiliensis_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2009.tif
-GMEX_IDW_Scorpaena_brasiliensis_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2010.tif
-GMEX_IDW_Scorpaena_brasiliensis_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2011.tif
-GMEX_IDW_Scorpaena_brasiliensis_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2012.tif
-GMEX_IDW_Scorpaena_brasiliensis_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2013.tif
-GMEX_IDW_Scorpaena_brasiliensis_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2014.tif
-GMEX_IDW_Scorpaena_brasiliensis_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2015.tif
-GMEX_IDW_Scorpaena_brasiliensis_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2016.tif
-GMEX_IDW_Scorpaena_brasiliensis_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2017.tif
-GMEX_IDW_Scorpaena_brasiliensis_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2018.tif
-GMEX_IDW_Scorpaena_brasiliensis_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2019.tif
-GMEX_IDW_Scorpaena_brasiliensis_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2021.tif
-GMEX_IDW_Scorpaena_brasiliensis_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2022.tif
-GMEX_IDW_Scorpaena_calcarata_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2008.tif
-GMEX_IDW_Scorpaena_calcarata_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2009.tif
-GMEX_IDW_Scorpaena_calcarata_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2010.tif
-GMEX_IDW_Scorpaena_calcarata_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2011.tif
-GMEX_IDW_Scorpaena_calcarata_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2012.tif
-GMEX_IDW_Scorpaena_calcarata_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2013.tif
-GMEX_IDW_Scorpaena_calcarata_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2014.tif
-GMEX_IDW_Scorpaena_calcarata_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2015.tif
-GMEX_IDW_Scorpaena_calcarata_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2016.tif
-GMEX_IDW_Scorpaena_calcarata_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2017.tif
-GMEX_IDW_Scorpaena_calcarata_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2018.tif
-GMEX_IDW_Scorpaena_calcarata_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2019.tif
-GMEX_IDW_Scorpaena_calcarata_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2021.tif
-GMEX_IDW_Scorpaena_calcarata_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2022.tif
-GMEX_IDW_Scyllarides_nodifer_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2008.tif
-GMEX_IDW_Scyllarides_nodifer_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2009.tif
-GMEX_IDW_Scyllarides_nodifer_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2010.tif
-GMEX_IDW_Scyllarides_nodifer_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2011.tif
-GMEX_IDW_Scyllarides_nodifer_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2012.tif
-GMEX_IDW_Scyllarides_nodifer_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2013.tif
-GMEX_IDW_Scyllarides_nodifer_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2014.tif
-GMEX_IDW_Scyllarides_nodifer_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2015.tif
-GMEX_IDW_Scyllarides_nodifer_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2016.tif
-GMEX_IDW_Scyllarides_nodifer_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2017.tif
-GMEX_IDW_Scyllarides_nodifer_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2018.tif
-GMEX_IDW_Scyllarides_nodifer_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2019.tif
-GMEX_IDW_Scyllarides_nodifer_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2021.tif
-GMEX_IDW_Scyllarides_nodifer_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2022.tif
-GMEX_IDW_Scyllarus_chacei_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2008.tif
-GMEX_IDW_Scyllarus_chacei_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2009.tif
-GMEX_IDW_Scyllarus_chacei_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2010.tif
-GMEX_IDW_Scyllarus_chacei_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2011.tif
-GMEX_IDW_Scyllarus_chacei_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2012.tif
-GMEX_IDW_Scyllarus_chacei_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2013.tif
-GMEX_IDW_Scyllarus_chacei_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2014.tif
-GMEX_IDW_Scyllarus_chacei_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2015.tif
-GMEX_IDW_Scyllarus_chacei_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2016.tif
-GMEX_IDW_Scyllarus_chacei_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2017.tif
-GMEX_IDW_Scyllarus_chacei_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2018.tif
-GMEX_IDW_Scyllarus_chacei_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2019.tif
-GMEX_IDW_Scyllarus_chacei_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2021.tif
-GMEX_IDW_Scyllarus_chacei_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2022.tif
-GMEX_IDW_Selene_setapinnis_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2008.tif
-GMEX_IDW_Selene_setapinnis_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2009.tif
-GMEX_IDW_Selene_setapinnis_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2010.tif
-GMEX_IDW_Selene_setapinnis_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2011.tif
-GMEX_IDW_Selene_setapinnis_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2012.tif
-GMEX_IDW_Selene_setapinnis_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2013.tif
-GMEX_IDW_Selene_setapinnis_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2014.tif
-GMEX_IDW_Selene_setapinnis_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2015.tif
-GMEX_IDW_Selene_setapinnis_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2016.tif
-GMEX_IDW_Selene_setapinnis_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2017.tif
-GMEX_IDW_Selene_setapinnis_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2018.tif
-GMEX_IDW_Selene_setapinnis_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2019.tif
-GMEX_IDW_Selene_setapinnis_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2021.tif
-GMEX_IDW_Selene_setapinnis_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2022.tif
-GMEX_IDW_Serranus_atrobranchus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2008.tif
-GMEX_IDW_Serranus_atrobranchus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2009.tif
-GMEX_IDW_Serranus_atrobranchus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2010.tif
-GMEX_IDW_Serranus_atrobranchus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2011.tif
-GMEX_IDW_Serranus_atrobranchus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2012.tif
-GMEX_IDW_Serranus_atrobranchus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2013.tif
-GMEX_IDW_Serranus_atrobranchus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2014.tif
-GMEX_IDW_Serranus_atrobranchus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2015.tif
-GMEX_IDW_Serranus_atrobranchus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2016.tif
-GMEX_IDW_Serranus_atrobranchus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2017.tif
-GMEX_IDW_Serranus_atrobranchus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2018.tif
-GMEX_IDW_Serranus_atrobranchus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2019.tif
-GMEX_IDW_Serranus_atrobranchus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2021.tif
-GMEX_IDW_Serranus_atrobranchus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2022.tif
-GMEX_IDW_Serranus_phoebe_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2008.tif
-GMEX_IDW_Serranus_phoebe_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2009.tif
-GMEX_IDW_Serranus_phoebe_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2010.tif
-GMEX_IDW_Serranus_phoebe_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2011.tif
-GMEX_IDW_Serranus_phoebe_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2012.tif
-GMEX_IDW_Serranus_phoebe_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2013.tif
-GMEX_IDW_Serranus_phoebe_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2014.tif
-GMEX_IDW_Serranus_phoebe_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2015.tif
-GMEX_IDW_Serranus_phoebe_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2016.tif
-GMEX_IDW_Serranus_phoebe_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2017.tif
-GMEX_IDW_Serranus_phoebe_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2018.tif
-GMEX_IDW_Serranus_phoebe_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2019.tif
-GMEX_IDW_Serranus_phoebe_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2021.tif
-GMEX_IDW_Serranus_phoebe_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2022.tif
-GMEX_IDW_Sicyonia_brevirostris_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2008.tif
-GMEX_IDW_Sicyonia_brevirostris_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2009.tif
-GMEX_IDW_Sicyonia_brevirostris_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2010.tif
-GMEX_IDW_Sicyonia_brevirostris_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2011.tif
-GMEX_IDW_Sicyonia_brevirostris_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2012.tif
-GMEX_IDW_Sicyonia_brevirostris_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2013.tif
-GMEX_IDW_Sicyonia_brevirostris_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2014.tif
-GMEX_IDW_Sicyonia_brevirostris_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2015.tif
-GMEX_IDW_Sicyonia_brevirostris_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2016.tif
-GMEX_IDW_Sicyonia_brevirostris_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2017.tif
-GMEX_IDW_Sicyonia_brevirostris_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2018.tif
-GMEX_IDW_Sicyonia_brevirostris_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2019.tif
-GMEX_IDW_Sicyonia_brevirostris_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2021.tif
-GMEX_IDW_Sicyonia_brevirostris_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2022.tif
-GMEX_IDW_Sicyonia_dorsalis_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2008.tif
-GMEX_IDW_Sicyonia_dorsalis_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2009.tif
-GMEX_IDW_Sicyonia_dorsalis_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2010.tif
-GMEX_IDW_Sicyonia_dorsalis_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2011.tif
-GMEX_IDW_Sicyonia_dorsalis_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2012.tif
-GMEX_IDW_Sicyonia_dorsalis_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2013.tif
-GMEX_IDW_Sicyonia_dorsalis_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2014.tif
-GMEX_IDW_Sicyonia_dorsalis_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2015.tif
-GMEX_IDW_Sicyonia_dorsalis_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2016.tif
-GMEX_IDW_Sicyonia_dorsalis_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2017.tif
-GMEX_IDW_Sicyonia_dorsalis_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2018.tif
-GMEX_IDW_Sicyonia_dorsalis_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2019.tif
-GMEX_IDW_Sicyonia_dorsalis_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2021.tif
-GMEX_IDW_Sicyonia_dorsalis_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2022.tif
-GMEX_IDW_Sphoeroides_dorsalis_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2008.tif
-GMEX_IDW_Sphoeroides_dorsalis_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2009.tif
-GMEX_IDW_Sphoeroides_dorsalis_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2010.tif
-GMEX_IDW_Sphoeroides_dorsalis_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2011.tif
-GMEX_IDW_Sphoeroides_dorsalis_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2012.tif
-GMEX_IDW_Sphoeroides_dorsalis_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2013.tif
-GMEX_IDW_Sphoeroides_dorsalis_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2014.tif
-GMEX_IDW_Sphoeroides_dorsalis_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2015.tif
-GMEX_IDW_Sphoeroides_dorsalis_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2016.tif
-GMEX_IDW_Sphoeroides_dorsalis_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2017.tif
-GMEX_IDW_Sphoeroides_dorsalis_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2018.tif
-GMEX_IDW_Sphoeroides_dorsalis_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2019.tif
-GMEX_IDW_Sphoeroides_dorsalis_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2021.tif
-GMEX_IDW_Sphoeroides_dorsalis_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2022.tif
-GMEX_IDW_Sphoeroides_parvus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2008.tif
-GMEX_IDW_Sphoeroides_parvus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2009.tif
-GMEX_IDW_Sphoeroides_parvus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2010.tif
-GMEX_IDW_Sphoeroides_parvus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:16:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2011.tif
-GMEX_IDW_Sphoeroides_parvus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2012.tif
-GMEX_IDW_Sphoeroides_parvus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2013.tif
-GMEX_IDW_Sphoeroides_parvus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2014.tif
-GMEX_IDW_Sphoeroides_parvus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2015.tif
-GMEX_IDW_Sphoeroides_parvus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2016.tif
-GMEX_IDW_Sphoeroides_parvus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2017.tif
-GMEX_IDW_Sphoeroides_parvus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2018.tif
-GMEX_IDW_Sphoeroides_parvus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2019.tif
-GMEX_IDW_Sphoeroides_parvus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2021.tif
-GMEX_IDW_Sphoeroides_parvus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2022.tif
-GMEX_IDW_Sphoeroides_spengleri_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2008.tif
-GMEX_IDW_Sphoeroides_spengleri_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2009.tif
-GMEX_IDW_Sphoeroides_spengleri_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2010.tif
-GMEX_IDW_Sphoeroides_spengleri_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2011.tif
-GMEX_IDW_Sphoeroides_spengleri_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2012.tif
-GMEX_IDW_Sphoeroides_spengleri_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2013.tif
-GMEX_IDW_Sphoeroides_spengleri_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2014.tif
-GMEX_IDW_Sphoeroides_spengleri_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2015.tif
-GMEX_IDW_Sphoeroides_spengleri_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2016.tif
-GMEX_IDW_Sphoeroides_spengleri_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2017.tif
-GMEX_IDW_Sphoeroides_spengleri_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2018.tif
-GMEX_IDW_Sphoeroides_spengleri_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2019.tif
-GMEX_IDW_Sphoeroides_spengleri_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2021.tif
-GMEX_IDW_Sphoeroides_spengleri_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2022.tif
-GMEX_IDW_Squilla_chydaea_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2008.tif
-GMEX_IDW_Squilla_chydaea_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2009.tif
-GMEX_IDW_Squilla_chydaea_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2010.tif
-GMEX_IDW_Squilla_chydaea_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2011.tif
-GMEX_IDW_Squilla_chydaea_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2012.tif
-GMEX_IDW_Squilla_chydaea_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2013.tif
-GMEX_IDW_Squilla_chydaea_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2014.tif
-GMEX_IDW_Squilla_chydaea_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2015.tif
-GMEX_IDW_Squilla_chydaea_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2016.tif
-GMEX_IDW_Squilla_chydaea_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2017.tif
-GMEX_IDW_Squilla_chydaea_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2018.tif
-GMEX_IDW_Squilla_chydaea_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2019.tif
-GMEX_IDW_Squilla_chydaea_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2021.tif
-GMEX_IDW_Squilla_chydaea_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2022.tif
-GMEX_IDW_Squilla_empusa_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2008.tif
-GMEX_IDW_Squilla_empusa_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2009.tif
-GMEX_IDW_Squilla_empusa_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2010.tif
-GMEX_IDW_Squilla_empusa_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2011.tif
-GMEX_IDW_Squilla_empusa_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2012.tif
-GMEX_IDW_Squilla_empusa_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2013.tif
-GMEX_IDW_Squilla_empusa_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2014.tif
-GMEX_IDW_Squilla_empusa_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2015.tif
-GMEX_IDW_Squilla_empusa_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2016.tif
-GMEX_IDW_Squilla_empusa_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2017.tif
-GMEX_IDW_Squilla_empusa_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2018.tif
-GMEX_IDW_Squilla_empusa_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2019.tif
-GMEX_IDW_Squilla_empusa_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2021.tif
-GMEX_IDW_Squilla_empusa_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2022.tif
-GMEX_IDW_Stenorhynchus_seticornis_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2008.tif
-GMEX_IDW_Stenorhynchus_seticornis_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2009.tif
-GMEX_IDW_Stenorhynchus_seticornis_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2010.tif
-GMEX_IDW_Stenorhynchus_seticornis_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2011.tif
-GMEX_IDW_Stenorhynchus_seticornis_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2012.tif
-GMEX_IDW_Stenorhynchus_seticornis_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2013.tif
-GMEX_IDW_Stenorhynchus_seticornis_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2014.tif
-GMEX_IDW_Stenorhynchus_seticornis_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2015.tif
-GMEX_IDW_Stenorhynchus_seticornis_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2016.tif
-GMEX_IDW_Stenorhynchus_seticornis_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2017.tif
-GMEX_IDW_Stenorhynchus_seticornis_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2018.tif
-GMEX_IDW_Stenorhynchus_seticornis_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2019.tif
-GMEX_IDW_Stenorhynchus_seticornis_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2021.tif
-GMEX_IDW_Stenorhynchus_seticornis_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2022.tif
-GMEX_IDW_Stenotomus_caprinus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2008.tif
-GMEX_IDW_Stenotomus_caprinus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2009.tif
-GMEX_IDW_Stenotomus_caprinus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2010.tif
-GMEX_IDW_Stenotomus_caprinus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2011.tif
-GMEX_IDW_Stenotomus_caprinus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2012.tif
-GMEX_IDW_Stenotomus_caprinus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2013.tif
-GMEX_IDW_Stenotomus_caprinus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2014.tif
-GMEX_IDW_Stenotomus_caprinus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2015.tif
-GMEX_IDW_Stenotomus_caprinus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2016.tif
-GMEX_IDW_Stenotomus_caprinus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2017.tif
-GMEX_IDW_Stenotomus_caprinus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2018.tif
-GMEX_IDW_Stenotomus_caprinus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2019.tif
-GMEX_IDW_Stenotomus_caprinus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2021.tif
-GMEX_IDW_Stenotomus_caprinus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2022.tif
-GMEX_IDW_Stephanolepis_hispida_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2008.tif
-GMEX_IDW_Stephanolepis_hispida_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2009.tif
-GMEX_IDW_Stephanolepis_hispida_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2010.tif
-GMEX_IDW_Stephanolepis_hispida_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2011.tif
-GMEX_IDW_Stephanolepis_hispida_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2012.tif
-GMEX_IDW_Stephanolepis_hispida_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2013.tif
-GMEX_IDW_Stephanolepis_hispida_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2014.tif
-GMEX_IDW_Stephanolepis_hispida_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2015.tif
-GMEX_IDW_Stephanolepis_hispida_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2016.tif
-GMEX_IDW_Stephanolepis_hispida_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2017.tif
-GMEX_IDW_Stephanolepis_hispida_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2018.tif
-GMEX_IDW_Stephanolepis_hispida_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2019.tif
-GMEX_IDW_Stephanolepis_hispida_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2021.tif
-GMEX_IDW_Stephanolepis_hispida_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2022.tif
-GMEX_IDW_Stylocidaris_affinis_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2008.tif
-GMEX_IDW_Stylocidaris_affinis_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2009.tif
-GMEX_IDW_Stylocidaris_affinis_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2010.tif
-GMEX_IDW_Stylocidaris_affinis_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2011.tif
-GMEX_IDW_Stylocidaris_affinis_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2012.tif
-GMEX_IDW_Stylocidaris_affinis_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2013.tif
-GMEX_IDW_Stylocidaris_affinis_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2014.tif
-GMEX_IDW_Stylocidaris_affinis_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2015.tif
-GMEX_IDW_Stylocidaris_affinis_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2016.tif
-GMEX_IDW_Stylocidaris_affinis_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2017.tif
-GMEX_IDW_Stylocidaris_affinis_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2018.tif
-GMEX_IDW_Stylocidaris_affinis_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2019.tif
-GMEX_IDW_Stylocidaris_affinis_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2021.tif
-GMEX_IDW_Stylocidaris_affinis_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2022.tif
-GMEX_IDW_Syacium_gunteri_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2008.tif
-GMEX_IDW_Syacium_gunteri_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2009.tif
-GMEX_IDW_Syacium_gunteri_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2010.tif
-GMEX_IDW_Syacium_gunteri_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2011.tif
-GMEX_IDW_Syacium_gunteri_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2012.tif
-GMEX_IDW_Syacium_gunteri_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2013.tif
-GMEX_IDW_Syacium_gunteri_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2014.tif
-GMEX_IDW_Syacium_gunteri_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2015.tif
-GMEX_IDW_Syacium_gunteri_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2016.tif
-GMEX_IDW_Syacium_gunteri_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2017.tif
-GMEX_IDW_Syacium_gunteri_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2018.tif
-GMEX_IDW_Syacium_gunteri_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2019.tif
-GMEX_IDW_Syacium_gunteri_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2021.tif
-GMEX_IDW_Syacium_gunteri_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2022.tif
-GMEX_IDW_Syacium_papillosum_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2008.tif
-GMEX_IDW_Syacium_papillosum_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2009.tif
-GMEX_IDW_Syacium_papillosum_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2010.tif
-GMEX_IDW_Syacium_papillosum_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2011.tif
-GMEX_IDW_Syacium_papillosum_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2012.tif
-GMEX_IDW_Syacium_papillosum_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2013.tif
-GMEX_IDW_Syacium_papillosum_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2014.tif
-GMEX_IDW_Syacium_papillosum_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2015.tif
-GMEX_IDW_Syacium_papillosum_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2016.tif
-GMEX_IDW_Syacium_papillosum_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2017.tif
-GMEX_IDW_Syacium_papillosum_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2018.tif
-GMEX_IDW_Syacium_papillosum_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2019.tif
-GMEX_IDW_Syacium_papillosum_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2021.tif
-GMEX_IDW_Syacium_papillosum_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2022.tif
-GMEX_IDW_Synodus_foetens_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2008.tif
-GMEX_IDW_Synodus_foetens_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2009.tif
-GMEX_IDW_Synodus_foetens_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2010.tif
-GMEX_IDW_Synodus_foetens_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2011.tif
-GMEX_IDW_Synodus_foetens_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2012.tif
-GMEX_IDW_Synodus_foetens_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2013.tif
-GMEX_IDW_Synodus_foetens_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2014.tif
-GMEX_IDW_Synodus_foetens_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2015.tif
-GMEX_IDW_Synodus_foetens_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2016.tif
-GMEX_IDW_Synodus_foetens_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2017.tif
-GMEX_IDW_Synodus_foetens_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2018.tif
-GMEX_IDW_Synodus_foetens_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2019.tif
-GMEX_IDW_Synodus_foetens_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2021.tif
-GMEX_IDW_Synodus_foetens_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2022.tif
-GMEX_IDW_Synodus_intermedius_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2008.tif
-GMEX_IDW_Synodus_intermedius_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2009.tif
-GMEX_IDW_Synodus_intermedius_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2010.tif
-GMEX_IDW_Synodus_intermedius_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2011.tif
-GMEX_IDW_Synodus_intermedius_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2012.tif
-GMEX_IDW_Synodus_intermedius_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2013.tif
-GMEX_IDW_Synodus_intermedius_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2014.tif
-GMEX_IDW_Synodus_intermedius_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2015.tif
-GMEX_IDW_Synodus_intermedius_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2016.tif
-GMEX_IDW_Synodus_intermedius_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2017.tif
-GMEX_IDW_Synodus_intermedius_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2018.tif
-GMEX_IDW_Synodus_intermedius_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2019.tif
-GMEX_IDW_Synodus_intermedius_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2021.tif
-GMEX_IDW_Synodus_intermedius_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2022.tif
-GMEX_IDW_Synodus_poeyi_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2008.tif
-GMEX_IDW_Synodus_poeyi_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2009.tif
-GMEX_IDW_Synodus_poeyi_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2010.tif
-GMEX_IDW_Synodus_poeyi_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2011.tif
-GMEX_IDW_Synodus_poeyi_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2012.tif
-GMEX_IDW_Synodus_poeyi_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2013.tif
-GMEX_IDW_Synodus_poeyi_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2014.tif
-GMEX_IDW_Synodus_poeyi_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2015.tif
-GMEX_IDW_Synodus_poeyi_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2016.tif
-GMEX_IDW_Synodus_poeyi_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2017.tif
-GMEX_IDW_Synodus_poeyi_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2018.tif
-GMEX_IDW_Synodus_poeyi_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2019.tif
-GMEX_IDW_Synodus_poeyi_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2021.tif
-GMEX_IDW_Synodus_poeyi_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2022.tif
-GMEX_IDW_Trachinocephalus_myops_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2008.tif
-GMEX_IDW_Trachinocephalus_myops_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2009.tif
-GMEX_IDW_Trachinocephalus_myops_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2010.tif
-GMEX_IDW_Trachinocephalus_myops_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2011.tif
-GMEX_IDW_Trachinocephalus_myops_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2012.tif
-GMEX_IDW_Trachinocephalus_myops_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2013.tif
-GMEX_IDW_Trachinocephalus_myops_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2014.tif
-GMEX_IDW_Trachinocephalus_myops_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2015.tif
-GMEX_IDW_Trachinocephalus_myops_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2016.tif
-GMEX_IDW_Trachinocephalus_myops_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2017.tif
-GMEX_IDW_Trachinocephalus_myops_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2018.tif
-GMEX_IDW_Trachinocephalus_myops_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2019.tif
-GMEX_IDW_Trachinocephalus_myops_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2021.tif
-GMEX_IDW_Trachinocephalus_myops_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2022.tif
-GMEX_IDW_Trachurus_lathami_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2008.tif
-GMEX_IDW_Trachurus_lathami_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2009.tif
-GMEX_IDW_Trachurus_lathami_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2010.tif
-GMEX_IDW_Trachurus_lathami_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2011.tif
-GMEX_IDW_Trachurus_lathami_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2012.tif
-GMEX_IDW_Trachurus_lathami_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2013.tif
-GMEX_IDW_Trachurus_lathami_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2014.tif
-GMEX_IDW_Trachurus_lathami_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2015.tif
-GMEX_IDW_Trachurus_lathami_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2016.tif
-GMEX_IDW_Trachurus_lathami_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2017.tif
-GMEX_IDW_Trachurus_lathami_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2018.tif
-GMEX_IDW_Trachurus_lathami_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2019.tif
-GMEX_IDW_Trachurus_lathami_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2021.tif
-GMEX_IDW_Trachurus_lathami_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2022.tif
-GMEX_IDW_Trichiurus_lepturus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2008.tif
-GMEX_IDW_Trichiurus_lepturus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2009.tif
-GMEX_IDW_Trichiurus_lepturus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2010.tif
-GMEX_IDW_Trichiurus_lepturus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2011.tif
-GMEX_IDW_Trichiurus_lepturus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2012.tif
-GMEX_IDW_Trichiurus_lepturus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2013.tif
-GMEX_IDW_Trichiurus_lepturus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2014.tif
-GMEX_IDW_Trichiurus_lepturus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2015.tif
-GMEX_IDW_Trichiurus_lepturus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2016.tif
-GMEX_IDW_Trichiurus_lepturus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2017.tif
-GMEX_IDW_Trichiurus_lepturus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2018.tif
-GMEX_IDW_Trichiurus_lepturus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2019.tif
-GMEX_IDW_Trichiurus_lepturus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2021.tif
-GMEX_IDW_Trichiurus_lepturus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2022.tif
-GMEX_IDW_Trichopsetta_ventralis_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2008.tif
-GMEX_IDW_Trichopsetta_ventralis_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2009.tif
-GMEX_IDW_Trichopsetta_ventralis_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2010.tif
-GMEX_IDW_Trichopsetta_ventralis_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2011.tif
-GMEX_IDW_Trichopsetta_ventralis_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2012.tif
-GMEX_IDW_Trichopsetta_ventralis_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2013.tif
-GMEX_IDW_Trichopsetta_ventralis_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2014.tif
-GMEX_IDW_Trichopsetta_ventralis_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2015.tif
-GMEX_IDW_Trichopsetta_ventralis_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2016.tif
-GMEX_IDW_Trichopsetta_ventralis_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2017.tif
-GMEX_IDW_Trichopsetta_ventralis_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2018.tif
-GMEX_IDW_Trichopsetta_ventralis_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2019.tif
-GMEX_IDW_Trichopsetta_ventralis_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2021.tif
-GMEX_IDW_Trichopsetta_ventralis_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2022.tif
-GMEX_IDW_Upeneus_parvus_2008.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2008.tif
-GMEX_IDW_Upeneus_parvus_2009.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2009.tif
-GMEX_IDW_Upeneus_parvus_2010.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2010.tif
-GMEX_IDW_Upeneus_parvus_2011.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2011.tif
-GMEX_IDW_Upeneus_parvus_2012.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2012.tif
-GMEX_IDW_Upeneus_parvus_2013.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2013.tif
-GMEX_IDW_Upeneus_parvus_2014.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2014.tif
-GMEX_IDW_Upeneus_parvus_2015.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2015.tif
-GMEX_IDW_Upeneus_parvus_2016.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2016.tif
-GMEX_IDW_Upeneus_parvus_2017.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2017.tif
-GMEX_IDW_Upeneus_parvus_2018.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2018.tif
-GMEX_IDW_Upeneus_parvus_2019.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2019.tif
-GMEX_IDW_Upeneus_parvus_2021.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2021.tif
-GMEX_IDW_Upeneus_parvus_2022.tif,.tif,899.60 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2022.tif
-GMEX_IDW_Core_Species_Richness_2008.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2008.tif
-GMEX_IDW_Core_Species_Richness_2009.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2009.tif
-GMEX_IDW_Core_Species_Richness_2010.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2010.tif
-GMEX_IDW_Core_Species_Richness_2011.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2011.tif
-GMEX_IDW_Core_Species_Richness_2012.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2012.tif
-GMEX_IDW_Core_Species_Richness_2013.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2013.tif
-GMEX_IDW_Core_Species_Richness_2014.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2014.tif
-GMEX_IDW_Core_Species_Richness_2015.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2015.tif
-GMEX_IDW_Core_Species_Richness_2016.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2016.tif
-GMEX_IDW_Core_Species_Richness_2017.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2017.tif
-GMEX_IDW_Core_Species_Richness_2018.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2018.tif
-GMEX_IDW_Core_Species_Richness_2019.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2019.tif
-GMEX_IDW_Core_Species_Richness_2021.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2021.tif
-GMEX_IDW_Core_Species_Richness_2022.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2022.tif
-GMEX_IDW_Species_Richness_2008.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2008.tif
-GMEX_IDW_Species_Richness_2009.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2009.tif
-GMEX_IDW_Species_Richness_2010.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2010.tif
-GMEX_IDW_Species_Richness_2011.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2011.tif
-GMEX_IDW_Species_Richness_2012.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2012.tif
-GMEX_IDW_Species_Richness_2013.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2013.tif
-GMEX_IDW_Species_Richness_2014.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2014.tif
-GMEX_IDW_Species_Richness_2015.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2015.tif
-GMEX_IDW_Species_Richness_2016.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2016.tif
-GMEX_IDW_Species_Richness_2017.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2017.tif
-GMEX_IDW_Species_Richness_2018.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2018.tif
-GMEX_IDW_Species_Richness_2019.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:17:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2019.tif
-GMEX_IDW_Species_Richness_2021.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2021.tif
-GMEX_IDW_Species_Richness_2022.tif,.tif,899.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2022.tif
-GOA_IDW_Actinauge_verrillii_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Actinauge verrillii\GOA_IDW_Actinauge_verrillii_1993.tif
-GOA_IDW_Actinauge_verrillii_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Actinauge verrillii\GOA_IDW_Actinauge_verrillii_1996.tif
-GOA_IDW_Actinauge_verrillii_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Actinauge verrillii\GOA_IDW_Actinauge_verrillii_1999.tif
-GOA_IDW_Actinauge_verrillii_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Actinauge verrillii\GOA_IDW_Actinauge_verrillii_2003.tif
-GOA_IDW_Actinauge_verrillii_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Actinauge verrillii\GOA_IDW_Actinauge_verrillii_2005.tif
-GOA_IDW_Actinauge_verrillii_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Actinauge verrillii\GOA_IDW_Actinauge_verrillii_2007.tif
-GOA_IDW_Actinauge_verrillii_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Actinauge verrillii\GOA_IDW_Actinauge_verrillii_2009.tif
-GOA_IDW_Actinauge_verrillii_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Actinauge verrillii\GOA_IDW_Actinauge_verrillii_2011.tif
-GOA_IDW_Actinauge_verrillii_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Actinauge verrillii\GOA_IDW_Actinauge_verrillii_2013.tif
-GOA_IDW_Actinauge_verrillii_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Actinauge verrillii\GOA_IDW_Actinauge_verrillii_2015.tif
-GOA_IDW_Actinauge_verrillii_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Actinauge verrillii\GOA_IDW_Actinauge_verrillii_2017.tif
-GOA_IDW_Actinauge_verrillii_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Actinauge verrillii\GOA_IDW_Actinauge_verrillii_2019.tif
-GOA_IDW_Actinauge_verrillii_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Actinauge verrillii\GOA_IDW_Actinauge_verrillii_2021.tif
-GOA_IDW_Anoplopoma_fimbria_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_1993.tif
-GOA_IDW_Anoplopoma_fimbria_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_1996.tif
-GOA_IDW_Anoplopoma_fimbria_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_1999.tif
-GOA_IDW_Anoplopoma_fimbria_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_2003.tif
-GOA_IDW_Anoplopoma_fimbria_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_2005.tif
-GOA_IDW_Anoplopoma_fimbria_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_2007.tif
-GOA_IDW_Anoplopoma_fimbria_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_2009.tif
-GOA_IDW_Anoplopoma_fimbria_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_2011.tif
-GOA_IDW_Anoplopoma_fimbria_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_2013.tif
-GOA_IDW_Anoplopoma_fimbria_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_2015.tif
-GOA_IDW_Anoplopoma_fimbria_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_2017.tif
-GOA_IDW_Anoplopoma_fimbria_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_2019.tif
-GOA_IDW_Anoplopoma_fimbria_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_2021.tif
-GOA_IDW_Aphrocallistes_vastus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Aphrocallistes vastus\GOA_IDW_Aphrocallistes_vastus_1993.tif
-GOA_IDW_Aphrocallistes_vastus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Aphrocallistes vastus\GOA_IDW_Aphrocallistes_vastus_1996.tif
-GOA_IDW_Aphrocallistes_vastus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Aphrocallistes vastus\GOA_IDW_Aphrocallistes_vastus_1999.tif
-GOA_IDW_Aphrocallistes_vastus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Aphrocallistes vastus\GOA_IDW_Aphrocallistes_vastus_2003.tif
-GOA_IDW_Aphrocallistes_vastus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Aphrocallistes vastus\GOA_IDW_Aphrocallistes_vastus_2005.tif
-GOA_IDW_Aphrocallistes_vastus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Aphrocallistes vastus\GOA_IDW_Aphrocallistes_vastus_2007.tif
-GOA_IDW_Aphrocallistes_vastus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Aphrocallistes vastus\GOA_IDW_Aphrocallistes_vastus_2009.tif
-GOA_IDW_Aphrocallistes_vastus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Aphrocallistes vastus\GOA_IDW_Aphrocallistes_vastus_2011.tif
-GOA_IDW_Aphrocallistes_vastus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Aphrocallistes vastus\GOA_IDW_Aphrocallistes_vastus_2013.tif
-GOA_IDW_Aphrocallistes_vastus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Aphrocallistes vastus\GOA_IDW_Aphrocallistes_vastus_2015.tif
-GOA_IDW_Aphrocallistes_vastus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Aphrocallistes vastus\GOA_IDW_Aphrocallistes_vastus_2017.tif
-GOA_IDW_Aphrocallistes_vastus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Aphrocallistes vastus\GOA_IDW_Aphrocallistes_vastus_2019.tif
-GOA_IDW_Aphrocallistes_vastus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Aphrocallistes vastus\GOA_IDW_Aphrocallistes_vastus_2021.tif
-GOA_IDW_Atheresthes_stomias_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_1993.tif
-GOA_IDW_Atheresthes_stomias_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_1996.tif
-GOA_IDW_Atheresthes_stomias_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_1999.tif
-GOA_IDW_Atheresthes_stomias_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_2003.tif
-GOA_IDW_Atheresthes_stomias_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_2005.tif
-GOA_IDW_Atheresthes_stomias_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_2007.tif
-GOA_IDW_Atheresthes_stomias_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_2009.tif
-GOA_IDW_Atheresthes_stomias_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_2011.tif
-GOA_IDW_Atheresthes_stomias_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_2013.tif
-GOA_IDW_Atheresthes_stomias_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_2015.tif
-GOA_IDW_Atheresthes_stomias_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_2017.tif
-GOA_IDW_Atheresthes_stomias_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_2019.tif
-GOA_IDW_Atheresthes_stomias_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_2021.tif
-GOA_IDW_Bathymaster_signatus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_1993.tif
-GOA_IDW_Bathymaster_signatus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_1996.tif
-GOA_IDW_Bathymaster_signatus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_1999.tif
-GOA_IDW_Bathymaster_signatus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_2003.tif
-GOA_IDW_Bathymaster_signatus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_2005.tif
-GOA_IDW_Bathymaster_signatus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_2007.tif
-GOA_IDW_Bathymaster_signatus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_2009.tif
-GOA_IDW_Bathymaster_signatus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_2011.tif
-GOA_IDW_Bathymaster_signatus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_2013.tif
-GOA_IDW_Bathymaster_signatus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_2015.tif
-GOA_IDW_Bathymaster_signatus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_2017.tif
-GOA_IDW_Bathymaster_signatus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_2019.tif
-GOA_IDW_Bathymaster_signatus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_2021.tif
-GOA_IDW_Bathyraja_spp_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathyraja spp\GOA_IDW_Bathyraja_spp_1993.tif
-GOA_IDW_Bathyraja_spp_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathyraja spp\GOA_IDW_Bathyraja_spp_1996.tif
-GOA_IDW_Bathyraja_spp_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathyraja spp\GOA_IDW_Bathyraja_spp_1999.tif
-GOA_IDW_Bathyraja_spp_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathyraja spp\GOA_IDW_Bathyraja_spp_2003.tif
-GOA_IDW_Bathyraja_spp_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathyraja spp\GOA_IDW_Bathyraja_spp_2005.tif
-GOA_IDW_Bathyraja_spp_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathyraja spp\GOA_IDW_Bathyraja_spp_2007.tif
-GOA_IDW_Bathyraja_spp_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathyraja spp\GOA_IDW_Bathyraja_spp_2009.tif
-GOA_IDW_Bathyraja_spp_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathyraja spp\GOA_IDW_Bathyraja_spp_2011.tif
-GOA_IDW_Bathyraja_spp_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathyraja spp\GOA_IDW_Bathyraja_spp_2013.tif
-GOA_IDW_Bathyraja_spp_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathyraja spp\GOA_IDW_Bathyraja_spp_2015.tif
-GOA_IDW_Bathyraja_spp_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathyraja spp\GOA_IDW_Bathyraja_spp_2017.tif
-GOA_IDW_Bathyraja_spp_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathyraja spp\GOA_IDW_Bathyraja_spp_2019.tif
-GOA_IDW_Bathyraja_spp_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Bathyraja spp\GOA_IDW_Bathyraja_spp_2021.tif
-GOA_IDW_Beringraja_binoculata_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_1993.tif
-GOA_IDW_Beringraja_binoculata_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_1996.tif
-GOA_IDW_Beringraja_binoculata_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_1999.tif
-GOA_IDW_Beringraja_binoculata_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_2003.tif
-GOA_IDW_Beringraja_binoculata_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_2005.tif
-GOA_IDW_Beringraja_binoculata_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_2007.tif
-GOA_IDW_Beringraja_binoculata_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_2009.tif
-GOA_IDW_Beringraja_binoculata_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_2011.tif
-GOA_IDW_Beringraja_binoculata_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_2013.tif
-GOA_IDW_Beringraja_binoculata_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_2015.tif
-GOA_IDW_Beringraja_binoculata_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_2017.tif
-GOA_IDW_Beringraja_binoculata_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_2019.tif
-GOA_IDW_Beringraja_binoculata_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_2021.tif
-GOA_IDW_Beringraja_rhina_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_1993.tif
-GOA_IDW_Beringraja_rhina_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_1996.tif
-GOA_IDW_Beringraja_rhina_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_1999.tif
-GOA_IDW_Beringraja_rhina_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_2003.tif
-GOA_IDW_Beringraja_rhina_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_2005.tif
-GOA_IDW_Beringraja_rhina_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_2007.tif
-GOA_IDW_Beringraja_rhina_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_2009.tif
-GOA_IDW_Beringraja_rhina_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_2011.tif
-GOA_IDW_Beringraja_rhina_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_2013.tif
-GOA_IDW_Beringraja_rhina_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_2015.tif
-GOA_IDW_Beringraja_rhina_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_2017.tif
-GOA_IDW_Beringraja_rhina_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_2019.tif
-GOA_IDW_Beringraja_rhina_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_2021.tif
-GOA_IDW_Berryteuthis_magister_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_1993.tif
-GOA_IDW_Berryteuthis_magister_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_1996.tif
-GOA_IDW_Berryteuthis_magister_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_1999.tif
-GOA_IDW_Berryteuthis_magister_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_2003.tif
-GOA_IDW_Berryteuthis_magister_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_2005.tif
-GOA_IDW_Berryteuthis_magister_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_2007.tif
-GOA_IDW_Berryteuthis_magister_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_2009.tif
-GOA_IDW_Berryteuthis_magister_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_2011.tif
-GOA_IDW_Berryteuthis_magister_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_2013.tif
-GOA_IDW_Berryteuthis_magister_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_2015.tif
-GOA_IDW_Berryteuthis_magister_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_2017.tif
-GOA_IDW_Berryteuthis_magister_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_2019.tif
-GOA_IDW_Berryteuthis_magister_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_2021.tif
-GOA_IDW_Brisaster_latifrons_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Brisaster latifrons\GOA_IDW_Brisaster_latifrons_1993.tif
-GOA_IDW_Brisaster_latifrons_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Brisaster latifrons\GOA_IDW_Brisaster_latifrons_1996.tif
-GOA_IDW_Brisaster_latifrons_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Brisaster latifrons\GOA_IDW_Brisaster_latifrons_1999.tif
-GOA_IDW_Brisaster_latifrons_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Brisaster latifrons\GOA_IDW_Brisaster_latifrons_2003.tif
-GOA_IDW_Brisaster_latifrons_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Brisaster latifrons\GOA_IDW_Brisaster_latifrons_2005.tif
-GOA_IDW_Brisaster_latifrons_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Brisaster latifrons\GOA_IDW_Brisaster_latifrons_2007.tif
-GOA_IDW_Brisaster_latifrons_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Brisaster latifrons\GOA_IDW_Brisaster_latifrons_2009.tif
-GOA_IDW_Brisaster_latifrons_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Brisaster latifrons\GOA_IDW_Brisaster_latifrons_2011.tif
-GOA_IDW_Brisaster_latifrons_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Brisaster latifrons\GOA_IDW_Brisaster_latifrons_2013.tif
-GOA_IDW_Brisaster_latifrons_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Brisaster latifrons\GOA_IDW_Brisaster_latifrons_2015.tif
-GOA_IDW_Brisaster_latifrons_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Brisaster latifrons\GOA_IDW_Brisaster_latifrons_2017.tif
-GOA_IDW_Brisaster_latifrons_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Brisaster latifrons\GOA_IDW_Brisaster_latifrons_2019.tif
-GOA_IDW_Brisaster_latifrons_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Brisaster latifrons\GOA_IDW_Brisaster_latifrons_2021.tif
-GOA_IDW_Chionoecetes_bairdi_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_1993.tif
-GOA_IDW_Chionoecetes_bairdi_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_1996.tif
-GOA_IDW_Chionoecetes_bairdi_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_1999.tif
-GOA_IDW_Chionoecetes_bairdi_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_2003.tif
-GOA_IDW_Chionoecetes_bairdi_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_2005.tif
-GOA_IDW_Chionoecetes_bairdi_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_2007.tif
-GOA_IDW_Chionoecetes_bairdi_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_2009.tif
-GOA_IDW_Chionoecetes_bairdi_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_2011.tif
-GOA_IDW_Chionoecetes_bairdi_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_2013.tif
-GOA_IDW_Chionoecetes_bairdi_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_2015.tif
-GOA_IDW_Chionoecetes_bairdi_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_2017.tif
-GOA_IDW_Chionoecetes_bairdi_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_2019.tif
-GOA_IDW_Chionoecetes_bairdi_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_2021.tif
-GOA_IDW_Clupea_pallasii_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_1993.tif
-GOA_IDW_Clupea_pallasii_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_1996.tif
-GOA_IDW_Clupea_pallasii_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_1999.tif
-GOA_IDW_Clupea_pallasii_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_2003.tif
-GOA_IDW_Clupea_pallasii_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_2005.tif
-GOA_IDW_Clupea_pallasii_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_2007.tif
-GOA_IDW_Clupea_pallasii_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_2009.tif
-GOA_IDW_Clupea_pallasii_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_2011.tif
-GOA_IDW_Clupea_pallasii_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_2013.tif
-GOA_IDW_Clupea_pallasii_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_2015.tif
-GOA_IDW_Clupea_pallasii_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_2017.tif
-GOA_IDW_Clupea_pallasii_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_2019.tif
-GOA_IDW_Clupea_pallasii_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_2021.tif
-GOA_IDW_Crossaster_papposus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_1993.tif
-GOA_IDW_Crossaster_papposus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_1996.tif
-GOA_IDW_Crossaster_papposus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_1999.tif
-GOA_IDW_Crossaster_papposus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_2003.tif
-GOA_IDW_Crossaster_papposus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_2005.tif
-GOA_IDW_Crossaster_papposus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_2007.tif
-GOA_IDW_Crossaster_papposus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_2009.tif
-GOA_IDW_Crossaster_papposus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_2011.tif
-GOA_IDW_Crossaster_papposus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_2013.tif
-GOA_IDW_Crossaster_papposus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_2015.tif
-GOA_IDW_Crossaster_papposus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_2017.tif
-GOA_IDW_Crossaster_papposus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_2019.tif
-GOA_IDW_Crossaster_papposus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_2021.tif
-GOA_IDW_Ctenodiscus_crispatus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_1993.tif
-GOA_IDW_Ctenodiscus_crispatus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_1996.tif
-GOA_IDW_Ctenodiscus_crispatus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_1999.tif
-GOA_IDW_Ctenodiscus_crispatus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_2003.tif
-GOA_IDW_Ctenodiscus_crispatus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_2005.tif
-GOA_IDW_Ctenodiscus_crispatus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_2007.tif
-GOA_IDW_Ctenodiscus_crispatus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_2009.tif
-GOA_IDW_Ctenodiscus_crispatus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_2011.tif
-GOA_IDW_Ctenodiscus_crispatus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_2013.tif
-GOA_IDW_Ctenodiscus_crispatus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_2015.tif
-GOA_IDW_Ctenodiscus_crispatus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_2017.tif
-GOA_IDW_Ctenodiscus_crispatus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_2019.tif
-GOA_IDW_Ctenodiscus_crispatus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_2021.tif
-GOA_IDW_Cyanea_capillata_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Cyanea capillata\GOA_IDW_Cyanea_capillata_1993.tif
-GOA_IDW_Cyanea_capillata_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Cyanea capillata\GOA_IDW_Cyanea_capillata_1996.tif
-GOA_IDW_Cyanea_capillata_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Cyanea capillata\GOA_IDW_Cyanea_capillata_1999.tif
-GOA_IDW_Cyanea_capillata_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Cyanea capillata\GOA_IDW_Cyanea_capillata_2003.tif
-GOA_IDW_Cyanea_capillata_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Cyanea capillata\GOA_IDW_Cyanea_capillata_2005.tif
-GOA_IDW_Cyanea_capillata_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Cyanea capillata\GOA_IDW_Cyanea_capillata_2007.tif
-GOA_IDW_Cyanea_capillata_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Cyanea capillata\GOA_IDW_Cyanea_capillata_2009.tif
-GOA_IDW_Cyanea_capillata_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Cyanea capillata\GOA_IDW_Cyanea_capillata_2011.tif
-GOA_IDW_Cyanea_capillata_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Cyanea capillata\GOA_IDW_Cyanea_capillata_2013.tif
-GOA_IDW_Cyanea_capillata_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Cyanea capillata\GOA_IDW_Cyanea_capillata_2015.tif
-GOA_IDW_Cyanea_capillata_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Cyanea capillata\GOA_IDW_Cyanea_capillata_2017.tif
-GOA_IDW_Cyanea_capillata_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Cyanea capillata\GOA_IDW_Cyanea_capillata_2019.tif
-GOA_IDW_Cyanea_capillata_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Cyanea capillata\GOA_IDW_Cyanea_capillata_2021.tif
-GOA_IDW_Dasycottus_setiger_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_1993.tif
-GOA_IDW_Dasycottus_setiger_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_1996.tif
-GOA_IDW_Dasycottus_setiger_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_1999.tif
-GOA_IDW_Dasycottus_setiger_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_2003.tif
-GOA_IDW_Dasycottus_setiger_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_2005.tif
-GOA_IDW_Dasycottus_setiger_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_2007.tif
-GOA_IDW_Dasycottus_setiger_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_2009.tif
-GOA_IDW_Dasycottus_setiger_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_2011.tif
-GOA_IDW_Dasycottus_setiger_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_2013.tif
-GOA_IDW_Dasycottus_setiger_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_2015.tif
-GOA_IDW_Dasycottus_setiger_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_2017.tif
-GOA_IDW_Dasycottus_setiger_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_2019.tif
-GOA_IDW_Dasycottus_setiger_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_2021.tif
-GOA_IDW_Elassochirus_tenuimanus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_1993.tif
-GOA_IDW_Elassochirus_tenuimanus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_1996.tif
-GOA_IDW_Elassochirus_tenuimanus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_1999.tif
-GOA_IDW_Elassochirus_tenuimanus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_2003.tif
-GOA_IDW_Elassochirus_tenuimanus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_2005.tif
-GOA_IDW_Elassochirus_tenuimanus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_2007.tif
-GOA_IDW_Elassochirus_tenuimanus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_2009.tif
-GOA_IDW_Elassochirus_tenuimanus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_2011.tif
-GOA_IDW_Elassochirus_tenuimanus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_2013.tif
-GOA_IDW_Elassochirus_tenuimanus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_2015.tif
-GOA_IDW_Elassochirus_tenuimanus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_2017.tif
-GOA_IDW_Elassochirus_tenuimanus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_2019.tif
-GOA_IDW_Elassochirus_tenuimanus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_2021.tif
-GOA_IDW_Fusitriton_oregonensis_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Fusitriton oregonensis\GOA_IDW_Fusitriton_oregonensis_1993.tif
-GOA_IDW_Fusitriton_oregonensis_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Fusitriton oregonensis\GOA_IDW_Fusitriton_oregonensis_1996.tif
-GOA_IDW_Fusitriton_oregonensis_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Fusitriton oregonensis\GOA_IDW_Fusitriton_oregonensis_1999.tif
-GOA_IDW_Fusitriton_oregonensis_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Fusitriton oregonensis\GOA_IDW_Fusitriton_oregonensis_2003.tif
-GOA_IDW_Fusitriton_oregonensis_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Fusitriton oregonensis\GOA_IDW_Fusitriton_oregonensis_2005.tif
-GOA_IDW_Fusitriton_oregonensis_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Fusitriton oregonensis\GOA_IDW_Fusitriton_oregonensis_2007.tif
-GOA_IDW_Fusitriton_oregonensis_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Fusitriton oregonensis\GOA_IDW_Fusitriton_oregonensis_2009.tif
-GOA_IDW_Fusitriton_oregonensis_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Fusitriton oregonensis\GOA_IDW_Fusitriton_oregonensis_2011.tif
-GOA_IDW_Fusitriton_oregonensis_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Fusitriton oregonensis\GOA_IDW_Fusitriton_oregonensis_2013.tif
-GOA_IDW_Fusitriton_oregonensis_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Fusitriton oregonensis\GOA_IDW_Fusitriton_oregonensis_2015.tif
-GOA_IDW_Fusitriton_oregonensis_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Fusitriton oregonensis\GOA_IDW_Fusitriton_oregonensis_2017.tif
-GOA_IDW_Fusitriton_oregonensis_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Fusitriton oregonensis\GOA_IDW_Fusitriton_oregonensis_2019.tif
-GOA_IDW_Fusitriton_oregonensis_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Fusitriton oregonensis\GOA_IDW_Fusitriton_oregonensis_2021.tif
-GOA_IDW_Gadus_chalcogrammus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_1993.tif
-GOA_IDW_Gadus_chalcogrammus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_1996.tif
-GOA_IDW_Gadus_chalcogrammus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_1999.tif
-GOA_IDW_Gadus_chalcogrammus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_2003.tif
-GOA_IDW_Gadus_chalcogrammus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_2005.tif
-GOA_IDW_Gadus_chalcogrammus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_2007.tif
-GOA_IDW_Gadus_chalcogrammus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_2009.tif
-GOA_IDW_Gadus_chalcogrammus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_2011.tif
-GOA_IDW_Gadus_chalcogrammus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_2013.tif
-GOA_IDW_Gadus_chalcogrammus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_2015.tif
-GOA_IDW_Gadus_chalcogrammus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_2017.tif
-GOA_IDW_Gadus_chalcogrammus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_2019.tif
-GOA_IDW_Gadus_chalcogrammus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_2021.tif
-GOA_IDW_Gadus_macrocephalus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_1993.tif
-GOA_IDW_Gadus_macrocephalus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_1996.tif
-GOA_IDW_Gadus_macrocephalus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_1999.tif
-GOA_IDW_Gadus_macrocephalus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_2003.tif
-GOA_IDW_Gadus_macrocephalus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_2005.tif
-GOA_IDW_Gadus_macrocephalus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_2007.tif
-GOA_IDW_Gadus_macrocephalus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:18:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_2009.tif
-GOA_IDW_Gadus_macrocephalus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_2011.tif
-GOA_IDW_Gadus_macrocephalus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_2013.tif
-GOA_IDW_Gadus_macrocephalus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_2015.tif
-GOA_IDW_Gadus_macrocephalus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_2017.tif
-GOA_IDW_Gadus_macrocephalus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_2019.tif
-GOA_IDW_Gadus_macrocephalus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_2021.tif
-GOA_IDW_Glyptocephalus_zachirus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_1993.tif
-GOA_IDW_Glyptocephalus_zachirus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_1996.tif
-GOA_IDW_Glyptocephalus_zachirus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_1999.tif
-GOA_IDW_Glyptocephalus_zachirus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_2003.tif
-GOA_IDW_Glyptocephalus_zachirus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_2005.tif
-GOA_IDW_Glyptocephalus_zachirus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_2007.tif
-GOA_IDW_Glyptocephalus_zachirus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_2009.tif
-GOA_IDW_Glyptocephalus_zachirus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_2011.tif
-GOA_IDW_Glyptocephalus_zachirus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_2013.tif
-GOA_IDW_Glyptocephalus_zachirus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_2015.tif
-GOA_IDW_Glyptocephalus_zachirus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_2017.tif
-GOA_IDW_Glyptocephalus_zachirus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_2019.tif
-GOA_IDW_Glyptocephalus_zachirus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_2021.tif
-GOA_IDW_Gorgonocephalus_eucnemis_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_1993.tif
-GOA_IDW_Gorgonocephalus_eucnemis_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_1996.tif
-GOA_IDW_Gorgonocephalus_eucnemis_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_1999.tif
-GOA_IDW_Gorgonocephalus_eucnemis_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_2003.tif
-GOA_IDW_Gorgonocephalus_eucnemis_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_2005.tif
-GOA_IDW_Gorgonocephalus_eucnemis_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_2007.tif
-GOA_IDW_Gorgonocephalus_eucnemis_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_2009.tif
-GOA_IDW_Gorgonocephalus_eucnemis_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_2011.tif
-GOA_IDW_Gorgonocephalus_eucnemis_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_2013.tif
-GOA_IDW_Gorgonocephalus_eucnemis_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_2015.tif
-GOA_IDW_Gorgonocephalus_eucnemis_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_2017.tif
-GOA_IDW_Gorgonocephalus_eucnemis_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_2019.tif
-GOA_IDW_Gorgonocephalus_eucnemis_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_2021.tif
-GOA_IDW_Hemilepidotus_jordani_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_1993.tif
-GOA_IDW_Hemilepidotus_jordani_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_1996.tif
-GOA_IDW_Hemilepidotus_jordani_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_1999.tif
-GOA_IDW_Hemilepidotus_jordani_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_2003.tif
-GOA_IDW_Hemilepidotus_jordani_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_2005.tif
-GOA_IDW_Hemilepidotus_jordani_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_2007.tif
-GOA_IDW_Hemilepidotus_jordani_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_2009.tif
-GOA_IDW_Hemilepidotus_jordani_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_2011.tif
-GOA_IDW_Hemilepidotus_jordani_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_2013.tif
-GOA_IDW_Hemilepidotus_jordani_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_2015.tif
-GOA_IDW_Hemilepidotus_jordani_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_2017.tif
-GOA_IDW_Hemilepidotus_jordani_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_2019.tif
-GOA_IDW_Hemilepidotus_jordani_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_2021.tif
-GOA_IDW_Hemitripterus_bolini_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_1993.tif
-GOA_IDW_Hemitripterus_bolini_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_1996.tif
-GOA_IDW_Hemitripterus_bolini_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_1999.tif
-GOA_IDW_Hemitripterus_bolini_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_2003.tif
-GOA_IDW_Hemitripterus_bolini_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_2005.tif
-GOA_IDW_Hemitripterus_bolini_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_2007.tif
-GOA_IDW_Hemitripterus_bolini_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_2009.tif
-GOA_IDW_Hemitripterus_bolini_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_2011.tif
-GOA_IDW_Hemitripterus_bolini_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_2013.tif
-GOA_IDW_Hemitripterus_bolini_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_2015.tif
-GOA_IDW_Hemitripterus_bolini_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_2017.tif
-GOA_IDW_Hemitripterus_bolini_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_2019.tif
-GOA_IDW_Hemitripterus_bolini_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_2021.tif
-GOA_IDW_Hippoglossoides_elassodon_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_1993.tif
-GOA_IDW_Hippoglossoides_elassodon_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_1996.tif
-GOA_IDW_Hippoglossoides_elassodon_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_1999.tif
-GOA_IDW_Hippoglossoides_elassodon_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_2003.tif
-GOA_IDW_Hippoglossoides_elassodon_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_2005.tif
-GOA_IDW_Hippoglossoides_elassodon_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_2007.tif
-GOA_IDW_Hippoglossoides_elassodon_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_2009.tif
-GOA_IDW_Hippoglossoides_elassodon_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_2011.tif
-GOA_IDW_Hippoglossoides_elassodon_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_2013.tif
-GOA_IDW_Hippoglossoides_elassodon_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_2015.tif
-GOA_IDW_Hippoglossoides_elassodon_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_2017.tif
-GOA_IDW_Hippoglossoides_elassodon_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_2019.tif
-GOA_IDW_Hippoglossoides_elassodon_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_2021.tif
-GOA_IDW_Hippoglossus_stenolepis_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_1993.tif
-GOA_IDW_Hippoglossus_stenolepis_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_1996.tif
-GOA_IDW_Hippoglossus_stenolepis_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_1999.tif
-GOA_IDW_Hippoglossus_stenolepis_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_2003.tif
-GOA_IDW_Hippoglossus_stenolepis_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_2005.tif
-GOA_IDW_Hippoglossus_stenolepis_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_2007.tif
-GOA_IDW_Hippoglossus_stenolepis_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_2009.tif
-GOA_IDW_Hippoglossus_stenolepis_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_2011.tif
-GOA_IDW_Hippoglossus_stenolepis_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_2013.tif
-GOA_IDW_Hippoglossus_stenolepis_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_2015.tif
-GOA_IDW_Hippoglossus_stenolepis_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_2017.tif
-GOA_IDW_Hippoglossus_stenolepis_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_2019.tif
-GOA_IDW_Hippoglossus_stenolepis_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_2021.tif
-GOA_IDW_Hyas_lyratus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_1993.tif
-GOA_IDW_Hyas_lyratus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_1996.tif
-GOA_IDW_Hyas_lyratus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_1999.tif
-GOA_IDW_Hyas_lyratus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_2003.tif
-GOA_IDW_Hyas_lyratus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_2005.tif
-GOA_IDW_Hyas_lyratus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_2007.tif
-GOA_IDW_Hyas_lyratus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_2009.tif
-GOA_IDW_Hyas_lyratus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_2011.tif
-GOA_IDW_Hyas_lyratus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_2013.tif
-GOA_IDW_Hyas_lyratus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_2015.tif
-GOA_IDW_Hyas_lyratus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_2017.tif
-GOA_IDW_Hyas_lyratus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_2019.tif
-GOA_IDW_Hyas_lyratus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_2021.tif
-GOA_IDW_Hydrolagus_colliei_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_1993.tif
-GOA_IDW_Hydrolagus_colliei_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_1996.tif
-GOA_IDW_Hydrolagus_colliei_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_1999.tif
-GOA_IDW_Hydrolagus_colliei_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_2003.tif
-GOA_IDW_Hydrolagus_colliei_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_2005.tif
-GOA_IDW_Hydrolagus_colliei_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_2007.tif
-GOA_IDW_Hydrolagus_colliei_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_2009.tif
-GOA_IDW_Hydrolagus_colliei_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_2011.tif
-GOA_IDW_Hydrolagus_colliei_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_2013.tif
-GOA_IDW_Hydrolagus_colliei_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_2015.tif
-GOA_IDW_Hydrolagus_colliei_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_2017.tif
-GOA_IDW_Hydrolagus_colliei_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_2019.tif
-GOA_IDW_Hydrolagus_colliei_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_2021.tif
-GOA_IDW_Isopsetta_isolepis_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_1993.tif
-GOA_IDW_Isopsetta_isolepis_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_1996.tif
-GOA_IDW_Isopsetta_isolepis_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_1999.tif
-GOA_IDW_Isopsetta_isolepis_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_2003.tif
-GOA_IDW_Isopsetta_isolepis_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_2005.tif
-GOA_IDW_Isopsetta_isolepis_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_2007.tif
-GOA_IDW_Isopsetta_isolepis_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_2009.tif
-GOA_IDW_Isopsetta_isolepis_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_2011.tif
-GOA_IDW_Isopsetta_isolepis_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_2013.tif
-GOA_IDW_Isopsetta_isolepis_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_2015.tif
-GOA_IDW_Isopsetta_isolepis_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_2017.tif
-GOA_IDW_Isopsetta_isolepis_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_2019.tif
-GOA_IDW_Isopsetta_isolepis_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_2021.tif
-GOA_IDW_Lepidopsetta_sp_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_1993.tif
-GOA_IDW_Lepidopsetta_sp_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_1996.tif
-GOA_IDW_Lepidopsetta_sp_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_1999.tif
-GOA_IDW_Lepidopsetta_sp_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_2003.tif
-GOA_IDW_Lepidopsetta_sp_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_2005.tif
-GOA_IDW_Lepidopsetta_sp_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_2007.tif
-GOA_IDW_Lepidopsetta_sp_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_2009.tif
-GOA_IDW_Lepidopsetta_sp_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_2011.tif
-GOA_IDW_Lepidopsetta_sp_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_2013.tif
-GOA_IDW_Lepidopsetta_sp_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_2015.tif
-GOA_IDW_Lepidopsetta_sp_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_2017.tif
-GOA_IDW_Lepidopsetta_sp_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_2019.tif
-GOA_IDW_Lepidopsetta_sp_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_2021.tif
-GOA_IDW_Lethasterias_nanimensis_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_1993.tif
-GOA_IDW_Lethasterias_nanimensis_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_1996.tif
-GOA_IDW_Lethasterias_nanimensis_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_1999.tif
-GOA_IDW_Lethasterias_nanimensis_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_2003.tif
-GOA_IDW_Lethasterias_nanimensis_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_2005.tif
-GOA_IDW_Lethasterias_nanimensis_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_2007.tif
-GOA_IDW_Lethasterias_nanimensis_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_2009.tif
-GOA_IDW_Lethasterias_nanimensis_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_2011.tif
-GOA_IDW_Lethasterias_nanimensis_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_2013.tif
-GOA_IDW_Lethasterias_nanimensis_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_2015.tif
-GOA_IDW_Lethasterias_nanimensis_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_2017.tif
-GOA_IDW_Lethasterias_nanimensis_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_2019.tif
-GOA_IDW_Lethasterias_nanimensis_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_2021.tif
-GOA_IDW_Limanda_aspera_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_1993.tif
-GOA_IDW_Limanda_aspera_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_1996.tif
-GOA_IDW_Limanda_aspera_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_1999.tif
-GOA_IDW_Limanda_aspera_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_2003.tif
-GOA_IDW_Limanda_aspera_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_2005.tif
-GOA_IDW_Limanda_aspera_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_2007.tif
-GOA_IDW_Limanda_aspera_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_2009.tif
-GOA_IDW_Limanda_aspera_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_2011.tif
-GOA_IDW_Limanda_aspera_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_2013.tif
-GOA_IDW_Limanda_aspera_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_2015.tif
-GOA_IDW_Limanda_aspera_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_2017.tif
-GOA_IDW_Limanda_aspera_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_2019.tif
-GOA_IDW_Limanda_aspera_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_2021.tif
-GOA_IDW_Lycodes_brevipes_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_1993.tif
-GOA_IDW_Lycodes_brevipes_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_1996.tif
-GOA_IDW_Lycodes_brevipes_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_1999.tif
-GOA_IDW_Lycodes_brevipes_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_2003.tif
-GOA_IDW_Lycodes_brevipes_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_2005.tif
-GOA_IDW_Lycodes_brevipes_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_2007.tif
-GOA_IDW_Lycodes_brevipes_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_2009.tif
-GOA_IDW_Lycodes_brevipes_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_2011.tif
-GOA_IDW_Lycodes_brevipes_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_2013.tif
-GOA_IDW_Lycodes_brevipes_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_2015.tif
-GOA_IDW_Lycodes_brevipes_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_2017.tif
-GOA_IDW_Lycodes_brevipes_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_2019.tif
-GOA_IDW_Lycodes_brevipes_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_2021.tif
-GOA_IDW_Lycodes_palearis_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_1993.tif
-GOA_IDW_Lycodes_palearis_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_1996.tif
-GOA_IDW_Lycodes_palearis_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_1999.tif
-GOA_IDW_Lycodes_palearis_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_2003.tif
-GOA_IDW_Lycodes_palearis_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_2005.tif
-GOA_IDW_Lycodes_palearis_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_2007.tif
-GOA_IDW_Lycodes_palearis_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_2009.tif
-GOA_IDW_Lycodes_palearis_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_2011.tif
-GOA_IDW_Lycodes_palearis_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_2013.tif
-GOA_IDW_Lycodes_palearis_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_2015.tif
-GOA_IDW_Lycodes_palearis_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_2017.tif
-GOA_IDW_Lycodes_palearis_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_2019.tif
-GOA_IDW_Lycodes_palearis_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_2021.tif
-GOA_IDW_Lyopsetta_exilis_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_1993.tif
-GOA_IDW_Lyopsetta_exilis_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_1996.tif
-GOA_IDW_Lyopsetta_exilis_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_1999.tif
-GOA_IDW_Lyopsetta_exilis_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_2003.tif
-GOA_IDW_Lyopsetta_exilis_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_2005.tif
-GOA_IDW_Lyopsetta_exilis_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_2007.tif
-GOA_IDW_Lyopsetta_exilis_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_2009.tif
-GOA_IDW_Lyopsetta_exilis_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_2011.tif
-GOA_IDW_Lyopsetta_exilis_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_2013.tif
-GOA_IDW_Lyopsetta_exilis_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_2015.tif
-GOA_IDW_Lyopsetta_exilis_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_2017.tif
-GOA_IDW_Lyopsetta_exilis_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_2019.tif
-GOA_IDW_Lyopsetta_exilis_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_2021.tif
-GOA_IDW_Malacocottus_zonurus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_1993.tif
-GOA_IDW_Malacocottus_zonurus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_1996.tif
-GOA_IDW_Malacocottus_zonurus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_1999.tif
-GOA_IDW_Malacocottus_zonurus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_2003.tif
-GOA_IDW_Malacocottus_zonurus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_2005.tif
-GOA_IDW_Malacocottus_zonurus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_2007.tif
-GOA_IDW_Malacocottus_zonurus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_2009.tif
-GOA_IDW_Malacocottus_zonurus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_2011.tif
-GOA_IDW_Malacocottus_zonurus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_2013.tif
-GOA_IDW_Malacocottus_zonurus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_2015.tif
-GOA_IDW_Malacocottus_zonurus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_2017.tif
-GOA_IDW_Malacocottus_zonurus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_2019.tif
-GOA_IDW_Malacocottus_zonurus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_2021.tif
-GOA_IDW_Mallotus_villosus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_1993.tif
-GOA_IDW_Mallotus_villosus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_1996.tif
-GOA_IDW_Mallotus_villosus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_1999.tif
-GOA_IDW_Mallotus_villosus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_2003.tif
-GOA_IDW_Mallotus_villosus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_2005.tif
-GOA_IDW_Mallotus_villosus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_2007.tif
-GOA_IDW_Mallotus_villosus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_2009.tif
-GOA_IDW_Mallotus_villosus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_2011.tif
-GOA_IDW_Mallotus_villosus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_2013.tif
-GOA_IDW_Mallotus_villosus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_2015.tif
-GOA_IDW_Mallotus_villosus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_2017.tif
-GOA_IDW_Mallotus_villosus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_2019.tif
-GOA_IDW_Mallotus_villosus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_2021.tif
-GOA_IDW_Metridium_farcimen_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Metridium farcimen\GOA_IDW_Metridium_farcimen_1993.tif
-GOA_IDW_Metridium_farcimen_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Metridium farcimen\GOA_IDW_Metridium_farcimen_1996.tif
-GOA_IDW_Metridium_farcimen_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Metridium farcimen\GOA_IDW_Metridium_farcimen_1999.tif
-GOA_IDW_Metridium_farcimen_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Metridium farcimen\GOA_IDW_Metridium_farcimen_2003.tif
-GOA_IDW_Metridium_farcimen_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Metridium farcimen\GOA_IDW_Metridium_farcimen_2005.tif
-GOA_IDW_Metridium_farcimen_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Metridium farcimen\GOA_IDW_Metridium_farcimen_2007.tif
-GOA_IDW_Metridium_farcimen_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Metridium farcimen\GOA_IDW_Metridium_farcimen_2009.tif
-GOA_IDW_Metridium_farcimen_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Metridium farcimen\GOA_IDW_Metridium_farcimen_2011.tif
-GOA_IDW_Metridium_farcimen_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Metridium farcimen\GOA_IDW_Metridium_farcimen_2013.tif
-GOA_IDW_Metridium_farcimen_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Metridium farcimen\GOA_IDW_Metridium_farcimen_2015.tif
-GOA_IDW_Metridium_farcimen_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Metridium farcimen\GOA_IDW_Metridium_farcimen_2017.tif
-GOA_IDW_Metridium_farcimen_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Metridium farcimen\GOA_IDW_Metridium_farcimen_2019.tif
-GOA_IDW_Metridium_farcimen_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Metridium farcimen\GOA_IDW_Metridium_farcimen_2021.tif
-GOA_IDW_Microstomus_pacificus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:19:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_1993.tif
-GOA_IDW_Microstomus_pacificus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_1996.tif
-GOA_IDW_Microstomus_pacificus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_1999.tif
-GOA_IDW_Microstomus_pacificus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_2003.tif
-GOA_IDW_Microstomus_pacificus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_2005.tif
-GOA_IDW_Microstomus_pacificus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_2007.tif
-GOA_IDW_Microstomus_pacificus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_2009.tif
-GOA_IDW_Microstomus_pacificus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_2011.tif
-GOA_IDW_Microstomus_pacificus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_2013.tif
-GOA_IDW_Microstomus_pacificus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_2015.tif
-GOA_IDW_Microstomus_pacificus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_2017.tif
-GOA_IDW_Microstomus_pacificus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_2019.tif
-GOA_IDW_Microstomus_pacificus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_2021.tif
-GOA_IDW_Mycale_Mycale_loveni_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mycale Mycale loveni\GOA_IDW_Mycale_Mycale_loveni_1993.tif
-GOA_IDW_Mycale_Mycale_loveni_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mycale Mycale loveni\GOA_IDW_Mycale_Mycale_loveni_1996.tif
-GOA_IDW_Mycale_Mycale_loveni_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mycale Mycale loveni\GOA_IDW_Mycale_Mycale_loveni_1999.tif
-GOA_IDW_Mycale_Mycale_loveni_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mycale Mycale loveni\GOA_IDW_Mycale_Mycale_loveni_2003.tif
-GOA_IDW_Mycale_Mycale_loveni_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mycale Mycale loveni\GOA_IDW_Mycale_Mycale_loveni_2005.tif
-GOA_IDW_Mycale_Mycale_loveni_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mycale Mycale loveni\GOA_IDW_Mycale_Mycale_loveni_2007.tif
-GOA_IDW_Mycale_Mycale_loveni_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mycale Mycale loveni\GOA_IDW_Mycale_Mycale_loveni_2009.tif
-GOA_IDW_Mycale_Mycale_loveni_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mycale Mycale loveni\GOA_IDW_Mycale_Mycale_loveni_2011.tif
-GOA_IDW_Mycale_Mycale_loveni_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mycale Mycale loveni\GOA_IDW_Mycale_Mycale_loveni_2013.tif
-GOA_IDW_Mycale_Mycale_loveni_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mycale Mycale loveni\GOA_IDW_Mycale_Mycale_loveni_2015.tif
-GOA_IDW_Mycale_Mycale_loveni_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mycale Mycale loveni\GOA_IDW_Mycale_Mycale_loveni_2017.tif
-GOA_IDW_Mycale_Mycale_loveni_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mycale Mycale loveni\GOA_IDW_Mycale_Mycale_loveni_2019.tif
-GOA_IDW_Mycale_Mycale_loveni_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Mycale Mycale loveni\GOA_IDW_Mycale_Mycale_loveni_2021.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_1993.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_1996.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_1999.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_2003.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_2005.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_2007.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_2009.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_2011.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_2013.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_2015.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_2017.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_2019.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_2021.tif
-GOA_IDW_Ophiodon_elongatus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_1993.tif
-GOA_IDW_Ophiodon_elongatus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_1996.tif
-GOA_IDW_Ophiodon_elongatus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_1999.tif
-GOA_IDW_Ophiodon_elongatus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_2003.tif
-GOA_IDW_Ophiodon_elongatus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_2005.tif
-GOA_IDW_Ophiodon_elongatus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_2007.tif
-GOA_IDW_Ophiodon_elongatus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_2009.tif
-GOA_IDW_Ophiodon_elongatus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_2011.tif
-GOA_IDW_Ophiodon_elongatus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_2013.tif
-GOA_IDW_Ophiodon_elongatus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_2015.tif
-GOA_IDW_Ophiodon_elongatus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_2017.tif
-GOA_IDW_Ophiodon_elongatus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_2019.tif
-GOA_IDW_Ophiodon_elongatus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_2021.tif
-GOA_IDW_Ophiura_sarsii_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiura sarsii\GOA_IDW_Ophiura_sarsii_1993.tif
-GOA_IDW_Ophiura_sarsii_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiura sarsii\GOA_IDW_Ophiura_sarsii_1996.tif
-GOA_IDW_Ophiura_sarsii_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiura sarsii\GOA_IDW_Ophiura_sarsii_1999.tif
-GOA_IDW_Ophiura_sarsii_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiura sarsii\GOA_IDW_Ophiura_sarsii_2003.tif
-GOA_IDW_Ophiura_sarsii_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiura sarsii\GOA_IDW_Ophiura_sarsii_2005.tif
-GOA_IDW_Ophiura_sarsii_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiura sarsii\GOA_IDW_Ophiura_sarsii_2007.tif
-GOA_IDW_Ophiura_sarsii_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiura sarsii\GOA_IDW_Ophiura_sarsii_2009.tif
-GOA_IDW_Ophiura_sarsii_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiura sarsii\GOA_IDW_Ophiura_sarsii_2011.tif
-GOA_IDW_Ophiura_sarsii_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiura sarsii\GOA_IDW_Ophiura_sarsii_2013.tif
-GOA_IDW_Ophiura_sarsii_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiura sarsii\GOA_IDW_Ophiura_sarsii_2015.tif
-GOA_IDW_Ophiura_sarsii_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiura sarsii\GOA_IDW_Ophiura_sarsii_2017.tif
-GOA_IDW_Ophiura_sarsii_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiura sarsii\GOA_IDW_Ophiura_sarsii_2019.tif
-GOA_IDW_Ophiura_sarsii_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Ophiura sarsii\GOA_IDW_Ophiura_sarsii_2021.tif
-GOA_IDW_Oregonia_gracilis_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_1993.tif
-GOA_IDW_Oregonia_gracilis_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_1996.tif
-GOA_IDW_Oregonia_gracilis_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_1999.tif
-GOA_IDW_Oregonia_gracilis_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_2003.tif
-GOA_IDW_Oregonia_gracilis_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_2005.tif
-GOA_IDW_Oregonia_gracilis_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_2007.tif
-GOA_IDW_Oregonia_gracilis_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_2009.tif
-GOA_IDW_Oregonia_gracilis_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_2011.tif
-GOA_IDW_Oregonia_gracilis_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_2013.tif
-GOA_IDW_Oregonia_gracilis_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_2015.tif
-GOA_IDW_Oregonia_gracilis_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_2017.tif
-GOA_IDW_Oregonia_gracilis_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_2019.tif
-GOA_IDW_Oregonia_gracilis_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_2021.tif
-GOA_IDW_Pagurus_aleuticus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_1993.tif
-GOA_IDW_Pagurus_aleuticus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_1996.tif
-GOA_IDW_Pagurus_aleuticus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_1999.tif
-GOA_IDW_Pagurus_aleuticus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_2003.tif
-GOA_IDW_Pagurus_aleuticus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_2005.tif
-GOA_IDW_Pagurus_aleuticus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_2007.tif
-GOA_IDW_Pagurus_aleuticus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_2009.tif
-GOA_IDW_Pagurus_aleuticus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_2011.tif
-GOA_IDW_Pagurus_aleuticus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_2013.tif
-GOA_IDW_Pagurus_aleuticus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_2015.tif
-GOA_IDW_Pagurus_aleuticus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_2017.tif
-GOA_IDW_Pagurus_aleuticus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_2019.tif
-GOA_IDW_Pagurus_aleuticus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_2021.tif
-GOA_IDW_Pandalus_dispar_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus dispar\GOA_IDW_Pandalus_dispar_1993.tif
-GOA_IDW_Pandalus_dispar_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus dispar\GOA_IDW_Pandalus_dispar_1996.tif
-GOA_IDW_Pandalus_dispar_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus dispar\GOA_IDW_Pandalus_dispar_1999.tif
-GOA_IDW_Pandalus_dispar_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus dispar\GOA_IDW_Pandalus_dispar_2003.tif
-GOA_IDW_Pandalus_dispar_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus dispar\GOA_IDW_Pandalus_dispar_2005.tif
-GOA_IDW_Pandalus_dispar_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus dispar\GOA_IDW_Pandalus_dispar_2007.tif
-GOA_IDW_Pandalus_dispar_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus dispar\GOA_IDW_Pandalus_dispar_2009.tif
-GOA_IDW_Pandalus_dispar_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus dispar\GOA_IDW_Pandalus_dispar_2011.tif
-GOA_IDW_Pandalus_dispar_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus dispar\GOA_IDW_Pandalus_dispar_2013.tif
-GOA_IDW_Pandalus_dispar_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus dispar\GOA_IDW_Pandalus_dispar_2015.tif
-GOA_IDW_Pandalus_dispar_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus dispar\GOA_IDW_Pandalus_dispar_2017.tif
-GOA_IDW_Pandalus_dispar_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus dispar\GOA_IDW_Pandalus_dispar_2019.tif
-GOA_IDW_Pandalus_dispar_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus dispar\GOA_IDW_Pandalus_dispar_2021.tif
-GOA_IDW_Pandalus_eous_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus eous\GOA_IDW_Pandalus_eous_1993.tif
-GOA_IDW_Pandalus_eous_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus eous\GOA_IDW_Pandalus_eous_1996.tif
-GOA_IDW_Pandalus_eous_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus eous\GOA_IDW_Pandalus_eous_1999.tif
-GOA_IDW_Pandalus_eous_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus eous\GOA_IDW_Pandalus_eous_2003.tif
-GOA_IDW_Pandalus_eous_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus eous\GOA_IDW_Pandalus_eous_2005.tif
-GOA_IDW_Pandalus_eous_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus eous\GOA_IDW_Pandalus_eous_2007.tif
-GOA_IDW_Pandalus_eous_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus eous\GOA_IDW_Pandalus_eous_2009.tif
-GOA_IDW_Pandalus_eous_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus eous\GOA_IDW_Pandalus_eous_2011.tif
-GOA_IDW_Pandalus_eous_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus eous\GOA_IDW_Pandalus_eous_2013.tif
-GOA_IDW_Pandalus_eous_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus eous\GOA_IDW_Pandalus_eous_2015.tif
-GOA_IDW_Pandalus_eous_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus eous\GOA_IDW_Pandalus_eous_2017.tif
-GOA_IDW_Pandalus_eous_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus eous\GOA_IDW_Pandalus_eous_2019.tif
-GOA_IDW_Pandalus_eous_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus eous\GOA_IDW_Pandalus_eous_2021.tif
-GOA_IDW_Pandalus_jordani_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus jordani\GOA_IDW_Pandalus_jordani_1993.tif
-GOA_IDW_Pandalus_jordani_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus jordani\GOA_IDW_Pandalus_jordani_1996.tif
-GOA_IDW_Pandalus_jordani_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus jordani\GOA_IDW_Pandalus_jordani_1999.tif
-GOA_IDW_Pandalus_jordani_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus jordani\GOA_IDW_Pandalus_jordani_2003.tif
-GOA_IDW_Pandalus_jordani_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus jordani\GOA_IDW_Pandalus_jordani_2005.tif
-GOA_IDW_Pandalus_jordani_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus jordani\GOA_IDW_Pandalus_jordani_2007.tif
-GOA_IDW_Pandalus_jordani_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus jordani\GOA_IDW_Pandalus_jordani_2009.tif
-GOA_IDW_Pandalus_jordani_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus jordani\GOA_IDW_Pandalus_jordani_2011.tif
-GOA_IDW_Pandalus_jordani_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus jordani\GOA_IDW_Pandalus_jordani_2013.tif
-GOA_IDW_Pandalus_jordani_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus jordani\GOA_IDW_Pandalus_jordani_2015.tif
-GOA_IDW_Pandalus_jordani_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus jordani\GOA_IDW_Pandalus_jordani_2017.tif
-GOA_IDW_Pandalus_jordani_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus jordani\GOA_IDW_Pandalus_jordani_2019.tif
-GOA_IDW_Pandalus_jordani_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pandalus jordani\GOA_IDW_Pandalus_jordani_2021.tif
-GOA_IDW_Parophrys_vetulus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_1993.tif
-GOA_IDW_Parophrys_vetulus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_1996.tif
-GOA_IDW_Parophrys_vetulus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_1999.tif
-GOA_IDW_Parophrys_vetulus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_2003.tif
-GOA_IDW_Parophrys_vetulus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_2005.tif
-GOA_IDW_Parophrys_vetulus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_2007.tif
-GOA_IDW_Parophrys_vetulus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_2009.tif
-GOA_IDW_Parophrys_vetulus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_2011.tif
-GOA_IDW_Parophrys_vetulus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_2013.tif
-GOA_IDW_Parophrys_vetulus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_2015.tif
-GOA_IDW_Parophrys_vetulus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_2017.tif
-GOA_IDW_Parophrys_vetulus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_2019.tif
-GOA_IDW_Parophrys_vetulus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_2021.tif
-GOA_IDW_Pasiphaea_pacifica_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_1993.tif
-GOA_IDW_Pasiphaea_pacifica_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_1996.tif
-GOA_IDW_Pasiphaea_pacifica_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_1999.tif
-GOA_IDW_Pasiphaea_pacifica_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_2003.tif
-GOA_IDW_Pasiphaea_pacifica_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_2005.tif
-GOA_IDW_Pasiphaea_pacifica_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_2007.tif
-GOA_IDW_Pasiphaea_pacifica_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_2009.tif
-GOA_IDW_Pasiphaea_pacifica_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_2011.tif
-GOA_IDW_Pasiphaea_pacifica_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_2013.tif
-GOA_IDW_Pasiphaea_pacifica_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_2015.tif
-GOA_IDW_Pasiphaea_pacifica_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_2017.tif
-GOA_IDW_Pasiphaea_pacifica_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_2019.tif
-GOA_IDW_Pasiphaea_pacifica_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_2021.tif
-GOA_IDW_Platichthys_stellatus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_1993.tif
-GOA_IDW_Platichthys_stellatus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_1996.tif
-GOA_IDW_Platichthys_stellatus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_1999.tif
-GOA_IDW_Platichthys_stellatus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_2003.tif
-GOA_IDW_Platichthys_stellatus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_2005.tif
-GOA_IDW_Platichthys_stellatus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_2007.tif
-GOA_IDW_Platichthys_stellatus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_2009.tif
-GOA_IDW_Platichthys_stellatus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_2011.tif
-GOA_IDW_Platichthys_stellatus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_2013.tif
-GOA_IDW_Platichthys_stellatus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_2015.tif
-GOA_IDW_Platichthys_stellatus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_2017.tif
-GOA_IDW_Platichthys_stellatus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_2019.tif
-GOA_IDW_Platichthys_stellatus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_2021.tif
-GOA_IDW_Pleurogrammus_monopterygius_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_1993.tif
-GOA_IDW_Pleurogrammus_monopterygius_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_1996.tif
-GOA_IDW_Pleurogrammus_monopterygius_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_1999.tif
-GOA_IDW_Pleurogrammus_monopterygius_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_2003.tif
-GOA_IDW_Pleurogrammus_monopterygius_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_2005.tif
-GOA_IDW_Pleurogrammus_monopterygius_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_2007.tif
-GOA_IDW_Pleurogrammus_monopterygius_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_2009.tif
-GOA_IDW_Pleurogrammus_monopterygius_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_2011.tif
-GOA_IDW_Pleurogrammus_monopterygius_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_2013.tif
-GOA_IDW_Pleurogrammus_monopterygius_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_2015.tif
-GOA_IDW_Pleurogrammus_monopterygius_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_2017.tif
-GOA_IDW_Pleurogrammus_monopterygius_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_2019.tif
-GOA_IDW_Pleurogrammus_monopterygius_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_2021.tif
-GOA_IDW_Pseudarchaster_parelii_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pseudarchaster parelii\GOA_IDW_Pseudarchaster_parelii_1993.tif
-GOA_IDW_Pseudarchaster_parelii_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pseudarchaster parelii\GOA_IDW_Pseudarchaster_parelii_1996.tif
-GOA_IDW_Pseudarchaster_parelii_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pseudarchaster parelii\GOA_IDW_Pseudarchaster_parelii_1999.tif
-GOA_IDW_Pseudarchaster_parelii_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pseudarchaster parelii\GOA_IDW_Pseudarchaster_parelii_2003.tif
-GOA_IDW_Pseudarchaster_parelii_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pseudarchaster parelii\GOA_IDW_Pseudarchaster_parelii_2005.tif
-GOA_IDW_Pseudarchaster_parelii_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pseudarchaster parelii\GOA_IDW_Pseudarchaster_parelii_2007.tif
-GOA_IDW_Pseudarchaster_parelii_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pseudarchaster parelii\GOA_IDW_Pseudarchaster_parelii_2009.tif
-GOA_IDW_Pseudarchaster_parelii_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pseudarchaster parelii\GOA_IDW_Pseudarchaster_parelii_2011.tif
-GOA_IDW_Pseudarchaster_parelii_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pseudarchaster parelii\GOA_IDW_Pseudarchaster_parelii_2013.tif
-GOA_IDW_Pseudarchaster_parelii_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pseudarchaster parelii\GOA_IDW_Pseudarchaster_parelii_2015.tif
-GOA_IDW_Pseudarchaster_parelii_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pseudarchaster parelii\GOA_IDW_Pseudarchaster_parelii_2017.tif
-GOA_IDW_Pseudarchaster_parelii_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pseudarchaster parelii\GOA_IDW_Pseudarchaster_parelii_2019.tif
-GOA_IDW_Pseudarchaster_parelii_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pseudarchaster parelii\GOA_IDW_Pseudarchaster_parelii_2021.tif
-GOA_IDW_Pycnopodia_helianthoides_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_1993.tif
-GOA_IDW_Pycnopodia_helianthoides_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_1996.tif
-GOA_IDW_Pycnopodia_helianthoides_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_1999.tif
-GOA_IDW_Pycnopodia_helianthoides_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_2003.tif
-GOA_IDW_Pycnopodia_helianthoides_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_2005.tif
-GOA_IDW_Pycnopodia_helianthoides_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_2007.tif
-GOA_IDW_Pycnopodia_helianthoides_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_2009.tif
-GOA_IDW_Pycnopodia_helianthoides_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_2011.tif
-GOA_IDW_Pycnopodia_helianthoides_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_2013.tif
-GOA_IDW_Pycnopodia_helianthoides_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_2015.tif
-GOA_IDW_Pycnopodia_helianthoides_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_2017.tif
-GOA_IDW_Pycnopodia_helianthoides_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_2019.tif
-GOA_IDW_Pycnopodia_helianthoides_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_2021.tif
-GOA_IDW_Sebastes_alutus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_1993.tif
-GOA_IDW_Sebastes_alutus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_1996.tif
-GOA_IDW_Sebastes_alutus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_1999.tif
-GOA_IDW_Sebastes_alutus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_2003.tif
-GOA_IDW_Sebastes_alutus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_2005.tif
-GOA_IDW_Sebastes_alutus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_2007.tif
-GOA_IDW_Sebastes_alutus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_2009.tif
-GOA_IDW_Sebastes_alutus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_2011.tif
-GOA_IDW_Sebastes_alutus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_2013.tif
-GOA_IDW_Sebastes_alutus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_2015.tif
-GOA_IDW_Sebastes_alutus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_2017.tif
-GOA_IDW_Sebastes_alutus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_2019.tif
-GOA_IDW_Sebastes_alutus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_2021.tif
-GOA_IDW_Sebastes_babcocki_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_1993.tif
-GOA_IDW_Sebastes_babcocki_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_1996.tif
-GOA_IDW_Sebastes_babcocki_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_1999.tif
-GOA_IDW_Sebastes_babcocki_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_2003.tif
-GOA_IDW_Sebastes_babcocki_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_2005.tif
-GOA_IDW_Sebastes_babcocki_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_2007.tif
-GOA_IDW_Sebastes_babcocki_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_2009.tif
-GOA_IDW_Sebastes_babcocki_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_2011.tif
-GOA_IDW_Sebastes_babcocki_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_2013.tif
-GOA_IDW_Sebastes_babcocki_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_2015.tif
-GOA_IDW_Sebastes_babcocki_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_2017.tif
-GOA_IDW_Sebastes_babcocki_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_2019.tif
-GOA_IDW_Sebastes_babcocki_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_2021.tif
-GOA_IDW_Sebastes_borealis_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_1993.tif
-GOA_IDW_Sebastes_borealis_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_1996.tif
-GOA_IDW_Sebastes_borealis_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_1999.tif
-GOA_IDW_Sebastes_borealis_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_2003.tif
-GOA_IDW_Sebastes_borealis_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_2005.tif
-GOA_IDW_Sebastes_borealis_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_2007.tif
-GOA_IDW_Sebastes_borealis_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_2009.tif
-GOA_IDW_Sebastes_borealis_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_2011.tif
-GOA_IDW_Sebastes_borealis_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_2013.tif
-GOA_IDW_Sebastes_borealis_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_2015.tif
-GOA_IDW_Sebastes_borealis_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_2017.tif
-GOA_IDW_Sebastes_borealis_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_2019.tif
-GOA_IDW_Sebastes_borealis_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_2021.tif
-GOA_IDW_Sebastes_brevispinis_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_1993.tif
-GOA_IDW_Sebastes_brevispinis_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_1996.tif
-GOA_IDW_Sebastes_brevispinis_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_1999.tif
-GOA_IDW_Sebastes_brevispinis_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_2003.tif
-GOA_IDW_Sebastes_brevispinis_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_2005.tif
-GOA_IDW_Sebastes_brevispinis_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_2007.tif
-GOA_IDW_Sebastes_brevispinis_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_2009.tif
-GOA_IDW_Sebastes_brevispinis_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_2011.tif
-GOA_IDW_Sebastes_brevispinis_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_2013.tif
-GOA_IDW_Sebastes_brevispinis_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_2015.tif
-GOA_IDW_Sebastes_brevispinis_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_2017.tif
-GOA_IDW_Sebastes_brevispinis_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_2019.tif
-GOA_IDW_Sebastes_brevispinis_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_2021.tif
-GOA_IDW_Sebastes_polyspinis_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_1993.tif
-GOA_IDW_Sebastes_polyspinis_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_1996.tif
-GOA_IDW_Sebastes_polyspinis_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_1999.tif
-GOA_IDW_Sebastes_polyspinis_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_2003.tif
-GOA_IDW_Sebastes_polyspinis_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_2005.tif
-GOA_IDW_Sebastes_polyspinis_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_2007.tif
-GOA_IDW_Sebastes_polyspinis_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_2009.tif
-GOA_IDW_Sebastes_polyspinis_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_2011.tif
-GOA_IDW_Sebastes_polyspinis_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_2013.tif
-GOA_IDW_Sebastes_polyspinis_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_2015.tif
-GOA_IDW_Sebastes_polyspinis_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_2017.tif
-GOA_IDW_Sebastes_polyspinis_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_2019.tif
-GOA_IDW_Sebastes_polyspinis_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_2021.tif
-GOA_IDW_Sebastes_variabilis_and_S_ciliatus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variabilis and S ciliatus\GOA_IDW_Sebastes_variabilis_and_S_ciliatus_1993.tif
-GOA_IDW_Sebastes_variabilis_and_S_ciliatus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variabilis and S ciliatus\GOA_IDW_Sebastes_variabilis_and_S_ciliatus_1996.tif
-GOA_IDW_Sebastes_variabilis_and_S_ciliatus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variabilis and S ciliatus\GOA_IDW_Sebastes_variabilis_and_S_ciliatus_1999.tif
-GOA_IDW_Sebastes_variabilis_and_S_ciliatus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variabilis and S ciliatus\GOA_IDW_Sebastes_variabilis_and_S_ciliatus_2003.tif
-GOA_IDW_Sebastes_variabilis_and_S_ciliatus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variabilis and S ciliatus\GOA_IDW_Sebastes_variabilis_and_S_ciliatus_2005.tif
-GOA_IDW_Sebastes_variabilis_and_S_ciliatus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variabilis and S ciliatus\GOA_IDW_Sebastes_variabilis_and_S_ciliatus_2007.tif
-GOA_IDW_Sebastes_variabilis_and_S_ciliatus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variabilis and S ciliatus\GOA_IDW_Sebastes_variabilis_and_S_ciliatus_2009.tif
-GOA_IDW_Sebastes_variabilis_and_S_ciliatus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variabilis and S ciliatus\GOA_IDW_Sebastes_variabilis_and_S_ciliatus_2011.tif
-GOA_IDW_Sebastes_variabilis_and_S_ciliatus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variabilis and S ciliatus\GOA_IDW_Sebastes_variabilis_and_S_ciliatus_2013.tif
-GOA_IDW_Sebastes_variabilis_and_S_ciliatus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variabilis and S ciliatus\GOA_IDW_Sebastes_variabilis_and_S_ciliatus_2015.tif
-GOA_IDW_Sebastes_variabilis_and_S_ciliatus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variabilis and S ciliatus\GOA_IDW_Sebastes_variabilis_and_S_ciliatus_2017.tif
-GOA_IDW_Sebastes_variabilis_and_S_ciliatus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variabilis and S ciliatus\GOA_IDW_Sebastes_variabilis_and_S_ciliatus_2019.tif
-GOA_IDW_Sebastes_variabilis_and_S_ciliatus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:20:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variabilis and S ciliatus\GOA_IDW_Sebastes_variabilis_and_S_ciliatus_2021.tif
-GOA_IDW_Sebastes_variegatus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variegatus\GOA_IDW_Sebastes_variegatus_1993.tif
-GOA_IDW_Sebastes_variegatus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variegatus\GOA_IDW_Sebastes_variegatus_1996.tif
-GOA_IDW_Sebastes_variegatus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variegatus\GOA_IDW_Sebastes_variegatus_1999.tif
-GOA_IDW_Sebastes_variegatus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variegatus\GOA_IDW_Sebastes_variegatus_2003.tif
-GOA_IDW_Sebastes_variegatus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variegatus\GOA_IDW_Sebastes_variegatus_2005.tif
-GOA_IDW_Sebastes_variegatus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variegatus\GOA_IDW_Sebastes_variegatus_2007.tif
-GOA_IDW_Sebastes_variegatus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variegatus\GOA_IDW_Sebastes_variegatus_2009.tif
-GOA_IDW_Sebastes_variegatus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variegatus\GOA_IDW_Sebastes_variegatus_2011.tif
-GOA_IDW_Sebastes_variegatus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variegatus\GOA_IDW_Sebastes_variegatus_2013.tif
-GOA_IDW_Sebastes_variegatus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variegatus\GOA_IDW_Sebastes_variegatus_2015.tif
-GOA_IDW_Sebastes_variegatus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variegatus\GOA_IDW_Sebastes_variegatus_2017.tif
-GOA_IDW_Sebastes_variegatus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variegatus\GOA_IDW_Sebastes_variegatus_2019.tif
-GOA_IDW_Sebastes_variegatus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes variegatus\GOA_IDW_Sebastes_variegatus_2021.tif
-GOA_IDW_Sebastes_zacentrus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_1993.tif
-GOA_IDW_Sebastes_zacentrus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_1996.tif
-GOA_IDW_Sebastes_zacentrus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_1999.tif
-GOA_IDW_Sebastes_zacentrus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_2003.tif
-GOA_IDW_Sebastes_zacentrus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_2005.tif
-GOA_IDW_Sebastes_zacentrus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_2007.tif
-GOA_IDW_Sebastes_zacentrus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_2009.tif
-GOA_IDW_Sebastes_zacentrus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_2011.tif
-GOA_IDW_Sebastes_zacentrus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_2013.tif
-GOA_IDW_Sebastes_zacentrus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_2015.tif
-GOA_IDW_Sebastes_zacentrus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_2017.tif
-GOA_IDW_Sebastes_zacentrus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_2019.tif
-GOA_IDW_Sebastes_zacentrus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_2021.tif
-GOA_IDW_Sebastolobus_alascanus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_1993.tif
-GOA_IDW_Sebastolobus_alascanus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_1996.tif
-GOA_IDW_Sebastolobus_alascanus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_1999.tif
-GOA_IDW_Sebastolobus_alascanus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_2003.tif
-GOA_IDW_Sebastolobus_alascanus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_2005.tif
-GOA_IDW_Sebastolobus_alascanus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_2007.tif
-GOA_IDW_Sebastolobus_alascanus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_2009.tif
-GOA_IDW_Sebastolobus_alascanus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_2011.tif
-GOA_IDW_Sebastolobus_alascanus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_2013.tif
-GOA_IDW_Sebastolobus_alascanus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_2015.tif
-GOA_IDW_Sebastolobus_alascanus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_2017.tif
-GOA_IDW_Sebastolobus_alascanus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_2019.tif
-GOA_IDW_Sebastolobus_alascanus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_2021.tif
-GOA_IDW_Squalus_suckleyi_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_1993.tif
-GOA_IDW_Squalus_suckleyi_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_1996.tif
-GOA_IDW_Squalus_suckleyi_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_1999.tif
-GOA_IDW_Squalus_suckleyi_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_2003.tif
-GOA_IDW_Squalus_suckleyi_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_2005.tif
-GOA_IDW_Squalus_suckleyi_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_2007.tif
-GOA_IDW_Squalus_suckleyi_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_2009.tif
-GOA_IDW_Squalus_suckleyi_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_2011.tif
-GOA_IDW_Squalus_suckleyi_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_2013.tif
-GOA_IDW_Squalus_suckleyi_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_2015.tif
-GOA_IDW_Squalus_suckleyi_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_2017.tif
-GOA_IDW_Squalus_suckleyi_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_2019.tif
-GOA_IDW_Squalus_suckleyi_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_2021.tif
-GOA_IDW_Stegophiura_ponderosa_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Stegophiura ponderosa\GOA_IDW_Stegophiura_ponderosa_1993.tif
-GOA_IDW_Stegophiura_ponderosa_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Stegophiura ponderosa\GOA_IDW_Stegophiura_ponderosa_1996.tif
-GOA_IDW_Stegophiura_ponderosa_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Stegophiura ponderosa\GOA_IDW_Stegophiura_ponderosa_1999.tif
-GOA_IDW_Stegophiura_ponderosa_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Stegophiura ponderosa\GOA_IDW_Stegophiura_ponderosa_2003.tif
-GOA_IDW_Stegophiura_ponderosa_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Stegophiura ponderosa\GOA_IDW_Stegophiura_ponderosa_2005.tif
-GOA_IDW_Stegophiura_ponderosa_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Stegophiura ponderosa\GOA_IDW_Stegophiura_ponderosa_2007.tif
-GOA_IDW_Stegophiura_ponderosa_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Stegophiura ponderosa\GOA_IDW_Stegophiura_ponderosa_2009.tif
-GOA_IDW_Stegophiura_ponderosa_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Stegophiura ponderosa\GOA_IDW_Stegophiura_ponderosa_2011.tif
-GOA_IDW_Stegophiura_ponderosa_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Stegophiura ponderosa\GOA_IDW_Stegophiura_ponderosa_2013.tif
-GOA_IDW_Stegophiura_ponderosa_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Stegophiura ponderosa\GOA_IDW_Stegophiura_ponderosa_2015.tif
-GOA_IDW_Stegophiura_ponderosa_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Stegophiura ponderosa\GOA_IDW_Stegophiura_ponderosa_2017.tif
-GOA_IDW_Stegophiura_ponderosa_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Stegophiura ponderosa\GOA_IDW_Stegophiura_ponderosa_2019.tif
-GOA_IDW_Stegophiura_ponderosa_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Stegophiura ponderosa\GOA_IDW_Stegophiura_ponderosa_2021.tif
-GOA_IDW_Strongylocentrotus_fragilis_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Strongylocentrotus fragilis\GOA_IDW_Strongylocentrotus_fragilis_1993.tif
-GOA_IDW_Strongylocentrotus_fragilis_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Strongylocentrotus fragilis\GOA_IDW_Strongylocentrotus_fragilis_1996.tif
-GOA_IDW_Strongylocentrotus_fragilis_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Strongylocentrotus fragilis\GOA_IDW_Strongylocentrotus_fragilis_1999.tif
-GOA_IDW_Strongylocentrotus_fragilis_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Strongylocentrotus fragilis\GOA_IDW_Strongylocentrotus_fragilis_2003.tif
-GOA_IDW_Strongylocentrotus_fragilis_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Strongylocentrotus fragilis\GOA_IDW_Strongylocentrotus_fragilis_2005.tif
-GOA_IDW_Strongylocentrotus_fragilis_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Strongylocentrotus fragilis\GOA_IDW_Strongylocentrotus_fragilis_2007.tif
-GOA_IDW_Strongylocentrotus_fragilis_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Strongylocentrotus fragilis\GOA_IDW_Strongylocentrotus_fragilis_2009.tif
-GOA_IDW_Strongylocentrotus_fragilis_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Strongylocentrotus fragilis\GOA_IDW_Strongylocentrotus_fragilis_2011.tif
-GOA_IDW_Strongylocentrotus_fragilis_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Strongylocentrotus fragilis\GOA_IDW_Strongylocentrotus_fragilis_2013.tif
-GOA_IDW_Strongylocentrotus_fragilis_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Strongylocentrotus fragilis\GOA_IDW_Strongylocentrotus_fragilis_2015.tif
-GOA_IDW_Strongylocentrotus_fragilis_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Strongylocentrotus fragilis\GOA_IDW_Strongylocentrotus_fragilis_2017.tif
-GOA_IDW_Strongylocentrotus_fragilis_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Strongylocentrotus fragilis\GOA_IDW_Strongylocentrotus_fragilis_2019.tif
-GOA_IDW_Strongylocentrotus_fragilis_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Strongylocentrotus fragilis\GOA_IDW_Strongylocentrotus_fragilis_2021.tif
-GOA_IDW_Thaleichthys_pacificus_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_1993.tif
-GOA_IDW_Thaleichthys_pacificus_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_1996.tif
-GOA_IDW_Thaleichthys_pacificus_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_1999.tif
-GOA_IDW_Thaleichthys_pacificus_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_2003.tif
-GOA_IDW_Thaleichthys_pacificus_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_2005.tif
-GOA_IDW_Thaleichthys_pacificus_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_2007.tif
-GOA_IDW_Thaleichthys_pacificus_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_2009.tif
-GOA_IDW_Thaleichthys_pacificus_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_2011.tif
-GOA_IDW_Thaleichthys_pacificus_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_2013.tif
-GOA_IDW_Thaleichthys_pacificus_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_2015.tif
-GOA_IDW_Thaleichthys_pacificus_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_2017.tif
-GOA_IDW_Thaleichthys_pacificus_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_2019.tif
-GOA_IDW_Thaleichthys_pacificus_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_2021.tif
-GOA_IDW_Core_Species_Richness_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_1993.tif
-GOA_IDW_Core_Species_Richness_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_1996.tif
-GOA_IDW_Core_Species_Richness_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_1999.tif
-GOA_IDW_Core_Species_Richness_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_2003.tif
-GOA_IDW_Core_Species_Richness_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_2005.tif
-GOA_IDW_Core_Species_Richness_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_2007.tif
-GOA_IDW_Core_Species_Richness_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_2009.tif
-GOA_IDW_Core_Species_Richness_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_2011.tif
-GOA_IDW_Core_Species_Richness_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_2013.tif
-GOA_IDW_Core_Species_Richness_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_2015.tif
-GOA_IDW_Core_Species_Richness_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_2017.tif
-GOA_IDW_Core_Species_Richness_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_2019.tif
-GOA_IDW_Core_Species_Richness_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_2021.tif
-GOA_IDW_Species_Richness_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_1993.tif
-GOA_IDW_Species_Richness_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_1996.tif
-GOA_IDW_Species_Richness_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_1999.tif
-GOA_IDW_Species_Richness_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_2003.tif
-GOA_IDW_Species_Richness_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_2005.tif
-GOA_IDW_Species_Richness_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_2007.tif
-GOA_IDW_Species_Richness_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_2009.tif
-GOA_IDW_Species_Richness_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_2011.tif
-GOA_IDW_Species_Richness_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_2013.tif
-GOA_IDW_Species_Richness_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_2015.tif
-GOA_IDW_Species_Richness_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_2017.tif
-GOA_IDW_Species_Richness_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_2019.tif
-GOA_IDW_Species_Richness_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_2021.tif
-HI_IDW_Aphareus_rutilans_2016.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Aphareus rutilans\HI_IDW_Aphareus_rutilans_2016.tif
-HI_IDW_Aphareus_rutilans_2017.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Aphareus rutilans\HI_IDW_Aphareus_rutilans_2017.tif
-HI_IDW_Aphareus_rutilans_2018.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Aphareus rutilans\HI_IDW_Aphareus_rutilans_2018.tif
-HI_IDW_Aphareus_rutilans_2019.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Aphareus rutilans\HI_IDW_Aphareus_rutilans_2019.tif
-HI_IDW_Aphareus_rutilans_2020.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Aphareus rutilans\HI_IDW_Aphareus_rutilans_2020.tif
-HI_IDW_Aphareus_rutilans_2021.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Aphareus rutilans\HI_IDW_Aphareus_rutilans_2021.tif
-HI_IDW_Aphareus_rutilans_2022.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Aphareus rutilans\HI_IDW_Aphareus_rutilans_2022.tif
-HI_IDW_Etelis_carbunculus_2016.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Etelis carbunculus\HI_IDW_Etelis_carbunculus_2016.tif
-HI_IDW_Etelis_carbunculus_2017.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Etelis carbunculus\HI_IDW_Etelis_carbunculus_2017.tif
-HI_IDW_Etelis_carbunculus_2018.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Etelis carbunculus\HI_IDW_Etelis_carbunculus_2018.tif
-HI_IDW_Etelis_carbunculus_2019.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Etelis carbunculus\HI_IDW_Etelis_carbunculus_2019.tif
-HI_IDW_Etelis_carbunculus_2020.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Etelis carbunculus\HI_IDW_Etelis_carbunculus_2020.tif
-HI_IDW_Etelis_carbunculus_2021.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Etelis carbunculus\HI_IDW_Etelis_carbunculus_2021.tif
-HI_IDW_Etelis_carbunculus_2022.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Etelis carbunculus\HI_IDW_Etelis_carbunculus_2022.tif
-HI_IDW_Etelis_coruscans_2016.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Etelis coruscans\HI_IDW_Etelis_coruscans_2016.tif
-HI_IDW_Etelis_coruscans_2017.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Etelis coruscans\HI_IDW_Etelis_coruscans_2017.tif
-HI_IDW_Etelis_coruscans_2018.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Etelis coruscans\HI_IDW_Etelis_coruscans_2018.tif
-HI_IDW_Etelis_coruscans_2019.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Etelis coruscans\HI_IDW_Etelis_coruscans_2019.tif
-HI_IDW_Etelis_coruscans_2020.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Etelis coruscans\HI_IDW_Etelis_coruscans_2020.tif
-HI_IDW_Etelis_coruscans_2021.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Etelis coruscans\HI_IDW_Etelis_coruscans_2021.tif
-HI_IDW_Etelis_coruscans_2022.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Etelis coruscans\HI_IDW_Etelis_coruscans_2022.tif
-HI_IDW_Hyporthodus_quernus_2016.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Hyporthodus quernus\HI_IDW_Hyporthodus_quernus_2016.tif
-HI_IDW_Hyporthodus_quernus_2017.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Hyporthodus quernus\HI_IDW_Hyporthodus_quernus_2017.tif
-HI_IDW_Hyporthodus_quernus_2018.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Hyporthodus quernus\HI_IDW_Hyporthodus_quernus_2018.tif
-HI_IDW_Hyporthodus_quernus_2019.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Hyporthodus quernus\HI_IDW_Hyporthodus_quernus_2019.tif
-HI_IDW_Hyporthodus_quernus_2020.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Hyporthodus quernus\HI_IDW_Hyporthodus_quernus_2020.tif
-HI_IDW_Hyporthodus_quernus_2021.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Hyporthodus quernus\HI_IDW_Hyporthodus_quernus_2021.tif
-HI_IDW_Hyporthodus_quernus_2022.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Hyporthodus quernus\HI_IDW_Hyporthodus_quernus_2022.tif
-HI_IDW_Pristipomoides_filamentosus_2016.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Pristipomoides filamentosus\HI_IDW_Pristipomoides_filamentosus_2016.tif
-HI_IDW_Pristipomoides_filamentosus_2017.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Pristipomoides filamentosus\HI_IDW_Pristipomoides_filamentosus_2017.tif
-HI_IDW_Pristipomoides_filamentosus_2018.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Pristipomoides filamentosus\HI_IDW_Pristipomoides_filamentosus_2018.tif
-HI_IDW_Pristipomoides_filamentosus_2019.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Pristipomoides filamentosus\HI_IDW_Pristipomoides_filamentosus_2019.tif
-HI_IDW_Pristipomoides_filamentosus_2020.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Pristipomoides filamentosus\HI_IDW_Pristipomoides_filamentosus_2020.tif
-HI_IDW_Pristipomoides_filamentosus_2021.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Pristipomoides filamentosus\HI_IDW_Pristipomoides_filamentosus_2021.tif
-HI_IDW_Pristipomoides_filamentosus_2022.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Pristipomoides filamentosus\HI_IDW_Pristipomoides_filamentosus_2022.tif
-HI_IDW_Pristipomoides_sieboldii_2016.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Pristipomoides sieboldii\HI_IDW_Pristipomoides_sieboldii_2016.tif
-HI_IDW_Pristipomoides_sieboldii_2017.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Pristipomoides sieboldii\HI_IDW_Pristipomoides_sieboldii_2017.tif
-HI_IDW_Pristipomoides_sieboldii_2018.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Pristipomoides sieboldii\HI_IDW_Pristipomoides_sieboldii_2018.tif
-HI_IDW_Pristipomoides_sieboldii_2019.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Pristipomoides sieboldii\HI_IDW_Pristipomoides_sieboldii_2019.tif
-HI_IDW_Pristipomoides_sieboldii_2020.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Pristipomoides sieboldii\HI_IDW_Pristipomoides_sieboldii_2020.tif
-HI_IDW_Pristipomoides_sieboldii_2021.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Pristipomoides sieboldii\HI_IDW_Pristipomoides_sieboldii_2021.tif
-HI_IDW_Pristipomoides_sieboldii_2022.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Pristipomoides sieboldii\HI_IDW_Pristipomoides_sieboldii_2022.tif
-HI_IDW_Pristipomoides_zonatus_2016.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Pristipomoides zonatus\HI_IDW_Pristipomoides_zonatus_2016.tif
-HI_IDW_Pristipomoides_zonatus_2017.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Pristipomoides zonatus\HI_IDW_Pristipomoides_zonatus_2017.tif
-HI_IDW_Pristipomoides_zonatus_2018.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Pristipomoides zonatus\HI_IDW_Pristipomoides_zonatus_2018.tif
-HI_IDW_Pristipomoides_zonatus_2019.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Pristipomoides zonatus\HI_IDW_Pristipomoides_zonatus_2019.tif
-HI_IDW_Pristipomoides_zonatus_2020.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Pristipomoides zonatus\HI_IDW_Pristipomoides_zonatus_2020.tif
-HI_IDW_Pristipomoides_zonatus_2021.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Pristipomoides zonatus\HI_IDW_Pristipomoides_zonatus_2021.tif
-HI_IDW_Pristipomoides_zonatus_2022.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\Pristipomoides zonatus\HI_IDW_Pristipomoides_zonatus_2022.tif
-HI_IDW_Core_Species_Richness_2016.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\_Core Species Richness\HI_IDW_Core_Species_Richness_2016.tif
-HI_IDW_Core_Species_Richness_2017.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\_Core Species Richness\HI_IDW_Core_Species_Richness_2017.tif
-HI_IDW_Core_Species_Richness_2018.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\_Core Species Richness\HI_IDW_Core_Species_Richness_2018.tif
-HI_IDW_Core_Species_Richness_2019.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\_Core Species Richness\HI_IDW_Core_Species_Richness_2019.tif
-HI_IDW_Core_Species_Richness_2020.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\_Core Species Richness\HI_IDW_Core_Species_Richness_2020.tif
-HI_IDW_Core_Species_Richness_2021.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\_Core Species Richness\HI_IDW_Core_Species_Richness_2021.tif
-HI_IDW_Core_Species_Richness_2022.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\_Core Species Richness\HI_IDW_Core_Species_Richness_2022.tif
-HI_IDW_Species_Richness_2016.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\_Species Richness\HI_IDW_Species_Richness_2016.tif
-HI_IDW_Species_Richness_2017.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\_Species Richness\HI_IDW_Species_Richness_2017.tif
-HI_IDW_Species_Richness_2018.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\_Species Richness\HI_IDW_Species_Richness_2018.tif
-HI_IDW_Species_Richness_2019.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\_Species Richness\HI_IDW_Species_Richness_2019.tif
-HI_IDW_Species_Richness_2020.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\_Species Richness\HI_IDW_Species_Richness_2020.tif
-HI_IDW_Species_Richness_2021.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\_Species Richness\HI_IDW_Species_Richness_2021.tif
-HI_IDW_Species_Richness_2022.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\HI_IDW\_Species Richness\HI_IDW_Species_Richness_2022.tif
-NBS_IDW_Acantholumpenus_mackayi_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Acantholumpenus mackayi\NBS_IDW_Acantholumpenus_mackayi_2010.tif
-NBS_IDW_Acantholumpenus_mackayi_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Acantholumpenus mackayi\NBS_IDW_Acantholumpenus_mackayi_2017.tif
-NBS_IDW_Acantholumpenus_mackayi_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Acantholumpenus mackayi\NBS_IDW_Acantholumpenus_mackayi_2019.tif
-NBS_IDW_Acantholumpenus_mackayi_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Acantholumpenus mackayi\NBS_IDW_Acantholumpenus_mackayi_2021.tif
-NBS_IDW_Acantholumpenus_mackayi_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Acantholumpenus mackayi\NBS_IDW_Acantholumpenus_mackayi_2022.tif
-NBS_IDW_Aspidophoroides_olrikii_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Aspidophoroides olrikii\NBS_IDW_Aspidophoroides_olrikii_2010.tif
-NBS_IDW_Aspidophoroides_olrikii_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Aspidophoroides olrikii\NBS_IDW_Aspidophoroides_olrikii_2017.tif
-NBS_IDW_Aspidophoroides_olrikii_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Aspidophoroides olrikii\NBS_IDW_Aspidophoroides_olrikii_2019.tif
-NBS_IDW_Aspidophoroides_olrikii_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Aspidophoroides olrikii\NBS_IDW_Aspidophoroides_olrikii_2021.tif
-NBS_IDW_Aspidophoroides_olrikii_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Aspidophoroides olrikii\NBS_IDW_Aspidophoroides_olrikii_2022.tif
-NBS_IDW_Asterias_amurensis_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Asterias amurensis\NBS_IDW_Asterias_amurensis_2010.tif
-NBS_IDW_Asterias_amurensis_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Asterias amurensis\NBS_IDW_Asterias_amurensis_2017.tif
-NBS_IDW_Asterias_amurensis_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Asterias amurensis\NBS_IDW_Asterias_amurensis_2019.tif
-NBS_IDW_Asterias_amurensis_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Asterias amurensis\NBS_IDW_Asterias_amurensis_2021.tif
-NBS_IDW_Asterias_amurensis_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Asterias amurensis\NBS_IDW_Asterias_amurensis_2022.tif
-NBS_IDW_Bathyraja_spp_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Bathyraja spp\NBS_IDW_Bathyraja_spp_2010.tif
-NBS_IDW_Bathyraja_spp_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Bathyraja spp\NBS_IDW_Bathyraja_spp_2017.tif
-NBS_IDW_Bathyraja_spp_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Bathyraja spp\NBS_IDW_Bathyraja_spp_2019.tif
-NBS_IDW_Bathyraja_spp_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Bathyraja spp\NBS_IDW_Bathyraja_spp_2021.tif
-NBS_IDW_Bathyraja_spp_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Bathyraja spp\NBS_IDW_Bathyraja_spp_2022.tif
-NBS_IDW_Boltenia_ovifera_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Boltenia ovifera\NBS_IDW_Boltenia_ovifera_2010.tif
-NBS_IDW_Boltenia_ovifera_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Boltenia ovifera\NBS_IDW_Boltenia_ovifera_2017.tif
-NBS_IDW_Boltenia_ovifera_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Boltenia ovifera\NBS_IDW_Boltenia_ovifera_2019.tif
-NBS_IDW_Boltenia_ovifera_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Boltenia ovifera\NBS_IDW_Boltenia_ovifera_2021.tif
-NBS_IDW_Boltenia_ovifera_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Boltenia ovifera\NBS_IDW_Boltenia_ovifera_2022.tif
-NBS_IDW_Boreogadus_saida_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Boreogadus saida\NBS_IDW_Boreogadus_saida_2010.tif
-NBS_IDW_Boreogadus_saida_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Boreogadus saida\NBS_IDW_Boreogadus_saida_2017.tif
-NBS_IDW_Boreogadus_saida_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Boreogadus saida\NBS_IDW_Boreogadus_saida_2019.tif
-NBS_IDW_Boreogadus_saida_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Boreogadus saida\NBS_IDW_Boreogadus_saida_2021.tif
-NBS_IDW_Boreogadus_saida_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Boreogadus saida\NBS_IDW_Boreogadus_saida_2022.tif
-NBS_IDW_Buccinum_angulosum_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Buccinum angulosum\NBS_IDW_Buccinum_angulosum_2010.tif
-NBS_IDW_Buccinum_angulosum_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Buccinum angulosum\NBS_IDW_Buccinum_angulosum_2017.tif
-NBS_IDW_Buccinum_angulosum_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Buccinum angulosum\NBS_IDW_Buccinum_angulosum_2019.tif
-NBS_IDW_Buccinum_angulosum_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Buccinum angulosum\NBS_IDW_Buccinum_angulosum_2021.tif
-NBS_IDW_Buccinum_angulosum_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Buccinum angulosum\NBS_IDW_Buccinum_angulosum_2022.tif
-NBS_IDW_Buccinum_polare_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Buccinum polare\NBS_IDW_Buccinum_polare_2010.tif
-NBS_IDW_Buccinum_polare_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Buccinum polare\NBS_IDW_Buccinum_polare_2017.tif
-NBS_IDW_Buccinum_polare_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Buccinum polare\NBS_IDW_Buccinum_polare_2019.tif
-NBS_IDW_Buccinum_polare_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Buccinum polare\NBS_IDW_Buccinum_polare_2021.tif
-NBS_IDW_Buccinum_polare_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Buccinum polare\NBS_IDW_Buccinum_polare_2022.tif
-NBS_IDW_Buccinum_scalariforme_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Buccinum scalariforme\NBS_IDW_Buccinum_scalariforme_2010.tif
-NBS_IDW_Buccinum_scalariforme_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Buccinum scalariforme\NBS_IDW_Buccinum_scalariforme_2017.tif
-NBS_IDW_Buccinum_scalariforme_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Buccinum scalariforme\NBS_IDW_Buccinum_scalariforme_2019.tif
-NBS_IDW_Buccinum_scalariforme_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Buccinum scalariforme\NBS_IDW_Buccinum_scalariforme_2021.tif
-NBS_IDW_Buccinum_scalariforme_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Buccinum scalariforme\NBS_IDW_Buccinum_scalariforme_2022.tif
-NBS_IDW_Chionoecetes_opilio_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Chionoecetes opilio\NBS_IDW_Chionoecetes_opilio_2010.tif
-NBS_IDW_Chionoecetes_opilio_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Chionoecetes opilio\NBS_IDW_Chionoecetes_opilio_2017.tif
-NBS_IDW_Chionoecetes_opilio_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Chionoecetes opilio\NBS_IDW_Chionoecetes_opilio_2019.tif
-NBS_IDW_Chionoecetes_opilio_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Chionoecetes opilio\NBS_IDW_Chionoecetes_opilio_2021.tif
-NBS_IDW_Chionoecetes_opilio_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Chionoecetes opilio\NBS_IDW_Chionoecetes_opilio_2022.tif
-NBS_IDW_Chrysaora_melanaster_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Chrysaora melanaster\NBS_IDW_Chrysaora_melanaster_2010.tif
-NBS_IDW_Chrysaora_melanaster_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Chrysaora melanaster\NBS_IDW_Chrysaora_melanaster_2017.tif
-NBS_IDW_Chrysaora_melanaster_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Chrysaora melanaster\NBS_IDW_Chrysaora_melanaster_2019.tif
-NBS_IDW_Chrysaora_melanaster_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Chrysaora melanaster\NBS_IDW_Chrysaora_melanaster_2021.tif
-NBS_IDW_Chrysaora_melanaster_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Chrysaora melanaster\NBS_IDW_Chrysaora_melanaster_2022.tif
-NBS_IDW_Clupea_pallasii_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Clupea pallasii\NBS_IDW_Clupea_pallasii_2010.tif
-NBS_IDW_Clupea_pallasii_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Clupea pallasii\NBS_IDW_Clupea_pallasii_2017.tif
-NBS_IDW_Clupea_pallasii_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:21:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Clupea pallasii\NBS_IDW_Clupea_pallasii_2019.tif
-NBS_IDW_Clupea_pallasii_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Clupea pallasii\NBS_IDW_Clupea_pallasii_2021.tif
-NBS_IDW_Clupea_pallasii_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Clupea pallasii\NBS_IDW_Clupea_pallasii_2022.tif
-NBS_IDW_Crossaster_papposus_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Crossaster papposus\NBS_IDW_Crossaster_papposus_2010.tif
-NBS_IDW_Crossaster_papposus_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Crossaster papposus\NBS_IDW_Crossaster_papposus_2017.tif
-NBS_IDW_Crossaster_papposus_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Crossaster papposus\NBS_IDW_Crossaster_papposus_2019.tif
-NBS_IDW_Crossaster_papposus_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Crossaster papposus\NBS_IDW_Crossaster_papposus_2021.tif
-NBS_IDW_Crossaster_papposus_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Crossaster papposus\NBS_IDW_Crossaster_papposus_2022.tif
-NBS_IDW_Eleginus_gracilis_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Eleginus gracilis\NBS_IDW_Eleginus_gracilis_2010.tif
-NBS_IDW_Eleginus_gracilis_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Eleginus gracilis\NBS_IDW_Eleginus_gracilis_2017.tif
-NBS_IDW_Eleginus_gracilis_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Eleginus gracilis\NBS_IDW_Eleginus_gracilis_2019.tif
-NBS_IDW_Eleginus_gracilis_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Eleginus gracilis\NBS_IDW_Eleginus_gracilis_2021.tif
-NBS_IDW_Eleginus_gracilis_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Eleginus gracilis\NBS_IDW_Eleginus_gracilis_2022.tif
-NBS_IDW_Enophrys_diceraus_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Enophrys diceraus\NBS_IDW_Enophrys_diceraus_2010.tif
-NBS_IDW_Enophrys_diceraus_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Enophrys diceraus\NBS_IDW_Enophrys_diceraus_2017.tif
-NBS_IDW_Enophrys_diceraus_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Enophrys diceraus\NBS_IDW_Enophrys_diceraus_2019.tif
-NBS_IDW_Enophrys_diceraus_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Enophrys diceraus\NBS_IDW_Enophrys_diceraus_2021.tif
-NBS_IDW_Enophrys_diceraus_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Enophrys diceraus\NBS_IDW_Enophrys_diceraus_2022.tif
-NBS_IDW_Erimacrus_isenbeckii_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Erimacrus isenbeckii\NBS_IDW_Erimacrus_isenbeckii_2010.tif
-NBS_IDW_Erimacrus_isenbeckii_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Erimacrus isenbeckii\NBS_IDW_Erimacrus_isenbeckii_2017.tif
-NBS_IDW_Erimacrus_isenbeckii_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Erimacrus isenbeckii\NBS_IDW_Erimacrus_isenbeckii_2019.tif
-NBS_IDW_Erimacrus_isenbeckii_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Erimacrus isenbeckii\NBS_IDW_Erimacrus_isenbeckii_2021.tif
-NBS_IDW_Erimacrus_isenbeckii_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Erimacrus isenbeckii\NBS_IDW_Erimacrus_isenbeckii_2022.tif
-NBS_IDW_Eunoe_depressa_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Eunoe depressa\NBS_IDW_Eunoe_depressa_2010.tif
-NBS_IDW_Eunoe_depressa_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Eunoe depressa\NBS_IDW_Eunoe_depressa_2017.tif
-NBS_IDW_Eunoe_depressa_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Eunoe depressa\NBS_IDW_Eunoe_depressa_2019.tif
-NBS_IDW_Eunoe_depressa_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Eunoe depressa\NBS_IDW_Eunoe_depressa_2021.tif
-NBS_IDW_Eunoe_depressa_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Eunoe depressa\NBS_IDW_Eunoe_depressa_2022.tif
-NBS_IDW_Eunoe_nodosa_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Eunoe nodosa\NBS_IDW_Eunoe_nodosa_2010.tif
-NBS_IDW_Eunoe_nodosa_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Eunoe nodosa\NBS_IDW_Eunoe_nodosa_2017.tif
-NBS_IDW_Eunoe_nodosa_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Eunoe nodosa\NBS_IDW_Eunoe_nodosa_2019.tif
-NBS_IDW_Eunoe_nodosa_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Eunoe nodosa\NBS_IDW_Eunoe_nodosa_2021.tif
-NBS_IDW_Eunoe_nodosa_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Eunoe nodosa\NBS_IDW_Eunoe_nodosa_2022.tif
-NBS_IDW_Evasterias_echinosoma_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Evasterias echinosoma\NBS_IDW_Evasterias_echinosoma_2010.tif
-NBS_IDW_Evasterias_echinosoma_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Evasterias echinosoma\NBS_IDW_Evasterias_echinosoma_2017.tif
-NBS_IDW_Evasterias_echinosoma_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Evasterias echinosoma\NBS_IDW_Evasterias_echinosoma_2019.tif
-NBS_IDW_Evasterias_echinosoma_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Evasterias echinosoma\NBS_IDW_Evasterias_echinosoma_2021.tif
-NBS_IDW_Evasterias_echinosoma_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Evasterias echinosoma\NBS_IDW_Evasterias_echinosoma_2022.tif
-NBS_IDW_Gadus_chalcogrammus_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Gadus chalcogrammus\NBS_IDW_Gadus_chalcogrammus_2010.tif
-NBS_IDW_Gadus_chalcogrammus_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Gadus chalcogrammus\NBS_IDW_Gadus_chalcogrammus_2017.tif
-NBS_IDW_Gadus_chalcogrammus_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Gadus chalcogrammus\NBS_IDW_Gadus_chalcogrammus_2019.tif
-NBS_IDW_Gadus_chalcogrammus_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Gadus chalcogrammus\NBS_IDW_Gadus_chalcogrammus_2021.tif
-NBS_IDW_Gadus_chalcogrammus_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Gadus chalcogrammus\NBS_IDW_Gadus_chalcogrammus_2022.tif
-NBS_IDW_Gadus_macrocephalus_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Gadus macrocephalus\NBS_IDW_Gadus_macrocephalus_2010.tif
-NBS_IDW_Gadus_macrocephalus_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Gadus macrocephalus\NBS_IDW_Gadus_macrocephalus_2017.tif
-NBS_IDW_Gadus_macrocephalus_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Gadus macrocephalus\NBS_IDW_Gadus_macrocephalus_2019.tif
-NBS_IDW_Gadus_macrocephalus_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Gadus macrocephalus\NBS_IDW_Gadus_macrocephalus_2021.tif
-NBS_IDW_Gadus_macrocephalus_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Gadus macrocephalus\NBS_IDW_Gadus_macrocephalus_2022.tif
-NBS_IDW_Gorgonocephalus_eucnemis_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Gorgonocephalus eucnemis\NBS_IDW_Gorgonocephalus_eucnemis_2010.tif
-NBS_IDW_Gorgonocephalus_eucnemis_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Gorgonocephalus eucnemis\NBS_IDW_Gorgonocephalus_eucnemis_2017.tif
-NBS_IDW_Gorgonocephalus_eucnemis_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Gorgonocephalus eucnemis\NBS_IDW_Gorgonocephalus_eucnemis_2019.tif
-NBS_IDW_Gorgonocephalus_eucnemis_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Gorgonocephalus eucnemis\NBS_IDW_Gorgonocephalus_eucnemis_2021.tif
-NBS_IDW_Gorgonocephalus_eucnemis_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Gorgonocephalus eucnemis\NBS_IDW_Gorgonocephalus_eucnemis_2022.tif
-NBS_IDW_Gymnocanthus_pistilliger_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Gymnocanthus pistilliger\NBS_IDW_Gymnocanthus_pistilliger_2010.tif
-NBS_IDW_Gymnocanthus_pistilliger_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Gymnocanthus pistilliger\NBS_IDW_Gymnocanthus_pistilliger_2017.tif
-NBS_IDW_Gymnocanthus_pistilliger_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Gymnocanthus pistilliger\NBS_IDW_Gymnocanthus_pistilliger_2019.tif
-NBS_IDW_Gymnocanthus_pistilliger_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Gymnocanthus pistilliger\NBS_IDW_Gymnocanthus_pistilliger_2021.tif
-NBS_IDW_Gymnocanthus_pistilliger_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Gymnocanthus pistilliger\NBS_IDW_Gymnocanthus_pistilliger_2022.tif
-NBS_IDW_Hexagrammos_stelleri_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Hexagrammos stelleri\NBS_IDW_Hexagrammos_stelleri_2010.tif
-NBS_IDW_Hexagrammos_stelleri_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Hexagrammos stelleri\NBS_IDW_Hexagrammos_stelleri_2017.tif
-NBS_IDW_Hexagrammos_stelleri_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Hexagrammos stelleri\NBS_IDW_Hexagrammos_stelleri_2019.tif
-NBS_IDW_Hexagrammos_stelleri_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Hexagrammos stelleri\NBS_IDW_Hexagrammos_stelleri_2021.tif
-NBS_IDW_Hexagrammos_stelleri_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Hexagrammos stelleri\NBS_IDW_Hexagrammos_stelleri_2022.tif
-NBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Hippoglossoides elassodon and H robustus\NBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2010.tif
-NBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Hippoglossoides elassodon and H robustus\NBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2017.tif
-NBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Hippoglossoides elassodon and H robustus\NBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2019.tif
-NBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Hippoglossoides elassodon and H robustus\NBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2021.tif
-NBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Hippoglossoides elassodon and H robustus\NBS_IDW_Hippoglossoides_elassodon_and_H_robustus_2022.tif
-NBS_IDW_Hippoglossus_stenolepis_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Hippoglossus stenolepis\NBS_IDW_Hippoglossus_stenolepis_2010.tif
-NBS_IDW_Hippoglossus_stenolepis_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Hippoglossus stenolepis\NBS_IDW_Hippoglossus_stenolepis_2017.tif
-NBS_IDW_Hippoglossus_stenolepis_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Hippoglossus stenolepis\NBS_IDW_Hippoglossus_stenolepis_2019.tif
-NBS_IDW_Hippoglossus_stenolepis_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Hippoglossus stenolepis\NBS_IDW_Hippoglossus_stenolepis_2021.tif
-NBS_IDW_Hippoglossus_stenolepis_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Hippoglossus stenolepis\NBS_IDW_Hippoglossus_stenolepis_2022.tif
-NBS_IDW_Hyas_coarctatus_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Hyas coarctatus\NBS_IDW_Hyas_coarctatus_2010.tif
-NBS_IDW_Hyas_coarctatus_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Hyas coarctatus\NBS_IDW_Hyas_coarctatus_2017.tif
-NBS_IDW_Hyas_coarctatus_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Hyas coarctatus\NBS_IDW_Hyas_coarctatus_2019.tif
-NBS_IDW_Hyas_coarctatus_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Hyas coarctatus\NBS_IDW_Hyas_coarctatus_2021.tif
-NBS_IDW_Hyas_coarctatus_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Hyas coarctatus\NBS_IDW_Hyas_coarctatus_2022.tif
-NBS_IDW_Labidochirus_splendescens_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Labidochirus splendescens\NBS_IDW_Labidochirus_splendescens_2010.tif
-NBS_IDW_Labidochirus_splendescens_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Labidochirus splendescens\NBS_IDW_Labidochirus_splendescens_2017.tif
-NBS_IDW_Labidochirus_splendescens_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Labidochirus splendescens\NBS_IDW_Labidochirus_splendescens_2019.tif
-NBS_IDW_Labidochirus_splendescens_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Labidochirus splendescens\NBS_IDW_Labidochirus_splendescens_2021.tif
-NBS_IDW_Labidochirus_splendescens_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Labidochirus splendescens\NBS_IDW_Labidochirus_splendescens_2022.tif
-NBS_IDW_Lepidopsetta_sp_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lepidopsetta sp\NBS_IDW_Lepidopsetta_sp_2010.tif
-NBS_IDW_Lepidopsetta_sp_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lepidopsetta sp\NBS_IDW_Lepidopsetta_sp_2017.tif
-NBS_IDW_Lepidopsetta_sp_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lepidopsetta sp\NBS_IDW_Lepidopsetta_sp_2019.tif
-NBS_IDW_Lepidopsetta_sp_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lepidopsetta sp\NBS_IDW_Lepidopsetta_sp_2021.tif
-NBS_IDW_Lepidopsetta_sp_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lepidopsetta sp\NBS_IDW_Lepidopsetta_sp_2022.tif
-NBS_IDW_Leptasterias_arctica_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Leptasterias arctica\NBS_IDW_Leptasterias_arctica_2010.tif
-NBS_IDW_Leptasterias_arctica_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Leptasterias arctica\NBS_IDW_Leptasterias_arctica_2017.tif
-NBS_IDW_Leptasterias_arctica_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Leptasterias arctica\NBS_IDW_Leptasterias_arctica_2019.tif
-NBS_IDW_Leptasterias_arctica_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Leptasterias arctica\NBS_IDW_Leptasterias_arctica_2021.tif
-NBS_IDW_Leptasterias_arctica_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Leptasterias arctica\NBS_IDW_Leptasterias_arctica_2022.tif
-NBS_IDW_Leptasterias_groenlandica_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Leptasterias groenlandica\NBS_IDW_Leptasterias_groenlandica_2010.tif
-NBS_IDW_Leptasterias_groenlandica_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Leptasterias groenlandica\NBS_IDW_Leptasterias_groenlandica_2017.tif
-NBS_IDW_Leptasterias_groenlandica_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Leptasterias groenlandica\NBS_IDW_Leptasterias_groenlandica_2019.tif
-NBS_IDW_Leptasterias_groenlandica_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Leptasterias groenlandica\NBS_IDW_Leptasterias_groenlandica_2021.tif
-NBS_IDW_Leptasterias_groenlandica_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Leptasterias groenlandica\NBS_IDW_Leptasterias_groenlandica_2022.tif
-NBS_IDW_Leptasterias_Hexasterias_polaris_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Leptasterias Hexasterias polaris\NBS_IDW_Leptasterias_Hexasterias_polaris_2010.tif
-NBS_IDW_Leptasterias_Hexasterias_polaris_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Leptasterias Hexasterias polaris\NBS_IDW_Leptasterias_Hexasterias_polaris_2017.tif
-NBS_IDW_Leptasterias_Hexasterias_polaris_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Leptasterias Hexasterias polaris\NBS_IDW_Leptasterias_Hexasterias_polaris_2019.tif
-NBS_IDW_Leptasterias_Hexasterias_polaris_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Leptasterias Hexasterias polaris\NBS_IDW_Leptasterias_Hexasterias_polaris_2021.tif
-NBS_IDW_Leptasterias_Hexasterias_polaris_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Leptasterias Hexasterias polaris\NBS_IDW_Leptasterias_Hexasterias_polaris_2022.tif
-NBS_IDW_Lethasterias_nanimensis_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lethasterias nanimensis\NBS_IDW_Lethasterias_nanimensis_2010.tif
-NBS_IDW_Lethasterias_nanimensis_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lethasterias nanimensis\NBS_IDW_Lethasterias_nanimensis_2017.tif
-NBS_IDW_Lethasterias_nanimensis_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lethasterias nanimensis\NBS_IDW_Lethasterias_nanimensis_2019.tif
-NBS_IDW_Lethasterias_nanimensis_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lethasterias nanimensis\NBS_IDW_Lethasterias_nanimensis_2021.tif
-NBS_IDW_Lethasterias_nanimensis_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lethasterias nanimensis\NBS_IDW_Lethasterias_nanimensis_2022.tif
-NBS_IDW_Limanda_aspera_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Limanda aspera\NBS_IDW_Limanda_aspera_2010.tif
-NBS_IDW_Limanda_aspera_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Limanda aspera\NBS_IDW_Limanda_aspera_2017.tif
-NBS_IDW_Limanda_aspera_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Limanda aspera\NBS_IDW_Limanda_aspera_2019.tif
-NBS_IDW_Limanda_aspera_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Limanda aspera\NBS_IDW_Limanda_aspera_2021.tif
-NBS_IDW_Limanda_aspera_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Limanda aspera\NBS_IDW_Limanda_aspera_2022.tif
-NBS_IDW_Limanda_proboscidea_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Limanda proboscidea\NBS_IDW_Limanda_proboscidea_2010.tif
-NBS_IDW_Limanda_proboscidea_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Limanda proboscidea\NBS_IDW_Limanda_proboscidea_2017.tif
-NBS_IDW_Limanda_proboscidea_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Limanda proboscidea\NBS_IDW_Limanda_proboscidea_2019.tif
-NBS_IDW_Limanda_proboscidea_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Limanda proboscidea\NBS_IDW_Limanda_proboscidea_2021.tif
-NBS_IDW_Limanda_proboscidea_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Limanda proboscidea\NBS_IDW_Limanda_proboscidea_2022.tif
-NBS_IDW_Limanda_sakhalinensis_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Limanda sakhalinensis\NBS_IDW_Limanda_sakhalinensis_2010.tif
-NBS_IDW_Limanda_sakhalinensis_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Limanda sakhalinensis\NBS_IDW_Limanda_sakhalinensis_2017.tif
-NBS_IDW_Limanda_sakhalinensis_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Limanda sakhalinensis\NBS_IDW_Limanda_sakhalinensis_2019.tif
-NBS_IDW_Limanda_sakhalinensis_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Limanda sakhalinensis\NBS_IDW_Limanda_sakhalinensis_2021.tif
-NBS_IDW_Limanda_sakhalinensis_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Limanda sakhalinensis\NBS_IDW_Limanda_sakhalinensis_2022.tif
-NBS_IDW_Liparis_gibbus_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Liparis gibbus\NBS_IDW_Liparis_gibbus_2010.tif
-NBS_IDW_Liparis_gibbus_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Liparis gibbus\NBS_IDW_Liparis_gibbus_2017.tif
-NBS_IDW_Liparis_gibbus_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Liparis gibbus\NBS_IDW_Liparis_gibbus_2019.tif
-NBS_IDW_Liparis_gibbus_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Liparis gibbus\NBS_IDW_Liparis_gibbus_2021.tif
-NBS_IDW_Liparis_gibbus_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Liparis gibbus\NBS_IDW_Liparis_gibbus_2022.tif
-NBS_IDW_Lumpenus_fabricii_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lumpenus fabricii\NBS_IDW_Lumpenus_fabricii_2010.tif
-NBS_IDW_Lumpenus_fabricii_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lumpenus fabricii\NBS_IDW_Lumpenus_fabricii_2017.tif
-NBS_IDW_Lumpenus_fabricii_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lumpenus fabricii\NBS_IDW_Lumpenus_fabricii_2019.tif
-NBS_IDW_Lumpenus_fabricii_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lumpenus fabricii\NBS_IDW_Lumpenus_fabricii_2021.tif
-NBS_IDW_Lumpenus_fabricii_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lumpenus fabricii\NBS_IDW_Lumpenus_fabricii_2022.tif
-NBS_IDW_Lycodes_palearis_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lycodes palearis\NBS_IDW_Lycodes_palearis_2010.tif
-NBS_IDW_Lycodes_palearis_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lycodes palearis\NBS_IDW_Lycodes_palearis_2017.tif
-NBS_IDW_Lycodes_palearis_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lycodes palearis\NBS_IDW_Lycodes_palearis_2019.tif
-NBS_IDW_Lycodes_palearis_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lycodes palearis\NBS_IDW_Lycodes_palearis_2021.tif
-NBS_IDW_Lycodes_palearis_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lycodes palearis\NBS_IDW_Lycodes_palearis_2022.tif
-NBS_IDW_Lycodes_turneri_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lycodes turneri\NBS_IDW_Lycodes_turneri_2010.tif
-NBS_IDW_Lycodes_turneri_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lycodes turneri\NBS_IDW_Lycodes_turneri_2017.tif
-NBS_IDW_Lycodes_turneri_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lycodes turneri\NBS_IDW_Lycodes_turneri_2019.tif
-NBS_IDW_Lycodes_turneri_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lycodes turneri\NBS_IDW_Lycodes_turneri_2021.tif
-NBS_IDW_Lycodes_turneri_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Lycodes turneri\NBS_IDW_Lycodes_turneri_2022.tif
-NBS_IDW_Mallotus_villosus_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Mallotus villosus\NBS_IDW_Mallotus_villosus_2010.tif
-NBS_IDW_Mallotus_villosus_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Mallotus villosus\NBS_IDW_Mallotus_villosus_2017.tif
-NBS_IDW_Mallotus_villosus_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Mallotus villosus\NBS_IDW_Mallotus_villosus_2019.tif
-NBS_IDW_Mallotus_villosus_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Mallotus villosus\NBS_IDW_Mallotus_villosus_2021.tif
-NBS_IDW_Mallotus_villosus_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Mallotus villosus\NBS_IDW_Mallotus_villosus_2022.tif
-NBS_IDW_Myoxocephalus_jaok_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Myoxocephalus jaok\NBS_IDW_Myoxocephalus_jaok_2010.tif
-NBS_IDW_Myoxocephalus_jaok_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Myoxocephalus jaok\NBS_IDW_Myoxocephalus_jaok_2017.tif
-NBS_IDW_Myoxocephalus_jaok_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Myoxocephalus jaok\NBS_IDW_Myoxocephalus_jaok_2019.tif
-NBS_IDW_Myoxocephalus_jaok_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Myoxocephalus jaok\NBS_IDW_Myoxocephalus_jaok_2021.tif
-NBS_IDW_Myoxocephalus_jaok_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Myoxocephalus jaok\NBS_IDW_Myoxocephalus_jaok_2022.tif
-NBS_IDW_Myoxocephalus_polyacanthocephalus_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Myoxocephalus polyacanthocephalus\NBS_IDW_Myoxocephalus_polyacanthocephalus_2010.tif
-NBS_IDW_Myoxocephalus_polyacanthocephalus_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Myoxocephalus polyacanthocephalus\NBS_IDW_Myoxocephalus_polyacanthocephalus_2017.tif
-NBS_IDW_Myoxocephalus_polyacanthocephalus_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Myoxocephalus polyacanthocephalus\NBS_IDW_Myoxocephalus_polyacanthocephalus_2019.tif
-NBS_IDW_Myoxocephalus_polyacanthocephalus_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Myoxocephalus polyacanthocephalus\NBS_IDW_Myoxocephalus_polyacanthocephalus_2021.tif
-NBS_IDW_Myoxocephalus_polyacanthocephalus_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Myoxocephalus polyacanthocephalus\NBS_IDW_Myoxocephalus_polyacanthocephalus_2022.tif
-NBS_IDW_Myoxocephalus_scorpius_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Myoxocephalus scorpius\NBS_IDW_Myoxocephalus_scorpius_2010.tif
-NBS_IDW_Myoxocephalus_scorpius_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Myoxocephalus scorpius\NBS_IDW_Myoxocephalus_scorpius_2017.tif
-NBS_IDW_Myoxocephalus_scorpius_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Myoxocephalus scorpius\NBS_IDW_Myoxocephalus_scorpius_2019.tif
-NBS_IDW_Myoxocephalus_scorpius_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Myoxocephalus scorpius\NBS_IDW_Myoxocephalus_scorpius_2021.tif
-NBS_IDW_Myoxocephalus_scorpius_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Myoxocephalus scorpius\NBS_IDW_Myoxocephalus_scorpius_2022.tif
-NBS_IDW_Neptunea_borealis_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Neptunea borealis\NBS_IDW_Neptunea_borealis_2010.tif
-NBS_IDW_Neptunea_borealis_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Neptunea borealis\NBS_IDW_Neptunea_borealis_2017.tif
-NBS_IDW_Neptunea_borealis_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Neptunea borealis\NBS_IDW_Neptunea_borealis_2019.tif
-NBS_IDW_Neptunea_borealis_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Neptunea borealis\NBS_IDW_Neptunea_borealis_2021.tif
-NBS_IDW_Neptunea_borealis_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Neptunea borealis\NBS_IDW_Neptunea_borealis_2022.tif
-NBS_IDW_Neptunea_heros_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Neptunea heros\NBS_IDW_Neptunea_heros_2010.tif
-NBS_IDW_Neptunea_heros_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Neptunea heros\NBS_IDW_Neptunea_heros_2017.tif
-NBS_IDW_Neptunea_heros_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Neptunea heros\NBS_IDW_Neptunea_heros_2019.tif
-NBS_IDW_Neptunea_heros_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Neptunea heros\NBS_IDW_Neptunea_heros_2021.tif
-NBS_IDW_Neptunea_heros_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Neptunea heros\NBS_IDW_Neptunea_heros_2022.tif
-NBS_IDW_Neptunea_ventricosa_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Neptunea ventricosa\NBS_IDW_Neptunea_ventricosa_2010.tif
-NBS_IDW_Neptunea_ventricosa_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Neptunea ventricosa\NBS_IDW_Neptunea_ventricosa_2017.tif
-NBS_IDW_Neptunea_ventricosa_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Neptunea ventricosa\NBS_IDW_Neptunea_ventricosa_2019.tif
-NBS_IDW_Neptunea_ventricosa_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Neptunea ventricosa\NBS_IDW_Neptunea_ventricosa_2021.tif
-NBS_IDW_Neptunea_ventricosa_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Neptunea ventricosa\NBS_IDW_Neptunea_ventricosa_2022.tif
-NBS_IDW_Occella_dodecaedron_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Occella dodecaedron\NBS_IDW_Occella_dodecaedron_2010.tif
-NBS_IDW_Occella_dodecaedron_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Occella dodecaedron\NBS_IDW_Occella_dodecaedron_2017.tif
-NBS_IDW_Occella_dodecaedron_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Occella dodecaedron\NBS_IDW_Occella_dodecaedron_2019.tif
-NBS_IDW_Occella_dodecaedron_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Occella dodecaedron\NBS_IDW_Occella_dodecaedron_2021.tif
-NBS_IDW_Occella_dodecaedron_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Occella dodecaedron\NBS_IDW_Occella_dodecaedron_2022.tif
-NBS_IDW_Ophiura_sarsii_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Ophiura sarsii\NBS_IDW_Ophiura_sarsii_2010.tif
-NBS_IDW_Ophiura_sarsii_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Ophiura sarsii\NBS_IDW_Ophiura_sarsii_2017.tif
-NBS_IDW_Ophiura_sarsii_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Ophiura sarsii\NBS_IDW_Ophiura_sarsii_2019.tif
-NBS_IDW_Ophiura_sarsii_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Ophiura sarsii\NBS_IDW_Ophiura_sarsii_2021.tif
-NBS_IDW_Ophiura_sarsii_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Ophiura sarsii\NBS_IDW_Ophiura_sarsii_2022.tif
-NBS_IDW_Osmerus_mordax_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Osmerus mordax\NBS_IDW_Osmerus_mordax_2010.tif
-NBS_IDW_Osmerus_mordax_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Osmerus mordax\NBS_IDW_Osmerus_mordax_2017.tif
-NBS_IDW_Osmerus_mordax_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Osmerus mordax\NBS_IDW_Osmerus_mordax_2019.tif
-NBS_IDW_Osmerus_mordax_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Osmerus mordax\NBS_IDW_Osmerus_mordax_2021.tif
-NBS_IDW_Osmerus_mordax_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Osmerus mordax\NBS_IDW_Osmerus_mordax_2022.tif
-NBS_IDW_Pagurus_capillatus_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pagurus capillatus\NBS_IDW_Pagurus_capillatus_2010.tif
-NBS_IDW_Pagurus_capillatus_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pagurus capillatus\NBS_IDW_Pagurus_capillatus_2017.tif
-NBS_IDW_Pagurus_capillatus_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pagurus capillatus\NBS_IDW_Pagurus_capillatus_2019.tif
-NBS_IDW_Pagurus_capillatus_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pagurus capillatus\NBS_IDW_Pagurus_capillatus_2021.tif
-NBS_IDW_Pagurus_capillatus_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pagurus capillatus\NBS_IDW_Pagurus_capillatus_2022.tif
-NBS_IDW_Pagurus_ochotensis_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pagurus ochotensis\NBS_IDW_Pagurus_ochotensis_2010.tif
-NBS_IDW_Pagurus_ochotensis_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pagurus ochotensis\NBS_IDW_Pagurus_ochotensis_2017.tif
-NBS_IDW_Pagurus_ochotensis_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pagurus ochotensis\NBS_IDW_Pagurus_ochotensis_2019.tif
-NBS_IDW_Pagurus_ochotensis_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pagurus ochotensis\NBS_IDW_Pagurus_ochotensis_2021.tif
-NBS_IDW_Pagurus_ochotensis_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pagurus ochotensis\NBS_IDW_Pagurus_ochotensis_2022.tif
-NBS_IDW_Pagurus_rathbuni_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pagurus rathbuni\NBS_IDW_Pagurus_rathbuni_2010.tif
-NBS_IDW_Pagurus_rathbuni_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pagurus rathbuni\NBS_IDW_Pagurus_rathbuni_2017.tif
-NBS_IDW_Pagurus_rathbuni_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pagurus rathbuni\NBS_IDW_Pagurus_rathbuni_2019.tif
-NBS_IDW_Pagurus_rathbuni_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pagurus rathbuni\NBS_IDW_Pagurus_rathbuni_2021.tif
-NBS_IDW_Pagurus_rathbuni_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pagurus rathbuni\NBS_IDW_Pagurus_rathbuni_2022.tif
-NBS_IDW_Pagurus_trigonocheirus_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pagurus trigonocheirus\NBS_IDW_Pagurus_trigonocheirus_2010.tif
-NBS_IDW_Pagurus_trigonocheirus_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pagurus trigonocheirus\NBS_IDW_Pagurus_trigonocheirus_2017.tif
-NBS_IDW_Pagurus_trigonocheirus_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pagurus trigonocheirus\NBS_IDW_Pagurus_trigonocheirus_2019.tif
-NBS_IDW_Pagurus_trigonocheirus_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pagurus trigonocheirus\NBS_IDW_Pagurus_trigonocheirus_2021.tif
-NBS_IDW_Pagurus_trigonocheirus_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pagurus trigonocheirus\NBS_IDW_Pagurus_trigonocheirus_2022.tif
-NBS_IDW_Pallasina_barbata_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pallasina barbata\NBS_IDW_Pallasina_barbata_2010.tif
-NBS_IDW_Pallasina_barbata_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pallasina barbata\NBS_IDW_Pallasina_barbata_2017.tif
-NBS_IDW_Pallasina_barbata_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pallasina barbata\NBS_IDW_Pallasina_barbata_2019.tif
-NBS_IDW_Pallasina_barbata_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pallasina barbata\NBS_IDW_Pallasina_barbata_2021.tif
-NBS_IDW_Pallasina_barbata_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pallasina barbata\NBS_IDW_Pallasina_barbata_2022.tif
-NBS_IDW_Pandalus_goniurus_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pandalus goniurus\NBS_IDW_Pandalus_goniurus_2010.tif
-NBS_IDW_Pandalus_goniurus_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pandalus goniurus\NBS_IDW_Pandalus_goniurus_2017.tif
-NBS_IDW_Pandalus_goniurus_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pandalus goniurus\NBS_IDW_Pandalus_goniurus_2019.tif
-NBS_IDW_Pandalus_goniurus_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pandalus goniurus\NBS_IDW_Pandalus_goniurus_2021.tif
-NBS_IDW_Pandalus_goniurus_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pandalus goniurus\NBS_IDW_Pandalus_goniurus_2022.tif
-NBS_IDW_Paralithodes_camtschaticus_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Paralithodes camtschaticus\NBS_IDW_Paralithodes_camtschaticus_2010.tif
-NBS_IDW_Paralithodes_camtschaticus_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Paralithodes camtschaticus\NBS_IDW_Paralithodes_camtschaticus_2017.tif
-NBS_IDW_Paralithodes_camtschaticus_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Paralithodes camtschaticus\NBS_IDW_Paralithodes_camtschaticus_2019.tif
-NBS_IDW_Paralithodes_camtschaticus_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Paralithodes camtschaticus\NBS_IDW_Paralithodes_camtschaticus_2021.tif
-NBS_IDW_Paralithodes_camtschaticus_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:22:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Paralithodes camtschaticus\NBS_IDW_Paralithodes_camtschaticus_2022.tif
-NBS_IDW_Paralithodes_platypus_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Paralithodes platypus\NBS_IDW_Paralithodes_platypus_2010.tif
-NBS_IDW_Paralithodes_platypus_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Paralithodes platypus\NBS_IDW_Paralithodes_platypus_2017.tif
-NBS_IDW_Paralithodes_platypus_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Paralithodes platypus\NBS_IDW_Paralithodes_platypus_2019.tif
-NBS_IDW_Paralithodes_platypus_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Paralithodes platypus\NBS_IDW_Paralithodes_platypus_2021.tif
-NBS_IDW_Paralithodes_platypus_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Paralithodes platypus\NBS_IDW_Paralithodes_platypus_2022.tif
-NBS_IDW_Platichthys_stellatus_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Platichthys stellatus\NBS_IDW_Platichthys_stellatus_2010.tif
-NBS_IDW_Platichthys_stellatus_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Platichthys stellatus\NBS_IDW_Platichthys_stellatus_2017.tif
-NBS_IDW_Platichthys_stellatus_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Platichthys stellatus\NBS_IDW_Platichthys_stellatus_2019.tif
-NBS_IDW_Platichthys_stellatus_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Platichthys stellatus\NBS_IDW_Platichthys_stellatus_2021.tif
-NBS_IDW_Platichthys_stellatus_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Platichthys stellatus\NBS_IDW_Platichthys_stellatus_2022.tif
-NBS_IDW_Pleuronectes_quadrituberculatus_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pleuronectes quadrituberculatus\NBS_IDW_Pleuronectes_quadrituberculatus_2010.tif
-NBS_IDW_Pleuronectes_quadrituberculatus_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pleuronectes quadrituberculatus\NBS_IDW_Pleuronectes_quadrituberculatus_2017.tif
-NBS_IDW_Pleuronectes_quadrituberculatus_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pleuronectes quadrituberculatus\NBS_IDW_Pleuronectes_quadrituberculatus_2019.tif
-NBS_IDW_Pleuronectes_quadrituberculatus_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pleuronectes quadrituberculatus\NBS_IDW_Pleuronectes_quadrituberculatus_2021.tif
-NBS_IDW_Pleuronectes_quadrituberculatus_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Pleuronectes quadrituberculatus\NBS_IDW_Pleuronectes_quadrituberculatus_2022.tif
-NBS_IDW_Podothecus_accipenserinus_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Podothecus accipenserinus\NBS_IDW_Podothecus_accipenserinus_2010.tif
-NBS_IDW_Podothecus_accipenserinus_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Podothecus accipenserinus\NBS_IDW_Podothecus_accipenserinus_2017.tif
-NBS_IDW_Podothecus_accipenserinus_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Podothecus accipenserinus\NBS_IDW_Podothecus_accipenserinus_2019.tif
-NBS_IDW_Podothecus_accipenserinus_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Podothecus accipenserinus\NBS_IDW_Podothecus_accipenserinus_2021.tif
-NBS_IDW_Podothecus_accipenserinus_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Podothecus accipenserinus\NBS_IDW_Podothecus_accipenserinus_2022.tif
-NBS_IDW_Podothecus_veternus_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Podothecus veternus\NBS_IDW_Podothecus_veternus_2010.tif
-NBS_IDW_Podothecus_veternus_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Podothecus veternus\NBS_IDW_Podothecus_veternus_2017.tif
-NBS_IDW_Podothecus_veternus_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Podothecus veternus\NBS_IDW_Podothecus_veternus_2019.tif
-NBS_IDW_Podothecus_veternus_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Podothecus veternus\NBS_IDW_Podothecus_veternus_2021.tif
-NBS_IDW_Podothecus_veternus_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Podothecus veternus\NBS_IDW_Podothecus_veternus_2022.tif
-NBS_IDW_Sclerocrangon_boreas_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Sclerocrangon boreas\NBS_IDW_Sclerocrangon_boreas_2010.tif
-NBS_IDW_Sclerocrangon_boreas_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Sclerocrangon boreas\NBS_IDW_Sclerocrangon_boreas_2017.tif
-NBS_IDW_Sclerocrangon_boreas_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Sclerocrangon boreas\NBS_IDW_Sclerocrangon_boreas_2019.tif
-NBS_IDW_Sclerocrangon_boreas_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Sclerocrangon boreas\NBS_IDW_Sclerocrangon_boreas_2021.tif
-NBS_IDW_Sclerocrangon_boreas_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Sclerocrangon boreas\NBS_IDW_Sclerocrangon_boreas_2022.tif
-NBS_IDW_Serripes_notabilis_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Serripes notabilis\NBS_IDW_Serripes_notabilis_2010.tif
-NBS_IDW_Serripes_notabilis_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Serripes notabilis\NBS_IDW_Serripes_notabilis_2017.tif
-NBS_IDW_Serripes_notabilis_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Serripes notabilis\NBS_IDW_Serripes_notabilis_2019.tif
-NBS_IDW_Serripes_notabilis_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Serripes notabilis\NBS_IDW_Serripes_notabilis_2021.tif
-NBS_IDW_Serripes_notabilis_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Serripes notabilis\NBS_IDW_Serripes_notabilis_2022.tif
-NBS_IDW_Strongylocentrotus_droebachiensis_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Strongylocentrotus droebachiensis\NBS_IDW_Strongylocentrotus_droebachiensis_2010.tif
-NBS_IDW_Strongylocentrotus_droebachiensis_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Strongylocentrotus droebachiensis\NBS_IDW_Strongylocentrotus_droebachiensis_2017.tif
-NBS_IDW_Strongylocentrotus_droebachiensis_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Strongylocentrotus droebachiensis\NBS_IDW_Strongylocentrotus_droebachiensis_2019.tif
-NBS_IDW_Strongylocentrotus_droebachiensis_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Strongylocentrotus droebachiensis\NBS_IDW_Strongylocentrotus_droebachiensis_2021.tif
-NBS_IDW_Strongylocentrotus_droebachiensis_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Strongylocentrotus droebachiensis\NBS_IDW_Strongylocentrotus_droebachiensis_2022.tif
-NBS_IDW_Styela_rustica_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Styela rustica\NBS_IDW_Styela_rustica_2010.tif
-NBS_IDW_Styela_rustica_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Styela rustica\NBS_IDW_Styela_rustica_2017.tif
-NBS_IDW_Styela_rustica_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Styela rustica\NBS_IDW_Styela_rustica_2019.tif
-NBS_IDW_Styela_rustica_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Styela rustica\NBS_IDW_Styela_rustica_2021.tif
-NBS_IDW_Styela_rustica_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Styela rustica\NBS_IDW_Styela_rustica_2022.tif
-NBS_IDW_Telmessus_cheiragonus_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Telmessus cheiragonus\NBS_IDW_Telmessus_cheiragonus_2010.tif
-NBS_IDW_Telmessus_cheiragonus_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Telmessus cheiragonus\NBS_IDW_Telmessus_cheiragonus_2017.tif
-NBS_IDW_Telmessus_cheiragonus_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Telmessus cheiragonus\NBS_IDW_Telmessus_cheiragonus_2019.tif
-NBS_IDW_Telmessus_cheiragonus_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Telmessus cheiragonus\NBS_IDW_Telmessus_cheiragonus_2021.tif
-NBS_IDW_Telmessus_cheiragonus_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Telmessus cheiragonus\NBS_IDW_Telmessus_cheiragonus_2022.tif
-NBS_IDW_Triglops_pingelii_2010.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Triglops pingelii\NBS_IDW_Triglops_pingelii_2010.tif
-NBS_IDW_Triglops_pingelii_2017.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Triglops pingelii\NBS_IDW_Triglops_pingelii_2017.tif
-NBS_IDW_Triglops_pingelii_2019.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Triglops pingelii\NBS_IDW_Triglops_pingelii_2019.tif
-NBS_IDW_Triglops_pingelii_2021.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Triglops pingelii\NBS_IDW_Triglops_pingelii_2021.tif
-NBS_IDW_Triglops_pingelii_2022.tif,.tif,772.02 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\Triglops pingelii\NBS_IDW_Triglops_pingelii_2022.tif
-NBS_IDW_Core_Species_Richness_2010.tif,.tif,771.98 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\_Core Species Richness\NBS_IDW_Core_Species_Richness_2010.tif
-NBS_IDW_Core_Species_Richness_2017.tif,.tif,771.98 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\_Core Species Richness\NBS_IDW_Core_Species_Richness_2017.tif
-NBS_IDW_Core_Species_Richness_2019.tif,.tif,771.98 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\_Core Species Richness\NBS_IDW_Core_Species_Richness_2019.tif
-NBS_IDW_Core_Species_Richness_2021.tif,.tif,771.98 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\_Core Species Richness\NBS_IDW_Core_Species_Richness_2021.tif
-NBS_IDW_Core_Species_Richness_2022.tif,.tif,771.98 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\_Core Species Richness\NBS_IDW_Core_Species_Richness_2022.tif
-NBS_IDW_Species_Richness_2010.tif,.tif,771.98 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\_Species Richness\NBS_IDW_Species_Richness_2010.tif
-NBS_IDW_Species_Richness_2017.tif,.tif,771.98 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\_Species Richness\NBS_IDW_Species_Richness_2017.tif
-NBS_IDW_Species_Richness_2019.tif,.tif,771.98 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\_Species Richness\NBS_IDW_Species_Richness_2019.tif
-NBS_IDW_Species_Richness_2021.tif,.tif,771.98 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\_Species Richness\NBS_IDW_Species_Richness_2021.tif
-NBS_IDW_Species_Richness_2022.tif,.tif,771.98 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NBS_IDW\_Species Richness\NBS_IDW_Species_Richness_2022.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1974.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1975.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1976.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1977.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1978.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1979.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1980.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1981.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1982.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1983.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1984.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1985.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1986.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1987.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1988.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1989.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1990.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1991.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1992.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1993.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1994.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1995.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1996.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1997.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1998.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1999.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2000.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2001.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2002.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2003.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2004.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2005.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2006.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2007.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2008.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2009.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2010.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2011.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2012.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2013.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2014.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2015.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2016.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2018.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2019.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2021.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2022.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1974.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1975.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1976.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1977.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1978.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1979.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1980.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1981.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1982.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1983.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1984.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1985.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1986.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1987.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1988.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1989.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1990.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1991.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1992.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1993.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1994.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1995.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1996.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1997.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1998.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1999.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2000.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2001.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2002.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2003.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2004.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2005.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2006.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2007.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2008.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2009.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2010.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2011.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2012.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2013.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2014.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2015.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2016.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2018.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2019.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2021.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2022.tif
-NEUS_FAL_IDW_Cancer_borealis_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1974.tif
-NEUS_FAL_IDW_Cancer_borealis_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1975.tif
-NEUS_FAL_IDW_Cancer_borealis_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1976.tif
-NEUS_FAL_IDW_Cancer_borealis_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1977.tif
-NEUS_FAL_IDW_Cancer_borealis_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1978.tif
-NEUS_FAL_IDW_Cancer_borealis_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1979.tif
-NEUS_FAL_IDW_Cancer_borealis_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1980.tif
-NEUS_FAL_IDW_Cancer_borealis_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1981.tif
-NEUS_FAL_IDW_Cancer_borealis_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1982.tif
-NEUS_FAL_IDW_Cancer_borealis_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1983.tif
-NEUS_FAL_IDW_Cancer_borealis_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1984.tif
-NEUS_FAL_IDW_Cancer_borealis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1985.tif
-NEUS_FAL_IDW_Cancer_borealis_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1986.tif
-NEUS_FAL_IDW_Cancer_borealis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1987.tif
-NEUS_FAL_IDW_Cancer_borealis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1988.tif
-NEUS_FAL_IDW_Cancer_borealis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1989.tif
-NEUS_FAL_IDW_Cancer_borealis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1990.tif
-NEUS_FAL_IDW_Cancer_borealis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1991.tif
-NEUS_FAL_IDW_Cancer_borealis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1992.tif
-NEUS_FAL_IDW_Cancer_borealis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1993.tif
-NEUS_FAL_IDW_Cancer_borealis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1994.tif
-NEUS_FAL_IDW_Cancer_borealis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1995.tif
-NEUS_FAL_IDW_Cancer_borealis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1996.tif
-NEUS_FAL_IDW_Cancer_borealis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1997.tif
-NEUS_FAL_IDW_Cancer_borealis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1998.tif
-NEUS_FAL_IDW_Cancer_borealis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1999.tif
-NEUS_FAL_IDW_Cancer_borealis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2000.tif
-NEUS_FAL_IDW_Cancer_borealis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2001.tif
-NEUS_FAL_IDW_Cancer_borealis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2002.tif
-NEUS_FAL_IDW_Cancer_borealis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2003.tif
-NEUS_FAL_IDW_Cancer_borealis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2004.tif
-NEUS_FAL_IDW_Cancer_borealis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2005.tif
-NEUS_FAL_IDW_Cancer_borealis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2006.tif
-NEUS_FAL_IDW_Cancer_borealis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2007.tif
-NEUS_FAL_IDW_Cancer_borealis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2008.tif
-NEUS_FAL_IDW_Cancer_borealis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2009.tif
-NEUS_FAL_IDW_Cancer_borealis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2010.tif
-NEUS_FAL_IDW_Cancer_borealis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2011.tif
-NEUS_FAL_IDW_Cancer_borealis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2012.tif
-NEUS_FAL_IDW_Cancer_borealis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2013.tif
-NEUS_FAL_IDW_Cancer_borealis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2014.tif
-NEUS_FAL_IDW_Cancer_borealis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2015.tif
-NEUS_FAL_IDW_Cancer_borealis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2016.tif
-NEUS_FAL_IDW_Cancer_borealis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2018.tif
-NEUS_FAL_IDW_Cancer_borealis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2019.tif
-NEUS_FAL_IDW_Cancer_borealis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2021.tif
-NEUS_FAL_IDW_Cancer_borealis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2022.tif
-NEUS_FAL_IDW_Cancer_irroratus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1974.tif
-NEUS_FAL_IDW_Cancer_irroratus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1975.tif
-NEUS_FAL_IDW_Cancer_irroratus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1976.tif
-NEUS_FAL_IDW_Cancer_irroratus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1977.tif
-NEUS_FAL_IDW_Cancer_irroratus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1978.tif
-NEUS_FAL_IDW_Cancer_irroratus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1979.tif
-NEUS_FAL_IDW_Cancer_irroratus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1980.tif
-NEUS_FAL_IDW_Cancer_irroratus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1981.tif
-NEUS_FAL_IDW_Cancer_irroratus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1982.tif
-NEUS_FAL_IDW_Cancer_irroratus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1983.tif
-NEUS_FAL_IDW_Cancer_irroratus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1984.tif
-NEUS_FAL_IDW_Cancer_irroratus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1985.tif
-NEUS_FAL_IDW_Cancer_irroratus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1986.tif
-NEUS_FAL_IDW_Cancer_irroratus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1987.tif
-NEUS_FAL_IDW_Cancer_irroratus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1988.tif
-NEUS_FAL_IDW_Cancer_irroratus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1989.tif
-NEUS_FAL_IDW_Cancer_irroratus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1990.tif
-NEUS_FAL_IDW_Cancer_irroratus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1991.tif
-NEUS_FAL_IDW_Cancer_irroratus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1992.tif
-NEUS_FAL_IDW_Cancer_irroratus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1993.tif
-NEUS_FAL_IDW_Cancer_irroratus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1994.tif
-NEUS_FAL_IDW_Cancer_irroratus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1995.tif
-NEUS_FAL_IDW_Cancer_irroratus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1996.tif
-NEUS_FAL_IDW_Cancer_irroratus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1997.tif
-NEUS_FAL_IDW_Cancer_irroratus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1998.tif
-NEUS_FAL_IDW_Cancer_irroratus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1999.tif
-NEUS_FAL_IDW_Cancer_irroratus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2000.tif
-NEUS_FAL_IDW_Cancer_irroratus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2001.tif
-NEUS_FAL_IDW_Cancer_irroratus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2002.tif
-NEUS_FAL_IDW_Cancer_irroratus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2003.tif
-NEUS_FAL_IDW_Cancer_irroratus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2004.tif
-NEUS_FAL_IDW_Cancer_irroratus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2005.tif
-NEUS_FAL_IDW_Cancer_irroratus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2006.tif
-NEUS_FAL_IDW_Cancer_irroratus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2007.tif
-NEUS_FAL_IDW_Cancer_irroratus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2008.tif
-NEUS_FAL_IDW_Cancer_irroratus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:23:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2009.tif
-NEUS_FAL_IDW_Cancer_irroratus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2010.tif
-NEUS_FAL_IDW_Cancer_irroratus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2011.tif
-NEUS_FAL_IDW_Cancer_irroratus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2012.tif
-NEUS_FAL_IDW_Cancer_irroratus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2013.tif
-NEUS_FAL_IDW_Cancer_irroratus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2014.tif
-NEUS_FAL_IDW_Cancer_irroratus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2015.tif
-NEUS_FAL_IDW_Cancer_irroratus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2016.tif
-NEUS_FAL_IDW_Cancer_irroratus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2018.tif
-NEUS_FAL_IDW_Cancer_irroratus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2019.tif
-NEUS_FAL_IDW_Cancer_irroratus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2021.tif
-NEUS_FAL_IDW_Cancer_irroratus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2022.tif
-NEUS_FAL_IDW_Centropristis_striata_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1974.tif
-NEUS_FAL_IDW_Centropristis_striata_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1975.tif
-NEUS_FAL_IDW_Centropristis_striata_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1976.tif
-NEUS_FAL_IDW_Centropristis_striata_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1977.tif
-NEUS_FAL_IDW_Centropristis_striata_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1978.tif
-NEUS_FAL_IDW_Centropristis_striata_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1979.tif
-NEUS_FAL_IDW_Centropristis_striata_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1980.tif
-NEUS_FAL_IDW_Centropristis_striata_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1981.tif
-NEUS_FAL_IDW_Centropristis_striata_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1982.tif
-NEUS_FAL_IDW_Centropristis_striata_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1983.tif
-NEUS_FAL_IDW_Centropristis_striata_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1984.tif
-NEUS_FAL_IDW_Centropristis_striata_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1985.tif
-NEUS_FAL_IDW_Centropristis_striata_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1986.tif
-NEUS_FAL_IDW_Centropristis_striata_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1987.tif
-NEUS_FAL_IDW_Centropristis_striata_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1988.tif
-NEUS_FAL_IDW_Centropristis_striata_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1989.tif
-NEUS_FAL_IDW_Centropristis_striata_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1990.tif
-NEUS_FAL_IDW_Centropristis_striata_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1991.tif
-NEUS_FAL_IDW_Centropristis_striata_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1992.tif
-NEUS_FAL_IDW_Centropristis_striata_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1993.tif
-NEUS_FAL_IDW_Centropristis_striata_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1994.tif
-NEUS_FAL_IDW_Centropristis_striata_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1995.tif
-NEUS_FAL_IDW_Centropristis_striata_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1996.tif
-NEUS_FAL_IDW_Centropristis_striata_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1997.tif
-NEUS_FAL_IDW_Centropristis_striata_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1998.tif
-NEUS_FAL_IDW_Centropristis_striata_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1999.tif
-NEUS_FAL_IDW_Centropristis_striata_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2000.tif
-NEUS_FAL_IDW_Centropristis_striata_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2001.tif
-NEUS_FAL_IDW_Centropristis_striata_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2002.tif
-NEUS_FAL_IDW_Centropristis_striata_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2003.tif
-NEUS_FAL_IDW_Centropristis_striata_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2004.tif
-NEUS_FAL_IDW_Centropristis_striata_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2005.tif
-NEUS_FAL_IDW_Centropristis_striata_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2006.tif
-NEUS_FAL_IDW_Centropristis_striata_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2007.tif
-NEUS_FAL_IDW_Centropristis_striata_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2008.tif
-NEUS_FAL_IDW_Centropristis_striata_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2009.tif
-NEUS_FAL_IDW_Centropristis_striata_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2010.tif
-NEUS_FAL_IDW_Centropristis_striata_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2011.tif
-NEUS_FAL_IDW_Centropristis_striata_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2012.tif
-NEUS_FAL_IDW_Centropristis_striata_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2013.tif
-NEUS_FAL_IDW_Centropristis_striata_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2014.tif
-NEUS_FAL_IDW_Centropristis_striata_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2015.tif
-NEUS_FAL_IDW_Centropristis_striata_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2016.tif
-NEUS_FAL_IDW_Centropristis_striata_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2018.tif
-NEUS_FAL_IDW_Centropristis_striata_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2019.tif
-NEUS_FAL_IDW_Centropristis_striata_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2021.tif
-NEUS_FAL_IDW_Centropristis_striata_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2022.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1974.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1975.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1976.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1977.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1978.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1979.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1980.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1981.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1982.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1983.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1984.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1985.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1986.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1987.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1988.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1989.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1990.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1991.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1992.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1993.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1994.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1995.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1996.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1997.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1998.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1999.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2000.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2001.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2002.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2003.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2004.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2005.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2006.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2007.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2008.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2009.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2010.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2011.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2012.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2013.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2014.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2015.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2016.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2018.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2019.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2021.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2022.tif
-NEUS_FAL_IDW_Clupea_harengus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1974.tif
-NEUS_FAL_IDW_Clupea_harengus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1975.tif
-NEUS_FAL_IDW_Clupea_harengus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1976.tif
-NEUS_FAL_IDW_Clupea_harengus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1977.tif
-NEUS_FAL_IDW_Clupea_harengus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1978.tif
-NEUS_FAL_IDW_Clupea_harengus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1979.tif
-NEUS_FAL_IDW_Clupea_harengus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1980.tif
-NEUS_FAL_IDW_Clupea_harengus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1981.tif
-NEUS_FAL_IDW_Clupea_harengus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1982.tif
-NEUS_FAL_IDW_Clupea_harengus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1983.tif
-NEUS_FAL_IDW_Clupea_harengus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1984.tif
-NEUS_FAL_IDW_Clupea_harengus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1985.tif
-NEUS_FAL_IDW_Clupea_harengus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1986.tif
-NEUS_FAL_IDW_Clupea_harengus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1987.tif
-NEUS_FAL_IDW_Clupea_harengus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1988.tif
-NEUS_FAL_IDW_Clupea_harengus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1989.tif
-NEUS_FAL_IDW_Clupea_harengus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1990.tif
-NEUS_FAL_IDW_Clupea_harengus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1991.tif
-NEUS_FAL_IDW_Clupea_harengus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1992.tif
-NEUS_FAL_IDW_Clupea_harengus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1993.tif
-NEUS_FAL_IDW_Clupea_harengus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1994.tif
-NEUS_FAL_IDW_Clupea_harengus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1995.tif
-NEUS_FAL_IDW_Clupea_harengus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1996.tif
-NEUS_FAL_IDW_Clupea_harengus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1997.tif
-NEUS_FAL_IDW_Clupea_harengus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1998.tif
-NEUS_FAL_IDW_Clupea_harengus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1999.tif
-NEUS_FAL_IDW_Clupea_harengus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2000.tif
-NEUS_FAL_IDW_Clupea_harengus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2001.tif
-NEUS_FAL_IDW_Clupea_harengus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2002.tif
-NEUS_FAL_IDW_Clupea_harengus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2003.tif
-NEUS_FAL_IDW_Clupea_harengus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2004.tif
-NEUS_FAL_IDW_Clupea_harengus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2005.tif
-NEUS_FAL_IDW_Clupea_harengus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2006.tif
-NEUS_FAL_IDW_Clupea_harengus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2007.tif
-NEUS_FAL_IDW_Clupea_harengus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2008.tif
-NEUS_FAL_IDW_Clupea_harengus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2009.tif
-NEUS_FAL_IDW_Clupea_harengus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2010.tif
-NEUS_FAL_IDW_Clupea_harengus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2011.tif
-NEUS_FAL_IDW_Clupea_harengus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2012.tif
-NEUS_FAL_IDW_Clupea_harengus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2013.tif
-NEUS_FAL_IDW_Clupea_harengus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2014.tif
-NEUS_FAL_IDW_Clupea_harengus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2015.tif
-NEUS_FAL_IDW_Clupea_harengus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2016.tif
-NEUS_FAL_IDW_Clupea_harengus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2018.tif
-NEUS_FAL_IDW_Clupea_harengus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2019.tif
-NEUS_FAL_IDW_Clupea_harengus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2021.tif
-NEUS_FAL_IDW_Clupea_harengus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2022.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1974.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1975.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1976.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1977.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1978.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1979.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1980.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1981.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1982.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1983.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1984.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1985.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1986.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1987.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1988.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1989.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1990.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1991.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1992.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1993.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1994.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1995.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1996.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1997.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1998.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_1999.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_2000.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_2001.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_2002.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_2003.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_2004.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_2005.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_2006.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_2007.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_2008.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_2009.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_2010.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_2011.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_2012.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_2013.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_2014.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_2015.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_2016.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_2018.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_2019.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_2021.tif
-NEUS_FAL_IDW_Doryteuthis_pealeii_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Doryteuthis pealeii\NEUS_FAL_IDW_Doryteuthis_pealeii_2022.tif
-NEUS_FAL_IDW_Gadus_morhua_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1974.tif
-NEUS_FAL_IDW_Gadus_morhua_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1975.tif
-NEUS_FAL_IDW_Gadus_morhua_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1976.tif
-NEUS_FAL_IDW_Gadus_morhua_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1977.tif
-NEUS_FAL_IDW_Gadus_morhua_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1978.tif
-NEUS_FAL_IDW_Gadus_morhua_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1979.tif
-NEUS_FAL_IDW_Gadus_morhua_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1980.tif
-NEUS_FAL_IDW_Gadus_morhua_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1981.tif
-NEUS_FAL_IDW_Gadus_morhua_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1982.tif
-NEUS_FAL_IDW_Gadus_morhua_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1983.tif
-NEUS_FAL_IDW_Gadus_morhua_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1984.tif
-NEUS_FAL_IDW_Gadus_morhua_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1985.tif
-NEUS_FAL_IDW_Gadus_morhua_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1986.tif
-NEUS_FAL_IDW_Gadus_morhua_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1987.tif
-NEUS_FAL_IDW_Gadus_morhua_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1988.tif
-NEUS_FAL_IDW_Gadus_morhua_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1989.tif
-NEUS_FAL_IDW_Gadus_morhua_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1990.tif
-NEUS_FAL_IDW_Gadus_morhua_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1991.tif
-NEUS_FAL_IDW_Gadus_morhua_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1992.tif
-NEUS_FAL_IDW_Gadus_morhua_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1993.tif
-NEUS_FAL_IDW_Gadus_morhua_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1994.tif
-NEUS_FAL_IDW_Gadus_morhua_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1995.tif
-NEUS_FAL_IDW_Gadus_morhua_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1996.tif
-NEUS_FAL_IDW_Gadus_morhua_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1997.tif
-NEUS_FAL_IDW_Gadus_morhua_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1998.tif
-NEUS_FAL_IDW_Gadus_morhua_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1999.tif
-NEUS_FAL_IDW_Gadus_morhua_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2000.tif
-NEUS_FAL_IDW_Gadus_morhua_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2001.tif
-NEUS_FAL_IDW_Gadus_morhua_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2002.tif
-NEUS_FAL_IDW_Gadus_morhua_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2003.tif
-NEUS_FAL_IDW_Gadus_morhua_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2004.tif
-NEUS_FAL_IDW_Gadus_morhua_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2005.tif
-NEUS_FAL_IDW_Gadus_morhua_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2006.tif
-NEUS_FAL_IDW_Gadus_morhua_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2007.tif
-NEUS_FAL_IDW_Gadus_morhua_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2008.tif
-NEUS_FAL_IDW_Gadus_morhua_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2009.tif
-NEUS_FAL_IDW_Gadus_morhua_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2010.tif
-NEUS_FAL_IDW_Gadus_morhua_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2011.tif
-NEUS_FAL_IDW_Gadus_morhua_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2012.tif
-NEUS_FAL_IDW_Gadus_morhua_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2013.tif
-NEUS_FAL_IDW_Gadus_morhua_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2014.tif
-NEUS_FAL_IDW_Gadus_morhua_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2015.tif
-NEUS_FAL_IDW_Gadus_morhua_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2016.tif
-NEUS_FAL_IDW_Gadus_morhua_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2018.tif
-NEUS_FAL_IDW_Gadus_morhua_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2019.tif
-NEUS_FAL_IDW_Gadus_morhua_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2021.tif
-NEUS_FAL_IDW_Gadus_morhua_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2022.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:24:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1974.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1975.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1976.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1977.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1978.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1979.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1980.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1981.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1982.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1983.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1984.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1985.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1986.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1987.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1988.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1989.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1990.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1991.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1992.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1993.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1994.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1995.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1996.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1997.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1998.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1999.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2000.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2001.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2002.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2003.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2004.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2005.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2006.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2007.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2008.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2009.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2010.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2011.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2012.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2013.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2014.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2015.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2016.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2018.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2019.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2021.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2022.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1974.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1975.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1976.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1977.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1978.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1979.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1980.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1981.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1982.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1983.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1984.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1985.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1986.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1987.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1988.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1989.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1990.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1991.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1992.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1993.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1994.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1995.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1996.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1997.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1998.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1999.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2000.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2001.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2002.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2003.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2004.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2005.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2006.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2007.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2008.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2009.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2010.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2011.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2012.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2013.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2014.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2015.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2016.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2018.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2019.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2021.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2022.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1974.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1975.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1976.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1977.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1978.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1979.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1980.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1981.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1982.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1983.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1984.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1985.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1986.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1987.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1988.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1989.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1990.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1991.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1992.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1993.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1994.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1995.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1996.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1997.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1998.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_1999.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_2000.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_2001.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_2002.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_2003.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_2004.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_2005.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_2006.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_2007.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_2008.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_2009.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_2010.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_2011.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_2012.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_2013.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_2014.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_2015.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_2016.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_2018.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_2019.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_2021.tif
-NEUS_FAL_IDW_Hippoglossina_oblonga_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossina oblonga\NEUS_FAL_IDW_Hippoglossina_oblonga_2022.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1974.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1975.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1976.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1977.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1978.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1979.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1980.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1981.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1982.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1983.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1984.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1985.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1986.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1987.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1988.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1989.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1990.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1991.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1992.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1993.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1994.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1995.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1996.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1997.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1998.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1999.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2000.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2001.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2002.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2003.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2004.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2005.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2006.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2007.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2008.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2009.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2010.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2011.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2012.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2013.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2014.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2015.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2016.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2018.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2019.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2021.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2022.tif
-NEUS_FAL_IDW_Homarus_americanus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1974.tif
-NEUS_FAL_IDW_Homarus_americanus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1975.tif
-NEUS_FAL_IDW_Homarus_americanus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1976.tif
-NEUS_FAL_IDW_Homarus_americanus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1977.tif
-NEUS_FAL_IDW_Homarus_americanus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1978.tif
-NEUS_FAL_IDW_Homarus_americanus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1979.tif
-NEUS_FAL_IDW_Homarus_americanus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1980.tif
-NEUS_FAL_IDW_Homarus_americanus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1981.tif
-NEUS_FAL_IDW_Homarus_americanus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1982.tif
-NEUS_FAL_IDW_Homarus_americanus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1983.tif
-NEUS_FAL_IDW_Homarus_americanus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1984.tif
-NEUS_FAL_IDW_Homarus_americanus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1985.tif
-NEUS_FAL_IDW_Homarus_americanus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1986.tif
-NEUS_FAL_IDW_Homarus_americanus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1987.tif
-NEUS_FAL_IDW_Homarus_americanus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1988.tif
-NEUS_FAL_IDW_Homarus_americanus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1989.tif
-NEUS_FAL_IDW_Homarus_americanus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1990.tif
-NEUS_FAL_IDW_Homarus_americanus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1991.tif
-NEUS_FAL_IDW_Homarus_americanus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1992.tif
-NEUS_FAL_IDW_Homarus_americanus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1993.tif
-NEUS_FAL_IDW_Homarus_americanus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1994.tif
-NEUS_FAL_IDW_Homarus_americanus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1995.tif
-NEUS_FAL_IDW_Homarus_americanus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1996.tif
-NEUS_FAL_IDW_Homarus_americanus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1997.tif
-NEUS_FAL_IDW_Homarus_americanus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1998.tif
-NEUS_FAL_IDW_Homarus_americanus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1999.tif
-NEUS_FAL_IDW_Homarus_americanus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2000.tif
-NEUS_FAL_IDW_Homarus_americanus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2001.tif
-NEUS_FAL_IDW_Homarus_americanus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2002.tif
-NEUS_FAL_IDW_Homarus_americanus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2003.tif
-NEUS_FAL_IDW_Homarus_americanus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2004.tif
-NEUS_FAL_IDW_Homarus_americanus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2005.tif
-NEUS_FAL_IDW_Homarus_americanus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2006.tif
-NEUS_FAL_IDW_Homarus_americanus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2007.tif
-NEUS_FAL_IDW_Homarus_americanus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2008.tif
-NEUS_FAL_IDW_Homarus_americanus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2009.tif
-NEUS_FAL_IDW_Homarus_americanus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2010.tif
-NEUS_FAL_IDW_Homarus_americanus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2011.tif
-NEUS_FAL_IDW_Homarus_americanus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2012.tif
-NEUS_FAL_IDW_Homarus_americanus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2013.tif
-NEUS_FAL_IDW_Homarus_americanus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2014.tif
-NEUS_FAL_IDW_Homarus_americanus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2015.tif
-NEUS_FAL_IDW_Homarus_americanus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2016.tif
-NEUS_FAL_IDW_Homarus_americanus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2018.tif
-NEUS_FAL_IDW_Homarus_americanus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2019.tif
-NEUS_FAL_IDW_Homarus_americanus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2021.tif
-NEUS_FAL_IDW_Homarus_americanus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2022.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1974.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1975.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1976.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1977.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1978.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1979.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1980.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1981.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1982.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1983.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1984.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1985.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1986.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1987.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1988.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1989.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1990.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:25:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1991.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1992.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1993.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1994.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1995.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1996.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1997.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1998.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1999.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2000.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2001.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2002.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2003.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2004.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2005.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2006.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2007.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2008.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2009.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2010.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2011.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2012.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2013.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2014.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2015.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2016.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2018.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2019.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2021.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2022.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1974.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1975.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1976.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1977.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1978.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1979.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1980.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1981.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1982.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1983.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1984.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1985.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1986.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1987.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1988.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1989.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1990.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1991.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1992.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1993.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1994.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1995.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1996.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1997.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1998.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1999.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2000.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2001.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2002.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2003.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2004.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2005.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2006.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2007.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2008.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2009.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2010.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2011.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2012.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2013.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2014.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2015.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2016.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2018.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2019.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2021.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2022.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1974.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1975.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1976.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1977.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1978.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1979.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1980.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1981.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1982.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1983.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1984.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1985.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1986.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1987.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1988.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1989.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1990.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1991.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1992.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1993.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1994.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1995.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1996.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1997.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1998.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_1999.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_2000.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_2001.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_2002.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_2003.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_2004.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_2005.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_2006.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_2007.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_2008.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_2009.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_2010.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_2011.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_2012.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_2013.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_2014.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_2015.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_2016.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_2018.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_2019.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_2021.tif
-NEUS_FAL_IDW_Leucoraja_erinacea_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja erinacea\NEUS_FAL_IDW_Leucoraja_erinacea_2022.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1974.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1975.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1976.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1977.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1978.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1979.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1980.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1981.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1982.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1983.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1984.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1985.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1986.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1987.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1988.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1989.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1990.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1991.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1992.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1993.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1994.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1995.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1996.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1997.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1998.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1999.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2000.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2001.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2002.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2003.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2004.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2005.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2006.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2007.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2008.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2009.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2010.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2011.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2012.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2013.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2014.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2015.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2016.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2018.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2019.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2021.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2022.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1974.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1975.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1976.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1977.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1978.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1979.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1980.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1981.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1982.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1983.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1984.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1985.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1986.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1987.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1988.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1989.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1990.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1991.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1992.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1993.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1994.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1995.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1996.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1997.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1998.tif
-NEUS_FAL_IDW_Limanda_ferruginea_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_1999.tif
-NEUS_FAL_IDW_Limanda_ferruginea_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_2000.tif
-NEUS_FAL_IDW_Limanda_ferruginea_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_2001.tif
-NEUS_FAL_IDW_Limanda_ferruginea_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_2002.tif
-NEUS_FAL_IDW_Limanda_ferruginea_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_2003.tif
-NEUS_FAL_IDW_Limanda_ferruginea_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_2004.tif
-NEUS_FAL_IDW_Limanda_ferruginea_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_2005.tif
-NEUS_FAL_IDW_Limanda_ferruginea_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_2006.tif
-NEUS_FAL_IDW_Limanda_ferruginea_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_2007.tif
-NEUS_FAL_IDW_Limanda_ferruginea_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_2008.tif
-NEUS_FAL_IDW_Limanda_ferruginea_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_2009.tif
-NEUS_FAL_IDW_Limanda_ferruginea_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_2010.tif
-NEUS_FAL_IDW_Limanda_ferruginea_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_2011.tif
-NEUS_FAL_IDW_Limanda_ferruginea_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_2012.tif
-NEUS_FAL_IDW_Limanda_ferruginea_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_2013.tif
-NEUS_FAL_IDW_Limanda_ferruginea_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_2014.tif
-NEUS_FAL_IDW_Limanda_ferruginea_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_2015.tif
-NEUS_FAL_IDW_Limanda_ferruginea_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_2016.tif
-NEUS_FAL_IDW_Limanda_ferruginea_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_2018.tif
-NEUS_FAL_IDW_Limanda_ferruginea_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_2019.tif
-NEUS_FAL_IDW_Limanda_ferruginea_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_2021.tif
-NEUS_FAL_IDW_Limanda_ferruginea_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Limanda ferruginea\NEUS_FAL_IDW_Limanda_ferruginea_2022.tif
-NEUS_FAL_IDW_Lophius_americanus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1974.tif
-NEUS_FAL_IDW_Lophius_americanus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1975.tif
-NEUS_FAL_IDW_Lophius_americanus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1976.tif
-NEUS_FAL_IDW_Lophius_americanus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1977.tif
-NEUS_FAL_IDW_Lophius_americanus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1978.tif
-NEUS_FAL_IDW_Lophius_americanus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1979.tif
-NEUS_FAL_IDW_Lophius_americanus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1980.tif
-NEUS_FAL_IDW_Lophius_americanus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1981.tif
-NEUS_FAL_IDW_Lophius_americanus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1982.tif
-NEUS_FAL_IDW_Lophius_americanus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1983.tif
-NEUS_FAL_IDW_Lophius_americanus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1984.tif
-NEUS_FAL_IDW_Lophius_americanus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1985.tif
-NEUS_FAL_IDW_Lophius_americanus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1986.tif
-NEUS_FAL_IDW_Lophius_americanus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1987.tif
-NEUS_FAL_IDW_Lophius_americanus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1988.tif
-NEUS_FAL_IDW_Lophius_americanus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1989.tif
-NEUS_FAL_IDW_Lophius_americanus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1990.tif
-NEUS_FAL_IDW_Lophius_americanus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1991.tif
-NEUS_FAL_IDW_Lophius_americanus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1992.tif
-NEUS_FAL_IDW_Lophius_americanus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1993.tif
-NEUS_FAL_IDW_Lophius_americanus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1994.tif
-NEUS_FAL_IDW_Lophius_americanus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1995.tif
-NEUS_FAL_IDW_Lophius_americanus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1996.tif
-NEUS_FAL_IDW_Lophius_americanus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1997.tif
-NEUS_FAL_IDW_Lophius_americanus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1998.tif
-NEUS_FAL_IDW_Lophius_americanus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1999.tif
-NEUS_FAL_IDW_Lophius_americanus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2000.tif
-NEUS_FAL_IDW_Lophius_americanus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2001.tif
-NEUS_FAL_IDW_Lophius_americanus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2002.tif
-NEUS_FAL_IDW_Lophius_americanus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2003.tif
-NEUS_FAL_IDW_Lophius_americanus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2004.tif
-NEUS_FAL_IDW_Lophius_americanus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2005.tif
-NEUS_FAL_IDW_Lophius_americanus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2006.tif
-NEUS_FAL_IDW_Lophius_americanus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2007.tif
-NEUS_FAL_IDW_Lophius_americanus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2008.tif
-NEUS_FAL_IDW_Lophius_americanus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2009.tif
-NEUS_FAL_IDW_Lophius_americanus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2010.tif
-NEUS_FAL_IDW_Lophius_americanus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2011.tif
-NEUS_FAL_IDW_Lophius_americanus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2012.tif
-NEUS_FAL_IDW_Lophius_americanus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2013.tif
-NEUS_FAL_IDW_Lophius_americanus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2014.tif
-NEUS_FAL_IDW_Lophius_americanus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2015.tif
-NEUS_FAL_IDW_Lophius_americanus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2016.tif
-NEUS_FAL_IDW_Lophius_americanus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2018.tif
-NEUS_FAL_IDW_Lophius_americanus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2019.tif
-NEUS_FAL_IDW_Lophius_americanus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2021.tif
-NEUS_FAL_IDW_Lophius_americanus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2022.tif
-NEUS_FAL_IDW_Malacoraja_senta_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1974.tif
-NEUS_FAL_IDW_Malacoraja_senta_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1975.tif
-NEUS_FAL_IDW_Malacoraja_senta_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1976.tif
-NEUS_FAL_IDW_Malacoraja_senta_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1977.tif
-NEUS_FAL_IDW_Malacoraja_senta_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1978.tif
-NEUS_FAL_IDW_Malacoraja_senta_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1979.tif
-NEUS_FAL_IDW_Malacoraja_senta_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1980.tif
-NEUS_FAL_IDW_Malacoraja_senta_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1981.tif
-NEUS_FAL_IDW_Malacoraja_senta_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1982.tif
-NEUS_FAL_IDW_Malacoraja_senta_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1983.tif
-NEUS_FAL_IDW_Malacoraja_senta_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1984.tif
-NEUS_FAL_IDW_Malacoraja_senta_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1985.tif
-NEUS_FAL_IDW_Malacoraja_senta_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1986.tif
-NEUS_FAL_IDW_Malacoraja_senta_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1987.tif
-NEUS_FAL_IDW_Malacoraja_senta_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1988.tif
-NEUS_FAL_IDW_Malacoraja_senta_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1989.tif
-NEUS_FAL_IDW_Malacoraja_senta_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1990.tif
-NEUS_FAL_IDW_Malacoraja_senta_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1991.tif
-NEUS_FAL_IDW_Malacoraja_senta_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1992.tif
-NEUS_FAL_IDW_Malacoraja_senta_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1993.tif
-NEUS_FAL_IDW_Malacoraja_senta_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1994.tif
-NEUS_FAL_IDW_Malacoraja_senta_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1995.tif
-NEUS_FAL_IDW_Malacoraja_senta_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1996.tif
-NEUS_FAL_IDW_Malacoraja_senta_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1997.tif
-NEUS_FAL_IDW_Malacoraja_senta_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1998.tif
-NEUS_FAL_IDW_Malacoraja_senta_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1999.tif
-NEUS_FAL_IDW_Malacoraja_senta_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2000.tif
-NEUS_FAL_IDW_Malacoraja_senta_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:26:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2001.tif
-NEUS_FAL_IDW_Malacoraja_senta_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2002.tif
-NEUS_FAL_IDW_Malacoraja_senta_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2003.tif
-NEUS_FAL_IDW_Malacoraja_senta_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2004.tif
-NEUS_FAL_IDW_Malacoraja_senta_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2005.tif
-NEUS_FAL_IDW_Malacoraja_senta_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2006.tif
-NEUS_FAL_IDW_Malacoraja_senta_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2007.tif
-NEUS_FAL_IDW_Malacoraja_senta_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2008.tif
-NEUS_FAL_IDW_Malacoraja_senta_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2009.tif
-NEUS_FAL_IDW_Malacoraja_senta_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2010.tif
-NEUS_FAL_IDW_Malacoraja_senta_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2011.tif
-NEUS_FAL_IDW_Malacoraja_senta_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2012.tif
-NEUS_FAL_IDW_Malacoraja_senta_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2013.tif
-NEUS_FAL_IDW_Malacoraja_senta_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2014.tif
-NEUS_FAL_IDW_Malacoraja_senta_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2015.tif
-NEUS_FAL_IDW_Malacoraja_senta_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2016.tif
-NEUS_FAL_IDW_Malacoraja_senta_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2018.tif
-NEUS_FAL_IDW_Malacoraja_senta_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2019.tif
-NEUS_FAL_IDW_Malacoraja_senta_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2021.tif
-NEUS_FAL_IDW_Malacoraja_senta_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2022.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1974.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1975.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1976.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1977.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1978.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1979.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1980.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1981.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1982.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1983.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1984.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1985.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1986.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1987.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1988.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1989.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1990.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1991.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1992.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1993.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1994.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1995.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1996.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1997.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1998.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1999.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2000.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2001.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2002.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2003.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2004.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2005.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2006.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2007.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2008.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2009.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2010.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2011.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2012.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2013.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2014.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2015.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2016.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2018.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2019.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2021.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2022.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1974.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1975.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1976.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1977.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1978.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1979.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1980.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1981.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1982.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1983.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1984.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1985.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1986.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1987.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1988.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1989.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1990.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1991.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1992.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1993.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1994.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1995.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1996.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1997.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1998.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1999.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2000.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2001.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2002.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2003.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2004.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2005.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2006.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2007.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2008.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2009.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2010.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2011.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2012.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2013.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2014.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2015.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2016.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2018.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2019.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2021.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2022.tif
-NEUS_FAL_IDW_Mustelus_canis_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1974.tif
-NEUS_FAL_IDW_Mustelus_canis_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1975.tif
-NEUS_FAL_IDW_Mustelus_canis_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1976.tif
-NEUS_FAL_IDW_Mustelus_canis_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1977.tif
-NEUS_FAL_IDW_Mustelus_canis_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1978.tif
-NEUS_FAL_IDW_Mustelus_canis_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1979.tif
-NEUS_FAL_IDW_Mustelus_canis_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1980.tif
-NEUS_FAL_IDW_Mustelus_canis_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1981.tif
-NEUS_FAL_IDW_Mustelus_canis_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1982.tif
-NEUS_FAL_IDW_Mustelus_canis_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1983.tif
-NEUS_FAL_IDW_Mustelus_canis_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1984.tif
-NEUS_FAL_IDW_Mustelus_canis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1985.tif
-NEUS_FAL_IDW_Mustelus_canis_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1986.tif
-NEUS_FAL_IDW_Mustelus_canis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1987.tif
-NEUS_FAL_IDW_Mustelus_canis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1988.tif
-NEUS_FAL_IDW_Mustelus_canis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1989.tif
-NEUS_FAL_IDW_Mustelus_canis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1990.tif
-NEUS_FAL_IDW_Mustelus_canis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1991.tif
-NEUS_FAL_IDW_Mustelus_canis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1992.tif
-NEUS_FAL_IDW_Mustelus_canis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1993.tif
-NEUS_FAL_IDW_Mustelus_canis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1994.tif
-NEUS_FAL_IDW_Mustelus_canis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1995.tif
-NEUS_FAL_IDW_Mustelus_canis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1996.tif
-NEUS_FAL_IDW_Mustelus_canis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1997.tif
-NEUS_FAL_IDW_Mustelus_canis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1998.tif
-NEUS_FAL_IDW_Mustelus_canis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1999.tif
-NEUS_FAL_IDW_Mustelus_canis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2000.tif
-NEUS_FAL_IDW_Mustelus_canis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2001.tif
-NEUS_FAL_IDW_Mustelus_canis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2002.tif
-NEUS_FAL_IDW_Mustelus_canis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2003.tif
-NEUS_FAL_IDW_Mustelus_canis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2004.tif
-NEUS_FAL_IDW_Mustelus_canis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2005.tif
-NEUS_FAL_IDW_Mustelus_canis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2006.tif
-NEUS_FAL_IDW_Mustelus_canis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2007.tif
-NEUS_FAL_IDW_Mustelus_canis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2008.tif
-NEUS_FAL_IDW_Mustelus_canis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2009.tif
-NEUS_FAL_IDW_Mustelus_canis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2010.tif
-NEUS_FAL_IDW_Mustelus_canis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2011.tif
-NEUS_FAL_IDW_Mustelus_canis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2012.tif
-NEUS_FAL_IDW_Mustelus_canis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2013.tif
-NEUS_FAL_IDW_Mustelus_canis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2014.tif
-NEUS_FAL_IDW_Mustelus_canis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2015.tif
-NEUS_FAL_IDW_Mustelus_canis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2016.tif
-NEUS_FAL_IDW_Mustelus_canis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2018.tif
-NEUS_FAL_IDW_Mustelus_canis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2019.tif
-NEUS_FAL_IDW_Mustelus_canis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2021.tif
-NEUS_FAL_IDW_Mustelus_canis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2022.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1974.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1975.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1976.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1977.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1978.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1979.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1980.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1981.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1982.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1983.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1984.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1985.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1986.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1987.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1988.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1989.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1990.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1991.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1992.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1993.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1994.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1995.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1996.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1997.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1998.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1999.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2000.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2001.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2002.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2003.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2004.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2005.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2006.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2007.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2008.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2009.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2010.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2011.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2012.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2013.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2014.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2015.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2016.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2018.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2019.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2021.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2022.tif
-NEUS_FAL_IDW_Pandalus_borealis_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1974.tif
-NEUS_FAL_IDW_Pandalus_borealis_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1975.tif
-NEUS_FAL_IDW_Pandalus_borealis_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1976.tif
-NEUS_FAL_IDW_Pandalus_borealis_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1977.tif
-NEUS_FAL_IDW_Pandalus_borealis_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1978.tif
-NEUS_FAL_IDW_Pandalus_borealis_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1979.tif
-NEUS_FAL_IDW_Pandalus_borealis_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1980.tif
-NEUS_FAL_IDW_Pandalus_borealis_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1981.tif
-NEUS_FAL_IDW_Pandalus_borealis_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1982.tif
-NEUS_FAL_IDW_Pandalus_borealis_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1983.tif
-NEUS_FAL_IDW_Pandalus_borealis_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1984.tif
-NEUS_FAL_IDW_Pandalus_borealis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1985.tif
-NEUS_FAL_IDW_Pandalus_borealis_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1986.tif
-NEUS_FAL_IDW_Pandalus_borealis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1987.tif
-NEUS_FAL_IDW_Pandalus_borealis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1988.tif
-NEUS_FAL_IDW_Pandalus_borealis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1989.tif
-NEUS_FAL_IDW_Pandalus_borealis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1990.tif
-NEUS_FAL_IDW_Pandalus_borealis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1991.tif
-NEUS_FAL_IDW_Pandalus_borealis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1992.tif
-NEUS_FAL_IDW_Pandalus_borealis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1993.tif
-NEUS_FAL_IDW_Pandalus_borealis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1994.tif
-NEUS_FAL_IDW_Pandalus_borealis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1995.tif
-NEUS_FAL_IDW_Pandalus_borealis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1996.tif
-NEUS_FAL_IDW_Pandalus_borealis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1997.tif
-NEUS_FAL_IDW_Pandalus_borealis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1998.tif
-NEUS_FAL_IDW_Pandalus_borealis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1999.tif
-NEUS_FAL_IDW_Pandalus_borealis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2000.tif
-NEUS_FAL_IDW_Pandalus_borealis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2001.tif
-NEUS_FAL_IDW_Pandalus_borealis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2002.tif
-NEUS_FAL_IDW_Pandalus_borealis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2003.tif
-NEUS_FAL_IDW_Pandalus_borealis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2004.tif
-NEUS_FAL_IDW_Pandalus_borealis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2005.tif
-NEUS_FAL_IDW_Pandalus_borealis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2006.tif
-NEUS_FAL_IDW_Pandalus_borealis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2007.tif
-NEUS_FAL_IDW_Pandalus_borealis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2008.tif
-NEUS_FAL_IDW_Pandalus_borealis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2009.tif
-NEUS_FAL_IDW_Pandalus_borealis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2010.tif
-NEUS_FAL_IDW_Pandalus_borealis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2011.tif
-NEUS_FAL_IDW_Pandalus_borealis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2012.tif
-NEUS_FAL_IDW_Pandalus_borealis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2013.tif
-NEUS_FAL_IDW_Pandalus_borealis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:27:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2014.tif
-NEUS_FAL_IDW_Pandalus_borealis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2015.tif
-NEUS_FAL_IDW_Pandalus_borealis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2016.tif
-NEUS_FAL_IDW_Pandalus_borealis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2018.tif
-NEUS_FAL_IDW_Pandalus_borealis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2019.tif
-NEUS_FAL_IDW_Pandalus_borealis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2021.tif
-NEUS_FAL_IDW_Pandalus_borealis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2022.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1974.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1975.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1976.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1977.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1978.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1979.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1980.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1981.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1982.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1983.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1984.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1985.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1986.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1987.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1988.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1989.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1990.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1991.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1992.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1993.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1994.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1995.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1996.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1997.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1998.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1999.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2000.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2001.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2002.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2003.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2004.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2005.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2006.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2007.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2008.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2009.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2010.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2011.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2012.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2013.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2014.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2015.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2016.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2018.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2019.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2021.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2022.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1974.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1975.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1976.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1977.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1978.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1979.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1980.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1981.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1982.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1983.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1984.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1985.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1986.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1987.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1988.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1989.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1990.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1991.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1992.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1993.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1994.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1995.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1996.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1997.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1998.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1999.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2000.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2001.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2002.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2003.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2004.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2005.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2006.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2007.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2008.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2009.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2010.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2011.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2012.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2013.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2014.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2015.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2016.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2018.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2019.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2021.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2022.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1974.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1975.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1976.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1977.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1978.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1979.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1980.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1981.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1982.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1983.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1984.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1985.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1986.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1987.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1988.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1989.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1990.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1991.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1992.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1993.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1994.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1995.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1996.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1997.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1998.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1999.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2000.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2001.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2002.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2003.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2004.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2005.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2006.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2007.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2008.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2009.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2010.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2011.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2012.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2013.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2014.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2015.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2016.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2018.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2019.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2021.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2022.tif
-NEUS_FAL_IDW_Pollachius_virens_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1974.tif
-NEUS_FAL_IDW_Pollachius_virens_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1975.tif
-NEUS_FAL_IDW_Pollachius_virens_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1976.tif
-NEUS_FAL_IDW_Pollachius_virens_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1977.tif
-NEUS_FAL_IDW_Pollachius_virens_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1978.tif
-NEUS_FAL_IDW_Pollachius_virens_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1979.tif
-NEUS_FAL_IDW_Pollachius_virens_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1980.tif
-NEUS_FAL_IDW_Pollachius_virens_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1981.tif
-NEUS_FAL_IDW_Pollachius_virens_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1982.tif
-NEUS_FAL_IDW_Pollachius_virens_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1983.tif
-NEUS_FAL_IDW_Pollachius_virens_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1984.tif
-NEUS_FAL_IDW_Pollachius_virens_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1985.tif
-NEUS_FAL_IDW_Pollachius_virens_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1986.tif
-NEUS_FAL_IDW_Pollachius_virens_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1987.tif
-NEUS_FAL_IDW_Pollachius_virens_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1988.tif
-NEUS_FAL_IDW_Pollachius_virens_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1989.tif
-NEUS_FAL_IDW_Pollachius_virens_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1990.tif
-NEUS_FAL_IDW_Pollachius_virens_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1991.tif
-NEUS_FAL_IDW_Pollachius_virens_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1992.tif
-NEUS_FAL_IDW_Pollachius_virens_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1993.tif
-NEUS_FAL_IDW_Pollachius_virens_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1994.tif
-NEUS_FAL_IDW_Pollachius_virens_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1995.tif
-NEUS_FAL_IDW_Pollachius_virens_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1996.tif
-NEUS_FAL_IDW_Pollachius_virens_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1997.tif
-NEUS_FAL_IDW_Pollachius_virens_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1998.tif
-NEUS_FAL_IDW_Pollachius_virens_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1999.tif
-NEUS_FAL_IDW_Pollachius_virens_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2000.tif
-NEUS_FAL_IDW_Pollachius_virens_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2001.tif
-NEUS_FAL_IDW_Pollachius_virens_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2002.tif
-NEUS_FAL_IDW_Pollachius_virens_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2003.tif
-NEUS_FAL_IDW_Pollachius_virens_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2004.tif
-NEUS_FAL_IDW_Pollachius_virens_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2005.tif
-NEUS_FAL_IDW_Pollachius_virens_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2006.tif
-NEUS_FAL_IDW_Pollachius_virens_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2007.tif
-NEUS_FAL_IDW_Pollachius_virens_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2008.tif
-NEUS_FAL_IDW_Pollachius_virens_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2009.tif
-NEUS_FAL_IDW_Pollachius_virens_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2010.tif
-NEUS_FAL_IDW_Pollachius_virens_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2011.tif
-NEUS_FAL_IDW_Pollachius_virens_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2012.tif
-NEUS_FAL_IDW_Pollachius_virens_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2013.tif
-NEUS_FAL_IDW_Pollachius_virens_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2014.tif
-NEUS_FAL_IDW_Pollachius_virens_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2015.tif
-NEUS_FAL_IDW_Pollachius_virens_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2016.tif
-NEUS_FAL_IDW_Pollachius_virens_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2018.tif
-NEUS_FAL_IDW_Pollachius_virens_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2019.tif
-NEUS_FAL_IDW_Pollachius_virens_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2021.tif
-NEUS_FAL_IDW_Pollachius_virens_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2022.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1974.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1975.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1976.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1977.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1978.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1979.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1980.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1981.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1982.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1983.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1984.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1985.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1986.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1987.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1988.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1989.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1990.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1991.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1992.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1993.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1994.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1995.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1996.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1997.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1998.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1999.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2000.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2001.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2002.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2003.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2004.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2005.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2006.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2007.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2008.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2009.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2010.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2011.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2012.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2013.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2014.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2015.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2016.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2018.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2019.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2021.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2022.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1974.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1975.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1976.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1977.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1978.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:28:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1979.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1980.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1981.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1982.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1983.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1984.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1985.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1986.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1987.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1988.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1989.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1990.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1991.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1992.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1993.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1994.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1995.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1996.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1997.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1998.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1999.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2000.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2001.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2002.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2003.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2004.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2005.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2006.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2007.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2008.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2009.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2010.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2011.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2012.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2013.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2014.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2015.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2016.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2018.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2019.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2021.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2022.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1974.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1975.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1976.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1977.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1978.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1979.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1980.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1981.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1982.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1983.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1984.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1985.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1986.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1987.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1988.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1989.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1990.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1991.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1992.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1993.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1994.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1995.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1996.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1997.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1998.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1999.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2000.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2001.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2002.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2003.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2004.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2005.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2006.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2007.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2008.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2009.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2010.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2011.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2012.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2013.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2014.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2015.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2016.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2018.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2019.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2021.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2022.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1974.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1975.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1976.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1977.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1978.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1979.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1980.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1981.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1982.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1983.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1984.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1985.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:29:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1986.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1987.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1988.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1989.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1990.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1991.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1992.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1993.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1994.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1995.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1996.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1997.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1998.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1999.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2000.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2001.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2002.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2003.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2004.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2005.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2006.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2007.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2008.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2009.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2010.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2011.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2012.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2013.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2014.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2015.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2016.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2018.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2019.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2021.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2022.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1974.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1975.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1976.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1977.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1978.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1979.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1980.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1981.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1982.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1983.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1984.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1985.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1986.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1987.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1988.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1989.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1990.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1991.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1992.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1993.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1994.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1995.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1996.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1997.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1998.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1999.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2000.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2001.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2002.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2003.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2004.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2005.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2006.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2007.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2008.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2009.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2010.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2011.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2012.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2013.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2014.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2015.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2016.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2018.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2019.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2021.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2022.tif
-NEUS_FAL_IDW_Squalus_acanthias_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1974.tif
-NEUS_FAL_IDW_Squalus_acanthias_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1975.tif
-NEUS_FAL_IDW_Squalus_acanthias_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1976.tif
-NEUS_FAL_IDW_Squalus_acanthias_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1977.tif
-NEUS_FAL_IDW_Squalus_acanthias_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1978.tif
-NEUS_FAL_IDW_Squalus_acanthias_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1979.tif
-NEUS_FAL_IDW_Squalus_acanthias_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1980.tif
-NEUS_FAL_IDW_Squalus_acanthias_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1981.tif
-NEUS_FAL_IDW_Squalus_acanthias_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1982.tif
-NEUS_FAL_IDW_Squalus_acanthias_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1983.tif
-NEUS_FAL_IDW_Squalus_acanthias_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1984.tif
-NEUS_FAL_IDW_Squalus_acanthias_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1985.tif
-NEUS_FAL_IDW_Squalus_acanthias_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1986.tif
-NEUS_FAL_IDW_Squalus_acanthias_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1987.tif
-NEUS_FAL_IDW_Squalus_acanthias_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1988.tif
-NEUS_FAL_IDW_Squalus_acanthias_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1989.tif
-NEUS_FAL_IDW_Squalus_acanthias_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1990.tif
-NEUS_FAL_IDW_Squalus_acanthias_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1991.tif
-NEUS_FAL_IDW_Squalus_acanthias_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1992.tif
-NEUS_FAL_IDW_Squalus_acanthias_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1993.tif
-NEUS_FAL_IDW_Squalus_acanthias_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1994.tif
-NEUS_FAL_IDW_Squalus_acanthias_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1995.tif
-NEUS_FAL_IDW_Squalus_acanthias_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1996.tif
-NEUS_FAL_IDW_Squalus_acanthias_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1997.tif
-NEUS_FAL_IDW_Squalus_acanthias_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1998.tif
-NEUS_FAL_IDW_Squalus_acanthias_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1999.tif
-NEUS_FAL_IDW_Squalus_acanthias_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2000.tif
-NEUS_FAL_IDW_Squalus_acanthias_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2001.tif
-NEUS_FAL_IDW_Squalus_acanthias_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2002.tif
-NEUS_FAL_IDW_Squalus_acanthias_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2003.tif
-NEUS_FAL_IDW_Squalus_acanthias_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2004.tif
-NEUS_FAL_IDW_Squalus_acanthias_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2005.tif
-NEUS_FAL_IDW_Squalus_acanthias_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2006.tif
-NEUS_FAL_IDW_Squalus_acanthias_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2007.tif
-NEUS_FAL_IDW_Squalus_acanthias_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2008.tif
-NEUS_FAL_IDW_Squalus_acanthias_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2009.tif
-NEUS_FAL_IDW_Squalus_acanthias_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2010.tif
-NEUS_FAL_IDW_Squalus_acanthias_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2011.tif
-NEUS_FAL_IDW_Squalus_acanthias_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2012.tif
-NEUS_FAL_IDW_Squalus_acanthias_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2013.tif
-NEUS_FAL_IDW_Squalus_acanthias_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2014.tif
-NEUS_FAL_IDW_Squalus_acanthias_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2015.tif
-NEUS_FAL_IDW_Squalus_acanthias_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2016.tif
-NEUS_FAL_IDW_Squalus_acanthias_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2018.tif
-NEUS_FAL_IDW_Squalus_acanthias_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2019.tif
-NEUS_FAL_IDW_Squalus_acanthias_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2021.tif
-NEUS_FAL_IDW_Squalus_acanthias_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2022.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1974.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1975.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1976.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1977.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1978.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1979.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1980.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1981.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1982.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1983.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1984.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1985.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1986.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1987.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1988.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1989.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1990.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1991.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1992.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1993.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1994.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1995.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1996.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1997.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1998.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1999.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2000.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2001.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2002.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2003.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2004.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2005.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2006.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2007.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2008.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:30:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2009.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2010.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2011.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2012.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2013.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2014.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2015.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2016.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2018.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2019.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2021.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2022.tif
-NEUS_FAL_IDW_Urophycis_chuss_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1974.tif
-NEUS_FAL_IDW_Urophycis_chuss_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1975.tif
-NEUS_FAL_IDW_Urophycis_chuss_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1976.tif
-NEUS_FAL_IDW_Urophycis_chuss_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1977.tif
-NEUS_FAL_IDW_Urophycis_chuss_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1978.tif
-NEUS_FAL_IDW_Urophycis_chuss_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1979.tif
-NEUS_FAL_IDW_Urophycis_chuss_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1980.tif
-NEUS_FAL_IDW_Urophycis_chuss_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1981.tif
-NEUS_FAL_IDW_Urophycis_chuss_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1982.tif
-NEUS_FAL_IDW_Urophycis_chuss_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1983.tif
-NEUS_FAL_IDW_Urophycis_chuss_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1984.tif
-NEUS_FAL_IDW_Urophycis_chuss_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1985.tif
-NEUS_FAL_IDW_Urophycis_chuss_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1986.tif
-NEUS_FAL_IDW_Urophycis_chuss_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1987.tif
-NEUS_FAL_IDW_Urophycis_chuss_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1988.tif
-NEUS_FAL_IDW_Urophycis_chuss_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1989.tif
-NEUS_FAL_IDW_Urophycis_chuss_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1990.tif
-NEUS_FAL_IDW_Urophycis_chuss_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1991.tif
-NEUS_FAL_IDW_Urophycis_chuss_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1992.tif
-NEUS_FAL_IDW_Urophycis_chuss_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1993.tif
-NEUS_FAL_IDW_Urophycis_chuss_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1994.tif
-NEUS_FAL_IDW_Urophycis_chuss_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1995.tif
-NEUS_FAL_IDW_Urophycis_chuss_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1996.tif
-NEUS_FAL_IDW_Urophycis_chuss_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1997.tif
-NEUS_FAL_IDW_Urophycis_chuss_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1998.tif
-NEUS_FAL_IDW_Urophycis_chuss_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1999.tif
-NEUS_FAL_IDW_Urophycis_chuss_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2000.tif
-NEUS_FAL_IDW_Urophycis_chuss_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2001.tif
-NEUS_FAL_IDW_Urophycis_chuss_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2002.tif
-NEUS_FAL_IDW_Urophycis_chuss_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2003.tif
-NEUS_FAL_IDW_Urophycis_chuss_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2004.tif
-NEUS_FAL_IDW_Urophycis_chuss_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2005.tif
-NEUS_FAL_IDW_Urophycis_chuss_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2006.tif
-NEUS_FAL_IDW_Urophycis_chuss_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2007.tif
-NEUS_FAL_IDW_Urophycis_chuss_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2008.tif
-NEUS_FAL_IDW_Urophycis_chuss_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2009.tif
-NEUS_FAL_IDW_Urophycis_chuss_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2010.tif
-NEUS_FAL_IDW_Urophycis_chuss_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2011.tif
-NEUS_FAL_IDW_Urophycis_chuss_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2012.tif
-NEUS_FAL_IDW_Urophycis_chuss_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2013.tif
-NEUS_FAL_IDW_Urophycis_chuss_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2014.tif
-NEUS_FAL_IDW_Urophycis_chuss_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2015.tif
-NEUS_FAL_IDW_Urophycis_chuss_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2016.tif
-NEUS_FAL_IDW_Urophycis_chuss_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2018.tif
-NEUS_FAL_IDW_Urophycis_chuss_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2019.tif
-NEUS_FAL_IDW_Urophycis_chuss_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2021.tif
-NEUS_FAL_IDW_Urophycis_chuss_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2022.tif
-NEUS_FAL_IDW_Urophycis_regia_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1974.tif
-NEUS_FAL_IDW_Urophycis_regia_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1975.tif
-NEUS_FAL_IDW_Urophycis_regia_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1976.tif
-NEUS_FAL_IDW_Urophycis_regia_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1977.tif
-NEUS_FAL_IDW_Urophycis_regia_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1978.tif
-NEUS_FAL_IDW_Urophycis_regia_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1979.tif
-NEUS_FAL_IDW_Urophycis_regia_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1980.tif
-NEUS_FAL_IDW_Urophycis_regia_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1981.tif
-NEUS_FAL_IDW_Urophycis_regia_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1982.tif
-NEUS_FAL_IDW_Urophycis_regia_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1983.tif
-NEUS_FAL_IDW_Urophycis_regia_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1984.tif
-NEUS_FAL_IDW_Urophycis_regia_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1985.tif
-NEUS_FAL_IDW_Urophycis_regia_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1986.tif
-NEUS_FAL_IDW_Urophycis_regia_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1987.tif
-NEUS_FAL_IDW_Urophycis_regia_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1988.tif
-NEUS_FAL_IDW_Urophycis_regia_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1989.tif
-NEUS_FAL_IDW_Urophycis_regia_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1990.tif
-NEUS_FAL_IDW_Urophycis_regia_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1991.tif
-NEUS_FAL_IDW_Urophycis_regia_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1992.tif
-NEUS_FAL_IDW_Urophycis_regia_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1993.tif
-NEUS_FAL_IDW_Urophycis_regia_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1994.tif
-NEUS_FAL_IDW_Urophycis_regia_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1995.tif
-NEUS_FAL_IDW_Urophycis_regia_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1996.tif
-NEUS_FAL_IDW_Urophycis_regia_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1997.tif
-NEUS_FAL_IDW_Urophycis_regia_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1998.tif
-NEUS_FAL_IDW_Urophycis_regia_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1999.tif
-NEUS_FAL_IDW_Urophycis_regia_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2000.tif
-NEUS_FAL_IDW_Urophycis_regia_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2001.tif
-NEUS_FAL_IDW_Urophycis_regia_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2002.tif
-NEUS_FAL_IDW_Urophycis_regia_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2003.tif
-NEUS_FAL_IDW_Urophycis_regia_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2004.tif
-NEUS_FAL_IDW_Urophycis_regia_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2005.tif
-NEUS_FAL_IDW_Urophycis_regia_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2006.tif
-NEUS_FAL_IDW_Urophycis_regia_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2007.tif
-NEUS_FAL_IDW_Urophycis_regia_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2008.tif
-NEUS_FAL_IDW_Urophycis_regia_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2009.tif
-NEUS_FAL_IDW_Urophycis_regia_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2010.tif
-NEUS_FAL_IDW_Urophycis_regia_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2011.tif
-NEUS_FAL_IDW_Urophycis_regia_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2012.tif
-NEUS_FAL_IDW_Urophycis_regia_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2013.tif
-NEUS_FAL_IDW_Urophycis_regia_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2014.tif
-NEUS_FAL_IDW_Urophycis_regia_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2015.tif
-NEUS_FAL_IDW_Urophycis_regia_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2016.tif
-NEUS_FAL_IDW_Urophycis_regia_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2018.tif
-NEUS_FAL_IDW_Urophycis_regia_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2019.tif
-NEUS_FAL_IDW_Urophycis_regia_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2021.tif
-NEUS_FAL_IDW_Urophycis_regia_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2022.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1974.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1975.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1976.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1977.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1978.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1979.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1980.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1981.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1982.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1983.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1984.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1985.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1986.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1987.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1988.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1989.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1990.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1991.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1992.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1993.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1994.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1995.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1996.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1997.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1998.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1999.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2000.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2001.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2002.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2003.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2004.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2005.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2006.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2007.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2008.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2009.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2010.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2011.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2012.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2013.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2014.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2015.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2016.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2018.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2019.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2021.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2022.tif
-NEUS_FAL_IDW_Zoarces_americanus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1974.tif
-NEUS_FAL_IDW_Zoarces_americanus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1975.tif
-NEUS_FAL_IDW_Zoarces_americanus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1976.tif
-NEUS_FAL_IDW_Zoarces_americanus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1977.tif
-NEUS_FAL_IDW_Zoarces_americanus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1978.tif
-NEUS_FAL_IDW_Zoarces_americanus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1979.tif
-NEUS_FAL_IDW_Zoarces_americanus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1980.tif
-NEUS_FAL_IDW_Zoarces_americanus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1981.tif
-NEUS_FAL_IDW_Zoarces_americanus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1982.tif
-NEUS_FAL_IDW_Zoarces_americanus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1983.tif
-NEUS_FAL_IDW_Zoarces_americanus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1984.tif
-NEUS_FAL_IDW_Zoarces_americanus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1985.tif
-NEUS_FAL_IDW_Zoarces_americanus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1986.tif
-NEUS_FAL_IDW_Zoarces_americanus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1987.tif
-NEUS_FAL_IDW_Zoarces_americanus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1988.tif
-NEUS_FAL_IDW_Zoarces_americanus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1989.tif
-NEUS_FAL_IDW_Zoarces_americanus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1990.tif
-NEUS_FAL_IDW_Zoarces_americanus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1991.tif
-NEUS_FAL_IDW_Zoarces_americanus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1992.tif
-NEUS_FAL_IDW_Zoarces_americanus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1993.tif
-NEUS_FAL_IDW_Zoarces_americanus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1994.tif
-NEUS_FAL_IDW_Zoarces_americanus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1995.tif
-NEUS_FAL_IDW_Zoarces_americanus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1996.tif
-NEUS_FAL_IDW_Zoarces_americanus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1997.tif
-NEUS_FAL_IDW_Zoarces_americanus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1998.tif
-NEUS_FAL_IDW_Zoarces_americanus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_1999.tif
-NEUS_FAL_IDW_Zoarces_americanus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_2000.tif
-NEUS_FAL_IDW_Zoarces_americanus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_2001.tif
-NEUS_FAL_IDW_Zoarces_americanus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_2002.tif
-NEUS_FAL_IDW_Zoarces_americanus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_2003.tif
-NEUS_FAL_IDW_Zoarces_americanus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_2004.tif
-NEUS_FAL_IDW_Zoarces_americanus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_2005.tif
-NEUS_FAL_IDW_Zoarces_americanus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_2006.tif
-NEUS_FAL_IDW_Zoarces_americanus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_2007.tif
-NEUS_FAL_IDW_Zoarces_americanus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_2008.tif
-NEUS_FAL_IDW_Zoarces_americanus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_2009.tif
-NEUS_FAL_IDW_Zoarces_americanus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_2010.tif
-NEUS_FAL_IDW_Zoarces_americanus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_2011.tif
-NEUS_FAL_IDW_Zoarces_americanus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_2012.tif
-NEUS_FAL_IDW_Zoarces_americanus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_2013.tif
-NEUS_FAL_IDW_Zoarces_americanus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_2014.tif
-NEUS_FAL_IDW_Zoarces_americanus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_2015.tif
-NEUS_FAL_IDW_Zoarces_americanus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_2016.tif
-NEUS_FAL_IDW_Zoarces_americanus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_2018.tif
-NEUS_FAL_IDW_Zoarces_americanus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_2019.tif
-NEUS_FAL_IDW_Zoarces_americanus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_2021.tif
-NEUS_FAL_IDW_Zoarces_americanus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\Zoarces americanus\NEUS_FAL_IDW_Zoarces_americanus_2022.tif
-NEUS_FAL_IDW_Core_Species_Richness_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1974.tif
-NEUS_FAL_IDW_Core_Species_Richness_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1975.tif
-NEUS_FAL_IDW_Core_Species_Richness_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1976.tif
-NEUS_FAL_IDW_Core_Species_Richness_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1977.tif
-NEUS_FAL_IDW_Core_Species_Richness_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1978.tif
-NEUS_FAL_IDW_Core_Species_Richness_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1979.tif
-NEUS_FAL_IDW_Core_Species_Richness_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1980.tif
-NEUS_FAL_IDW_Core_Species_Richness_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1981.tif
-NEUS_FAL_IDW_Core_Species_Richness_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1982.tif
-NEUS_FAL_IDW_Core_Species_Richness_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1983.tif
-NEUS_FAL_IDW_Core_Species_Richness_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1984.tif
-NEUS_FAL_IDW_Core_Species_Richness_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1985.tif
-NEUS_FAL_IDW_Core_Species_Richness_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1986.tif
-NEUS_FAL_IDW_Core_Species_Richness_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1987.tif
-NEUS_FAL_IDW_Core_Species_Richness_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1988.tif
-NEUS_FAL_IDW_Core_Species_Richness_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1989.tif
-NEUS_FAL_IDW_Core_Species_Richness_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1990.tif
-NEUS_FAL_IDW_Core_Species_Richness_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1991.tif
-NEUS_FAL_IDW_Core_Species_Richness_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1992.tif
-NEUS_FAL_IDW_Core_Species_Richness_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1993.tif
-NEUS_FAL_IDW_Core_Species_Richness_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:31:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1994.tif
-NEUS_FAL_IDW_Core_Species_Richness_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1995.tif
-NEUS_FAL_IDW_Core_Species_Richness_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1996.tif
-NEUS_FAL_IDW_Core_Species_Richness_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1997.tif
-NEUS_FAL_IDW_Core_Species_Richness_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1998.tif
-NEUS_FAL_IDW_Core_Species_Richness_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1999.tif
-NEUS_FAL_IDW_Core_Species_Richness_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2000.tif
-NEUS_FAL_IDW_Core_Species_Richness_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2001.tif
-NEUS_FAL_IDW_Core_Species_Richness_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2002.tif
-NEUS_FAL_IDW_Core_Species_Richness_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2003.tif
-NEUS_FAL_IDW_Core_Species_Richness_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2004.tif
-NEUS_FAL_IDW_Core_Species_Richness_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2005.tif
-NEUS_FAL_IDW_Core_Species_Richness_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2006.tif
-NEUS_FAL_IDW_Core_Species_Richness_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2007.tif
-NEUS_FAL_IDW_Core_Species_Richness_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2008.tif
-NEUS_FAL_IDW_Core_Species_Richness_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2009.tif
-NEUS_FAL_IDW_Core_Species_Richness_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2010.tif
-NEUS_FAL_IDW_Core_Species_Richness_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2011.tif
-NEUS_FAL_IDW_Core_Species_Richness_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2012.tif
-NEUS_FAL_IDW_Core_Species_Richness_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2013.tif
-NEUS_FAL_IDW_Core_Species_Richness_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2014.tif
-NEUS_FAL_IDW_Core_Species_Richness_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2015.tif
-NEUS_FAL_IDW_Core_Species_Richness_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2016.tif
-NEUS_FAL_IDW_Core_Species_Richness_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2018.tif
-NEUS_FAL_IDW_Core_Species_Richness_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2019.tif
-NEUS_FAL_IDW_Core_Species_Richness_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2021.tif
-NEUS_FAL_IDW_Core_Species_Richness_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2022.tif
-NEUS_FAL_IDW_Species_Richness_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1974.tif
-NEUS_FAL_IDW_Species_Richness_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1975.tif
-NEUS_FAL_IDW_Species_Richness_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1976.tif
-NEUS_FAL_IDW_Species_Richness_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1977.tif
-NEUS_FAL_IDW_Species_Richness_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1978.tif
-NEUS_FAL_IDW_Species_Richness_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1979.tif
-NEUS_FAL_IDW_Species_Richness_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1980.tif
-NEUS_FAL_IDW_Species_Richness_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1981.tif
-NEUS_FAL_IDW_Species_Richness_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1982.tif
-NEUS_FAL_IDW_Species_Richness_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1983.tif
-NEUS_FAL_IDW_Species_Richness_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1984.tif
-NEUS_FAL_IDW_Species_Richness_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1985.tif
-NEUS_FAL_IDW_Species_Richness_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1986.tif
-NEUS_FAL_IDW_Species_Richness_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1987.tif
-NEUS_FAL_IDW_Species_Richness_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1988.tif
-NEUS_FAL_IDW_Species_Richness_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1989.tif
-NEUS_FAL_IDW_Species_Richness_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1990.tif
-NEUS_FAL_IDW_Species_Richness_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1991.tif
-NEUS_FAL_IDW_Species_Richness_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1992.tif
-NEUS_FAL_IDW_Species_Richness_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1993.tif
-NEUS_FAL_IDW_Species_Richness_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1994.tif
-NEUS_FAL_IDW_Species_Richness_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1995.tif
-NEUS_FAL_IDW_Species_Richness_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1996.tif
-NEUS_FAL_IDW_Species_Richness_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1997.tif
-NEUS_FAL_IDW_Species_Richness_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1998.tif
-NEUS_FAL_IDW_Species_Richness_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1999.tif
-NEUS_FAL_IDW_Species_Richness_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2000.tif
-NEUS_FAL_IDW_Species_Richness_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2001.tif
-NEUS_FAL_IDW_Species_Richness_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2002.tif
-NEUS_FAL_IDW_Species_Richness_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2003.tif
-NEUS_FAL_IDW_Species_Richness_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2004.tif
-NEUS_FAL_IDW_Species_Richness_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2005.tif
-NEUS_FAL_IDW_Species_Richness_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2006.tif
-NEUS_FAL_IDW_Species_Richness_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2007.tif
-NEUS_FAL_IDW_Species_Richness_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2008.tif
-NEUS_FAL_IDW_Species_Richness_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2009.tif
-NEUS_FAL_IDW_Species_Richness_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2010.tif
-NEUS_FAL_IDW_Species_Richness_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2011.tif
-NEUS_FAL_IDW_Species_Richness_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2012.tif
-NEUS_FAL_IDW_Species_Richness_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2013.tif
-NEUS_FAL_IDW_Species_Richness_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2014.tif
-NEUS_FAL_IDW_Species_Richness_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2015.tif
-NEUS_FAL_IDW_Species_Richness_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2016.tif
-NEUS_FAL_IDW_Species_Richness_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2018.tif
-NEUS_FAL_IDW_Species_Richness_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2019.tif
-NEUS_FAL_IDW_Species_Richness_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2021.tif
-NEUS_FAL_IDW_Species_Richness_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2022.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1974.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1976.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1977.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1978.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1979.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1980.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1981.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1982.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1983.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1984.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1985.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1986.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1987.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1988.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1989.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1990.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1991.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1992.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1993.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1994.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1995.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1996.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1997.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1998.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1999.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2000.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2001.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2002.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2003.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2004.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2005.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2006.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2007.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2008.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2009.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2010.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2011.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2012.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2013.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2015.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2016.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2017.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2018.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2019.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2021.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2022.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1974.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1976.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1977.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1978.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1979.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1980.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1981.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1982.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1983.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1984.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1985.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1986.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1987.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1988.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1989.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1990.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1991.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1992.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1993.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1994.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1995.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1996.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1997.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1998.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1999.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2000.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2001.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2002.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2003.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2004.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2005.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2006.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2007.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2008.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2009.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2010.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2011.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2012.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2013.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2015.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2016.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2017.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2018.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2019.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2021.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2022.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1974.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1976.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1977.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1978.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1979.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1980.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1981.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1982.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1983.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1984.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1985.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1986.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1987.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1988.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1989.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1990.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1991.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1992.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1993.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1994.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1995.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1996.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1997.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1998.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1999.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2000.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2001.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2002.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2003.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2004.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2005.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2006.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2007.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2008.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2009.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2010.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2011.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2012.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2013.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2015.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2016.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2017.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2018.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2019.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:32:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2021.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2022.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1974.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1976.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1977.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1978.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1979.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1980.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1981.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1982.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1983.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1984.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1985.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1986.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1987.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1988.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1989.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1990.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1991.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1992.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1993.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1994.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1995.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1996.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1997.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1998.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1999.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2000.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2001.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2002.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2003.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2004.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2005.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2006.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2007.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2008.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2009.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2010.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2011.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2012.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2013.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2015.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2016.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2017.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2018.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2019.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2021.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2022.tif
-NEUS_SPR_IDW_Cancer_irroratus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1974.tif
-NEUS_SPR_IDW_Cancer_irroratus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1976.tif
-NEUS_SPR_IDW_Cancer_irroratus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1977.tif
-NEUS_SPR_IDW_Cancer_irroratus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1978.tif
-NEUS_SPR_IDW_Cancer_irroratus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1979.tif
-NEUS_SPR_IDW_Cancer_irroratus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1980.tif
-NEUS_SPR_IDW_Cancer_irroratus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1981.tif
-NEUS_SPR_IDW_Cancer_irroratus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1982.tif
-NEUS_SPR_IDW_Cancer_irroratus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1983.tif
-NEUS_SPR_IDW_Cancer_irroratus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1984.tif
-NEUS_SPR_IDW_Cancer_irroratus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1985.tif
-NEUS_SPR_IDW_Cancer_irroratus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1986.tif
-NEUS_SPR_IDW_Cancer_irroratus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1987.tif
-NEUS_SPR_IDW_Cancer_irroratus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1988.tif
-NEUS_SPR_IDW_Cancer_irroratus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1989.tif
-NEUS_SPR_IDW_Cancer_irroratus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1990.tif
-NEUS_SPR_IDW_Cancer_irroratus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1991.tif
-NEUS_SPR_IDW_Cancer_irroratus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1992.tif
-NEUS_SPR_IDW_Cancer_irroratus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1993.tif
-NEUS_SPR_IDW_Cancer_irroratus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1994.tif
-NEUS_SPR_IDW_Cancer_irroratus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1995.tif
-NEUS_SPR_IDW_Cancer_irroratus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1996.tif
-NEUS_SPR_IDW_Cancer_irroratus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1997.tif
-NEUS_SPR_IDW_Cancer_irroratus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1998.tif
-NEUS_SPR_IDW_Cancer_irroratus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1999.tif
-NEUS_SPR_IDW_Cancer_irroratus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2000.tif
-NEUS_SPR_IDW_Cancer_irroratus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2001.tif
-NEUS_SPR_IDW_Cancer_irroratus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2002.tif
-NEUS_SPR_IDW_Cancer_irroratus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2003.tif
-NEUS_SPR_IDW_Cancer_irroratus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2004.tif
-NEUS_SPR_IDW_Cancer_irroratus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2005.tif
-NEUS_SPR_IDW_Cancer_irroratus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2006.tif
-NEUS_SPR_IDW_Cancer_irroratus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2007.tif
-NEUS_SPR_IDW_Cancer_irroratus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2008.tif
-NEUS_SPR_IDW_Cancer_irroratus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2009.tif
-NEUS_SPR_IDW_Cancer_irroratus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2010.tif
-NEUS_SPR_IDW_Cancer_irroratus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2011.tif
-NEUS_SPR_IDW_Cancer_irroratus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2012.tif
-NEUS_SPR_IDW_Cancer_irroratus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2013.tif
-NEUS_SPR_IDW_Cancer_irroratus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2015.tif
-NEUS_SPR_IDW_Cancer_irroratus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2016.tif
-NEUS_SPR_IDW_Cancer_irroratus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2017.tif
-NEUS_SPR_IDW_Cancer_irroratus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2018.tif
-NEUS_SPR_IDW_Cancer_irroratus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2019.tif
-NEUS_SPR_IDW_Cancer_irroratus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2021.tif
-NEUS_SPR_IDW_Cancer_irroratus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2022.tif
-NEUS_SPR_IDW_Centropristis_striata_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1974.tif
-NEUS_SPR_IDW_Centropristis_striata_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1976.tif
-NEUS_SPR_IDW_Centropristis_striata_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1977.tif
-NEUS_SPR_IDW_Centropristis_striata_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1978.tif
-NEUS_SPR_IDW_Centropristis_striata_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1979.tif
-NEUS_SPR_IDW_Centropristis_striata_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1980.tif
-NEUS_SPR_IDW_Centropristis_striata_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1981.tif
-NEUS_SPR_IDW_Centropristis_striata_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1982.tif
-NEUS_SPR_IDW_Centropristis_striata_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1983.tif
-NEUS_SPR_IDW_Centropristis_striata_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1984.tif
-NEUS_SPR_IDW_Centropristis_striata_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1985.tif
-NEUS_SPR_IDW_Centropristis_striata_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1986.tif
-NEUS_SPR_IDW_Centropristis_striata_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1987.tif
-NEUS_SPR_IDW_Centropristis_striata_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1988.tif
-NEUS_SPR_IDW_Centropristis_striata_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1989.tif
-NEUS_SPR_IDW_Centropristis_striata_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1990.tif
-NEUS_SPR_IDW_Centropristis_striata_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1991.tif
-NEUS_SPR_IDW_Centropristis_striata_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1992.tif
-NEUS_SPR_IDW_Centropristis_striata_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1993.tif
-NEUS_SPR_IDW_Centropristis_striata_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1994.tif
-NEUS_SPR_IDW_Centropristis_striata_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1995.tif
-NEUS_SPR_IDW_Centropristis_striata_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1996.tif
-NEUS_SPR_IDW_Centropristis_striata_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1997.tif
-NEUS_SPR_IDW_Centropristis_striata_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1998.tif
-NEUS_SPR_IDW_Centropristis_striata_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1999.tif
-NEUS_SPR_IDW_Centropristis_striata_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2000.tif
-NEUS_SPR_IDW_Centropristis_striata_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2001.tif
-NEUS_SPR_IDW_Centropristis_striata_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2002.tif
-NEUS_SPR_IDW_Centropristis_striata_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2003.tif
-NEUS_SPR_IDW_Centropristis_striata_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2004.tif
-NEUS_SPR_IDW_Centropristis_striata_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2005.tif
-NEUS_SPR_IDW_Centropristis_striata_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2006.tif
-NEUS_SPR_IDW_Centropristis_striata_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2007.tif
-NEUS_SPR_IDW_Centropristis_striata_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2008.tif
-NEUS_SPR_IDW_Centropristis_striata_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2009.tif
-NEUS_SPR_IDW_Centropristis_striata_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2010.tif
-NEUS_SPR_IDW_Centropristis_striata_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2011.tif
-NEUS_SPR_IDW_Centropristis_striata_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2012.tif
-NEUS_SPR_IDW_Centropristis_striata_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2013.tif
-NEUS_SPR_IDW_Centropristis_striata_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2015.tif
-NEUS_SPR_IDW_Centropristis_striata_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2016.tif
-NEUS_SPR_IDW_Centropristis_striata_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2017.tif
-NEUS_SPR_IDW_Centropristis_striata_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2018.tif
-NEUS_SPR_IDW_Centropristis_striata_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2019.tif
-NEUS_SPR_IDW_Centropristis_striata_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2021.tif
-NEUS_SPR_IDW_Centropristis_striata_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2022.tif
-NEUS_SPR_IDW_Clupea_harengus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1974.tif
-NEUS_SPR_IDW_Clupea_harengus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1976.tif
-NEUS_SPR_IDW_Clupea_harengus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1977.tif
-NEUS_SPR_IDW_Clupea_harengus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1978.tif
-NEUS_SPR_IDW_Clupea_harengus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1979.tif
-NEUS_SPR_IDW_Clupea_harengus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1980.tif
-NEUS_SPR_IDW_Clupea_harengus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1981.tif
-NEUS_SPR_IDW_Clupea_harengus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1982.tif
-NEUS_SPR_IDW_Clupea_harengus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1983.tif
-NEUS_SPR_IDW_Clupea_harengus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1984.tif
-NEUS_SPR_IDW_Clupea_harengus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1985.tif
-NEUS_SPR_IDW_Clupea_harengus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1986.tif
-NEUS_SPR_IDW_Clupea_harengus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1987.tif
-NEUS_SPR_IDW_Clupea_harengus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1988.tif
-NEUS_SPR_IDW_Clupea_harengus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1989.tif
-NEUS_SPR_IDW_Clupea_harengus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1990.tif
-NEUS_SPR_IDW_Clupea_harengus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1991.tif
-NEUS_SPR_IDW_Clupea_harengus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1992.tif
-NEUS_SPR_IDW_Clupea_harengus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1993.tif
-NEUS_SPR_IDW_Clupea_harengus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1994.tif
-NEUS_SPR_IDW_Clupea_harengus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1995.tif
-NEUS_SPR_IDW_Clupea_harengus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1996.tif
-NEUS_SPR_IDW_Clupea_harengus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1997.tif
-NEUS_SPR_IDW_Clupea_harengus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1998.tif
-NEUS_SPR_IDW_Clupea_harengus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1999.tif
-NEUS_SPR_IDW_Clupea_harengus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2000.tif
-NEUS_SPR_IDW_Clupea_harengus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2001.tif
-NEUS_SPR_IDW_Clupea_harengus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2002.tif
-NEUS_SPR_IDW_Clupea_harengus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2003.tif
-NEUS_SPR_IDW_Clupea_harengus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2004.tif
-NEUS_SPR_IDW_Clupea_harengus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2005.tif
-NEUS_SPR_IDW_Clupea_harengus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2006.tif
-NEUS_SPR_IDW_Clupea_harengus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2007.tif
-NEUS_SPR_IDW_Clupea_harengus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2008.tif
-NEUS_SPR_IDW_Clupea_harengus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2009.tif
-NEUS_SPR_IDW_Clupea_harengus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2010.tif
-NEUS_SPR_IDW_Clupea_harengus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2011.tif
-NEUS_SPR_IDW_Clupea_harengus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2012.tif
-NEUS_SPR_IDW_Clupea_harengus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2013.tif
-NEUS_SPR_IDW_Clupea_harengus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2015.tif
-NEUS_SPR_IDW_Clupea_harengus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2016.tif
-NEUS_SPR_IDW_Clupea_harengus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2017.tif
-NEUS_SPR_IDW_Clupea_harengus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2018.tif
-NEUS_SPR_IDW_Clupea_harengus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2019.tif
-NEUS_SPR_IDW_Clupea_harengus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2021.tif
-NEUS_SPR_IDW_Clupea_harengus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2022.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1974.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1976.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1977.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1978.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1979.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1980.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1981.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1982.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1983.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1984.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1985.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1986.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1987.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1988.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1989.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1990.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1991.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1992.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1993.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1994.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1995.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1996.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1997.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1998.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_1999.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_2000.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_2001.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_2002.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_2003.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_2004.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_2005.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_2006.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_2007.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_2008.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_2009.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_2010.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_2011.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_2012.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_2013.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_2015.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_2016.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_2017.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_2018.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_2019.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_2021.tif
-NEUS_SPR_IDW_Doryteuthis_pealeii_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Doryteuthis pealeii\NEUS_SPR_IDW_Doryteuthis_pealeii_2022.tif
-NEUS_SPR_IDW_Gadus_morhua_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1974.tif
-NEUS_SPR_IDW_Gadus_morhua_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1976.tif
-NEUS_SPR_IDW_Gadus_morhua_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1977.tif
-NEUS_SPR_IDW_Gadus_morhua_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1978.tif
-NEUS_SPR_IDW_Gadus_morhua_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1979.tif
-NEUS_SPR_IDW_Gadus_morhua_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1980.tif
-NEUS_SPR_IDW_Gadus_morhua_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1981.tif
-NEUS_SPR_IDW_Gadus_morhua_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1982.tif
-NEUS_SPR_IDW_Gadus_morhua_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1983.tif
-NEUS_SPR_IDW_Gadus_morhua_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1984.tif
-NEUS_SPR_IDW_Gadus_morhua_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1985.tif
-NEUS_SPR_IDW_Gadus_morhua_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1986.tif
-NEUS_SPR_IDW_Gadus_morhua_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1987.tif
-NEUS_SPR_IDW_Gadus_morhua_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1988.tif
-NEUS_SPR_IDW_Gadus_morhua_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1989.tif
-NEUS_SPR_IDW_Gadus_morhua_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1990.tif
-NEUS_SPR_IDW_Gadus_morhua_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1991.tif
-NEUS_SPR_IDW_Gadus_morhua_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1992.tif
-NEUS_SPR_IDW_Gadus_morhua_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1993.tif
-NEUS_SPR_IDW_Gadus_morhua_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:33:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1994.tif
-NEUS_SPR_IDW_Gadus_morhua_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1995.tif
-NEUS_SPR_IDW_Gadus_morhua_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1996.tif
-NEUS_SPR_IDW_Gadus_morhua_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1997.tif
-NEUS_SPR_IDW_Gadus_morhua_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1998.tif
-NEUS_SPR_IDW_Gadus_morhua_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1999.tif
-NEUS_SPR_IDW_Gadus_morhua_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2000.tif
-NEUS_SPR_IDW_Gadus_morhua_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2001.tif
-NEUS_SPR_IDW_Gadus_morhua_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2002.tif
-NEUS_SPR_IDW_Gadus_morhua_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2003.tif
-NEUS_SPR_IDW_Gadus_morhua_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2004.tif
-NEUS_SPR_IDW_Gadus_morhua_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2005.tif
-NEUS_SPR_IDW_Gadus_morhua_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2006.tif
-NEUS_SPR_IDW_Gadus_morhua_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2007.tif
-NEUS_SPR_IDW_Gadus_morhua_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2008.tif
-NEUS_SPR_IDW_Gadus_morhua_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2009.tif
-NEUS_SPR_IDW_Gadus_morhua_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2010.tif
-NEUS_SPR_IDW_Gadus_morhua_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2011.tif
-NEUS_SPR_IDW_Gadus_morhua_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2012.tif
-NEUS_SPR_IDW_Gadus_morhua_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2013.tif
-NEUS_SPR_IDW_Gadus_morhua_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2015.tif
-NEUS_SPR_IDW_Gadus_morhua_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2016.tif
-NEUS_SPR_IDW_Gadus_morhua_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2017.tif
-NEUS_SPR_IDW_Gadus_morhua_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2018.tif
-NEUS_SPR_IDW_Gadus_morhua_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2019.tif
-NEUS_SPR_IDW_Gadus_morhua_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2021.tif
-NEUS_SPR_IDW_Gadus_morhua_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2022.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1974.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1976.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1977.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1978.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1979.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1980.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1981.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1982.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1983.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1984.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1985.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1986.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1987.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1988.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1989.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1990.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1991.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1992.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1993.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1994.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1995.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1996.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1997.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1998.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1999.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2000.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2001.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2002.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2003.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2004.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2005.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2006.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2007.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2008.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2009.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2010.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2011.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2012.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2013.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2015.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2016.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2017.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2018.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2019.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2021.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2022.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1974.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1976.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1977.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1978.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1979.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1980.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1981.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1982.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1983.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1984.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1985.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1986.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1987.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1988.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1989.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1990.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1991.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1992.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1993.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1994.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1995.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1996.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1997.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1998.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1999.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2000.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2001.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2002.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2003.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2004.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2005.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2006.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2007.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2008.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2009.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2010.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2011.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2012.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2013.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2015.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2016.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2017.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2018.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2019.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2021.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2022.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1974.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1976.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1977.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1978.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1979.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1980.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1981.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1982.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1983.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1984.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1985.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1986.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1987.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1988.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1989.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1990.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1991.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1992.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1993.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1994.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1995.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1996.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1997.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1998.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_1999.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_2000.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_2001.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_2002.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_2003.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_2004.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_2005.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_2006.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_2007.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_2008.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_2009.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_2010.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_2011.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_2012.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_2013.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_2015.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_2016.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_2017.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_2018.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_2019.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_2021.tif
-NEUS_SPR_IDW_Hippoglossina_oblonga_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossina oblonga\NEUS_SPR_IDW_Hippoglossina_oblonga_2022.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1974.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1976.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1977.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1978.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1979.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1980.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1981.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1982.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1983.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1984.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1985.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1986.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1987.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1988.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1989.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1990.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1991.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1992.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1993.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1994.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1995.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1996.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1997.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1998.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1999.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2000.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2001.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2002.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2003.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2004.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2005.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2006.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2007.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2008.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2009.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2010.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2011.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2012.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2013.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2015.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2016.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2017.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2018.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2019.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2021.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2022.tif
-NEUS_SPR_IDW_Homarus_americanus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1974.tif
-NEUS_SPR_IDW_Homarus_americanus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1976.tif
-NEUS_SPR_IDW_Homarus_americanus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1977.tif
-NEUS_SPR_IDW_Homarus_americanus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1978.tif
-NEUS_SPR_IDW_Homarus_americanus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1979.tif
-NEUS_SPR_IDW_Homarus_americanus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1980.tif
-NEUS_SPR_IDW_Homarus_americanus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1981.tif
-NEUS_SPR_IDW_Homarus_americanus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1982.tif
-NEUS_SPR_IDW_Homarus_americanus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1983.tif
-NEUS_SPR_IDW_Homarus_americanus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1984.tif
-NEUS_SPR_IDW_Homarus_americanus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1985.tif
-NEUS_SPR_IDW_Homarus_americanus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1986.tif
-NEUS_SPR_IDW_Homarus_americanus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1987.tif
-NEUS_SPR_IDW_Homarus_americanus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1988.tif
-NEUS_SPR_IDW_Homarus_americanus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1989.tif
-NEUS_SPR_IDW_Homarus_americanus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1990.tif
-NEUS_SPR_IDW_Homarus_americanus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1991.tif
-NEUS_SPR_IDW_Homarus_americanus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1992.tif
-NEUS_SPR_IDW_Homarus_americanus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1993.tif
-NEUS_SPR_IDW_Homarus_americanus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1994.tif
-NEUS_SPR_IDW_Homarus_americanus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1995.tif
-NEUS_SPR_IDW_Homarus_americanus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1996.tif
-NEUS_SPR_IDW_Homarus_americanus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1997.tif
-NEUS_SPR_IDW_Homarus_americanus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1998.tif
-NEUS_SPR_IDW_Homarus_americanus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1999.tif
-NEUS_SPR_IDW_Homarus_americanus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2000.tif
-NEUS_SPR_IDW_Homarus_americanus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2001.tif
-NEUS_SPR_IDW_Homarus_americanus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2002.tif
-NEUS_SPR_IDW_Homarus_americanus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2003.tif
-NEUS_SPR_IDW_Homarus_americanus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2004.tif
-NEUS_SPR_IDW_Homarus_americanus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2005.tif
-NEUS_SPR_IDW_Homarus_americanus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2006.tif
-NEUS_SPR_IDW_Homarus_americanus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2007.tif
-NEUS_SPR_IDW_Homarus_americanus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2008.tif
-NEUS_SPR_IDW_Homarus_americanus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2009.tif
-NEUS_SPR_IDW_Homarus_americanus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2010.tif
-NEUS_SPR_IDW_Homarus_americanus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2011.tif
-NEUS_SPR_IDW_Homarus_americanus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2012.tif
-NEUS_SPR_IDW_Homarus_americanus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2013.tif
-NEUS_SPR_IDW_Homarus_americanus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2015.tif
-NEUS_SPR_IDW_Homarus_americanus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2016.tif
-NEUS_SPR_IDW_Homarus_americanus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2017.tif
-NEUS_SPR_IDW_Homarus_americanus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2018.tif
-NEUS_SPR_IDW_Homarus_americanus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2019.tif
-NEUS_SPR_IDW_Homarus_americanus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2021.tif
-NEUS_SPR_IDW_Homarus_americanus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2022.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1974.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1976.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1977.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1978.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1979.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1980.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1981.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1982.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1983.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1984.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1985.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1986.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1987.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1988.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1989.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1990.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1991.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:34:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1992.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1993.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1994.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1995.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1996.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1997.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1998.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1999.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2000.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2001.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2002.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2003.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2004.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2005.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2006.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2007.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2008.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2009.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2010.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2011.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2012.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2013.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2015.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2016.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2017.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2018.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2019.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2021.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2022.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1974.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1976.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1977.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1978.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1979.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1980.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1981.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1982.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1983.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1984.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1985.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1986.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1987.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1988.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1989.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1990.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1991.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1992.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1993.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1994.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1995.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1996.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1997.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1998.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_1999.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_2000.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_2001.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_2002.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_2003.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_2004.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_2005.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_2006.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_2007.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_2008.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_2009.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_2010.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_2011.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_2012.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_2013.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_2015.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_2016.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_2017.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_2018.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_2019.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_2021.tif
-NEUS_SPR_IDW_Leucoraja_erinacea_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja erinacea\NEUS_SPR_IDW_Leucoraja_erinacea_2022.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1974.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1976.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1977.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1978.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1979.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1980.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1981.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1982.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1983.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1984.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1985.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1986.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1987.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1988.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1989.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1990.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1991.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1992.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1993.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1994.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1995.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1996.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1997.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1998.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1999.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2000.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2001.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2002.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2003.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2004.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2005.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2006.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2007.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2008.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2009.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2010.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2011.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2012.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2013.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2015.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2016.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2017.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2018.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2019.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2021.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2022.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1974.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1976.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1977.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1978.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1979.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1980.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1981.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1982.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1983.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1984.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1985.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1986.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1987.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1988.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1989.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1990.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1991.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1992.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1993.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1994.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1995.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1996.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1997.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1998.tif
-NEUS_SPR_IDW_Limanda_ferruginea_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_1999.tif
-NEUS_SPR_IDW_Limanda_ferruginea_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_2000.tif
-NEUS_SPR_IDW_Limanda_ferruginea_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_2001.tif
-NEUS_SPR_IDW_Limanda_ferruginea_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_2002.tif
-NEUS_SPR_IDW_Limanda_ferruginea_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_2003.tif
-NEUS_SPR_IDW_Limanda_ferruginea_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_2004.tif
-NEUS_SPR_IDW_Limanda_ferruginea_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_2005.tif
-NEUS_SPR_IDW_Limanda_ferruginea_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_2006.tif
-NEUS_SPR_IDW_Limanda_ferruginea_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_2007.tif
-NEUS_SPR_IDW_Limanda_ferruginea_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_2008.tif
-NEUS_SPR_IDW_Limanda_ferruginea_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_2009.tif
-NEUS_SPR_IDW_Limanda_ferruginea_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_2010.tif
-NEUS_SPR_IDW_Limanda_ferruginea_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_2011.tif
-NEUS_SPR_IDW_Limanda_ferruginea_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_2012.tif
-NEUS_SPR_IDW_Limanda_ferruginea_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_2013.tif
-NEUS_SPR_IDW_Limanda_ferruginea_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_2015.tif
-NEUS_SPR_IDW_Limanda_ferruginea_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_2016.tif
-NEUS_SPR_IDW_Limanda_ferruginea_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_2017.tif
-NEUS_SPR_IDW_Limanda_ferruginea_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_2018.tif
-NEUS_SPR_IDW_Limanda_ferruginea_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_2019.tif
-NEUS_SPR_IDW_Limanda_ferruginea_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_2021.tif
-NEUS_SPR_IDW_Limanda_ferruginea_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Limanda ferruginea\NEUS_SPR_IDW_Limanda_ferruginea_2022.tif
-NEUS_SPR_IDW_Lophius_americanus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1974.tif
-NEUS_SPR_IDW_Lophius_americanus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1976.tif
-NEUS_SPR_IDW_Lophius_americanus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1977.tif
-NEUS_SPR_IDW_Lophius_americanus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1978.tif
-NEUS_SPR_IDW_Lophius_americanus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1979.tif
-NEUS_SPR_IDW_Lophius_americanus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1980.tif
-NEUS_SPR_IDW_Lophius_americanus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1981.tif
-NEUS_SPR_IDW_Lophius_americanus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1982.tif
-NEUS_SPR_IDW_Lophius_americanus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1983.tif
-NEUS_SPR_IDW_Lophius_americanus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1984.tif
-NEUS_SPR_IDW_Lophius_americanus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1985.tif
-NEUS_SPR_IDW_Lophius_americanus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1986.tif
-NEUS_SPR_IDW_Lophius_americanus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1987.tif
-NEUS_SPR_IDW_Lophius_americanus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1988.tif
-NEUS_SPR_IDW_Lophius_americanus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1989.tif
-NEUS_SPR_IDW_Lophius_americanus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1990.tif
-NEUS_SPR_IDW_Lophius_americanus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1991.tif
-NEUS_SPR_IDW_Lophius_americanus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1992.tif
-NEUS_SPR_IDW_Lophius_americanus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1993.tif
-NEUS_SPR_IDW_Lophius_americanus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1994.tif
-NEUS_SPR_IDW_Lophius_americanus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1995.tif
-NEUS_SPR_IDW_Lophius_americanus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1996.tif
-NEUS_SPR_IDW_Lophius_americanus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1997.tif
-NEUS_SPR_IDW_Lophius_americanus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1998.tif
-NEUS_SPR_IDW_Lophius_americanus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1999.tif
-NEUS_SPR_IDW_Lophius_americanus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2000.tif
-NEUS_SPR_IDW_Lophius_americanus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2001.tif
-NEUS_SPR_IDW_Lophius_americanus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2002.tif
-NEUS_SPR_IDW_Lophius_americanus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2003.tif
-NEUS_SPR_IDW_Lophius_americanus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2004.tif
-NEUS_SPR_IDW_Lophius_americanus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2005.tif
-NEUS_SPR_IDW_Lophius_americanus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2006.tif
-NEUS_SPR_IDW_Lophius_americanus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2007.tif
-NEUS_SPR_IDW_Lophius_americanus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2008.tif
-NEUS_SPR_IDW_Lophius_americanus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2009.tif
-NEUS_SPR_IDW_Lophius_americanus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2010.tif
-NEUS_SPR_IDW_Lophius_americanus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2011.tif
-NEUS_SPR_IDW_Lophius_americanus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2012.tif
-NEUS_SPR_IDW_Lophius_americanus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2013.tif
-NEUS_SPR_IDW_Lophius_americanus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2015.tif
-NEUS_SPR_IDW_Lophius_americanus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2016.tif
-NEUS_SPR_IDW_Lophius_americanus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2017.tif
-NEUS_SPR_IDW_Lophius_americanus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2018.tif
-NEUS_SPR_IDW_Lophius_americanus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2019.tif
-NEUS_SPR_IDW_Lophius_americanus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2021.tif
-NEUS_SPR_IDW_Lophius_americanus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2022.tif
-NEUS_SPR_IDW_Malacoraja_senta_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1974.tif
-NEUS_SPR_IDW_Malacoraja_senta_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1976.tif
-NEUS_SPR_IDW_Malacoraja_senta_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1977.tif
-NEUS_SPR_IDW_Malacoraja_senta_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1978.tif
-NEUS_SPR_IDW_Malacoraja_senta_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1979.tif
-NEUS_SPR_IDW_Malacoraja_senta_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1980.tif
-NEUS_SPR_IDW_Malacoraja_senta_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1981.tif
-NEUS_SPR_IDW_Malacoraja_senta_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1982.tif
-NEUS_SPR_IDW_Malacoraja_senta_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1983.tif
-NEUS_SPR_IDW_Malacoraja_senta_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1984.tif
-NEUS_SPR_IDW_Malacoraja_senta_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1985.tif
-NEUS_SPR_IDW_Malacoraja_senta_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1986.tif
-NEUS_SPR_IDW_Malacoraja_senta_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1987.tif
-NEUS_SPR_IDW_Malacoraja_senta_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1988.tif
-NEUS_SPR_IDW_Malacoraja_senta_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1989.tif
-NEUS_SPR_IDW_Malacoraja_senta_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1990.tif
-NEUS_SPR_IDW_Malacoraja_senta_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1991.tif
-NEUS_SPR_IDW_Malacoraja_senta_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1992.tif
-NEUS_SPR_IDW_Malacoraja_senta_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1993.tif
-NEUS_SPR_IDW_Malacoraja_senta_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1994.tif
-NEUS_SPR_IDW_Malacoraja_senta_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1995.tif
-NEUS_SPR_IDW_Malacoraja_senta_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1996.tif
-NEUS_SPR_IDW_Malacoraja_senta_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1997.tif
-NEUS_SPR_IDW_Malacoraja_senta_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1998.tif
-NEUS_SPR_IDW_Malacoraja_senta_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1999.tif
-NEUS_SPR_IDW_Malacoraja_senta_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2000.tif
-NEUS_SPR_IDW_Malacoraja_senta_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2001.tif
-NEUS_SPR_IDW_Malacoraja_senta_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2002.tif
-NEUS_SPR_IDW_Malacoraja_senta_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2003.tif
-NEUS_SPR_IDW_Malacoraja_senta_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2004.tif
-NEUS_SPR_IDW_Malacoraja_senta_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2005.tif
-NEUS_SPR_IDW_Malacoraja_senta_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2006.tif
-NEUS_SPR_IDW_Malacoraja_senta_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2007.tif
-NEUS_SPR_IDW_Malacoraja_senta_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2008.tif
-NEUS_SPR_IDW_Malacoraja_senta_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2009.tif
-NEUS_SPR_IDW_Malacoraja_senta_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2010.tif
-NEUS_SPR_IDW_Malacoraja_senta_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2011.tif
-NEUS_SPR_IDW_Malacoraja_senta_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2012.tif
-NEUS_SPR_IDW_Malacoraja_senta_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2013.tif
-NEUS_SPR_IDW_Malacoraja_senta_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2015.tif
-NEUS_SPR_IDW_Malacoraja_senta_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2016.tif
-NEUS_SPR_IDW_Malacoraja_senta_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2017.tif
-NEUS_SPR_IDW_Malacoraja_senta_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2018.tif
-NEUS_SPR_IDW_Malacoraja_senta_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2019.tif
-NEUS_SPR_IDW_Malacoraja_senta_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2021.tif
-NEUS_SPR_IDW_Malacoraja_senta_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2022.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1974.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1976.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1977.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1978.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:35:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1979.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1980.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1981.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1982.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1983.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1984.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1985.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1986.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1987.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1988.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1989.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1990.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1991.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1992.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1993.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1994.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1995.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1996.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1997.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1998.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1999.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2000.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2001.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2002.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2003.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2004.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2005.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2006.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2007.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2008.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2009.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2010.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2011.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2012.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2013.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2015.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2016.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2017.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2018.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2019.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2021.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2022.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1974.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1976.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1977.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1978.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1979.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1980.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1981.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1982.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1983.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1984.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1985.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1986.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1987.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1988.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1989.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1990.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1991.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1992.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1993.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1994.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1995.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1996.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1997.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1998.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1999.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2000.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2001.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2002.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2003.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2004.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2005.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2006.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2007.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2008.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2009.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2010.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2011.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2012.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2013.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2015.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2016.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2017.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2018.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2019.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2021.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2022.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1974.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1976.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1977.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1978.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1979.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1980.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1981.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1982.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1983.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1984.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1985.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1986.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1987.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1988.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1989.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1990.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1991.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1992.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1993.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1994.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1995.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1996.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1997.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1998.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1999.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2000.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2001.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2002.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2003.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2004.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2005.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2006.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2007.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2008.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2009.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2010.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2011.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2012.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2013.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2015.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2016.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2017.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2018.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2019.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2021.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2022.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1974.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1976.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1977.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1978.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1979.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1980.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1981.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1982.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1983.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1984.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1985.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1986.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1987.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1988.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1989.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1990.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1991.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1992.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1993.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1994.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1995.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1996.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1997.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1998.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1999.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2000.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2001.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2002.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2003.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2004.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2005.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2006.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2007.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2008.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2009.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2010.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2011.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2012.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2013.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2015.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2016.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2017.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2018.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2019.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2021.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2022.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1974.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1976.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1977.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1978.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1979.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1980.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1981.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1982.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1983.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1984.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1985.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1986.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1987.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1988.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1989.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1990.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1991.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1992.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1993.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1994.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1995.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1996.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1997.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1998.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1999.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2000.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2001.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2002.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2003.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2004.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2005.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2006.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2007.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2008.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2009.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2010.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2011.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2012.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2013.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2015.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2016.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2017.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2018.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2019.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2021.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2022.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1974.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1976.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1977.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1978.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1979.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1980.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1981.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1982.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1983.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1984.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1985.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1986.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1987.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1988.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1989.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1990.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1991.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1992.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1993.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1994.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1995.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1996.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1997.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1998.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1999.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2000.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2001.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2002.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2003.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2004.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2005.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2006.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2007.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2008.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2009.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2010.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2011.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2012.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2013.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2015.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2016.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2017.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2018.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:36:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2019.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2021.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2022.tif
-NEUS_SPR_IDW_Pollachius_virens_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1974.tif
-NEUS_SPR_IDW_Pollachius_virens_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1976.tif
-NEUS_SPR_IDW_Pollachius_virens_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1977.tif
-NEUS_SPR_IDW_Pollachius_virens_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1978.tif
-NEUS_SPR_IDW_Pollachius_virens_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1979.tif
-NEUS_SPR_IDW_Pollachius_virens_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1980.tif
-NEUS_SPR_IDW_Pollachius_virens_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1981.tif
-NEUS_SPR_IDW_Pollachius_virens_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1982.tif
-NEUS_SPR_IDW_Pollachius_virens_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1983.tif
-NEUS_SPR_IDW_Pollachius_virens_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1984.tif
-NEUS_SPR_IDW_Pollachius_virens_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1985.tif
-NEUS_SPR_IDW_Pollachius_virens_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1986.tif
-NEUS_SPR_IDW_Pollachius_virens_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1987.tif
-NEUS_SPR_IDW_Pollachius_virens_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1988.tif
-NEUS_SPR_IDW_Pollachius_virens_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1989.tif
-NEUS_SPR_IDW_Pollachius_virens_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1990.tif
-NEUS_SPR_IDW_Pollachius_virens_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1991.tif
-NEUS_SPR_IDW_Pollachius_virens_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1992.tif
-NEUS_SPR_IDW_Pollachius_virens_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1993.tif
-NEUS_SPR_IDW_Pollachius_virens_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1994.tif
-NEUS_SPR_IDW_Pollachius_virens_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1995.tif
-NEUS_SPR_IDW_Pollachius_virens_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1996.tif
-NEUS_SPR_IDW_Pollachius_virens_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1997.tif
-NEUS_SPR_IDW_Pollachius_virens_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1998.tif
-NEUS_SPR_IDW_Pollachius_virens_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1999.tif
-NEUS_SPR_IDW_Pollachius_virens_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2000.tif
-NEUS_SPR_IDW_Pollachius_virens_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2001.tif
-NEUS_SPR_IDW_Pollachius_virens_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2002.tif
-NEUS_SPR_IDW_Pollachius_virens_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2003.tif
-NEUS_SPR_IDW_Pollachius_virens_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2004.tif
-NEUS_SPR_IDW_Pollachius_virens_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2005.tif
-NEUS_SPR_IDW_Pollachius_virens_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2006.tif
-NEUS_SPR_IDW_Pollachius_virens_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2007.tif
-NEUS_SPR_IDW_Pollachius_virens_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2008.tif
-NEUS_SPR_IDW_Pollachius_virens_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2009.tif
-NEUS_SPR_IDW_Pollachius_virens_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2010.tif
-NEUS_SPR_IDW_Pollachius_virens_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2011.tif
-NEUS_SPR_IDW_Pollachius_virens_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2012.tif
-NEUS_SPR_IDW_Pollachius_virens_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2013.tif
-NEUS_SPR_IDW_Pollachius_virens_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2015.tif
-NEUS_SPR_IDW_Pollachius_virens_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2016.tif
-NEUS_SPR_IDW_Pollachius_virens_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2017.tif
-NEUS_SPR_IDW_Pollachius_virens_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2018.tif
-NEUS_SPR_IDW_Pollachius_virens_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2019.tif
-NEUS_SPR_IDW_Pollachius_virens_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2021.tif
-NEUS_SPR_IDW_Pollachius_virens_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2022.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1974.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1976.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1977.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1978.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1979.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1980.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1981.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1982.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1983.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1984.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1985.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1986.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1987.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1988.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1989.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1990.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1991.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1992.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1993.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1994.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1995.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1996.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1997.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1998.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1999.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2000.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2001.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2002.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2003.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2004.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2005.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2006.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2007.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2008.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2009.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2010.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2011.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2012.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2013.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2015.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2016.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2017.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2018.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2019.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2021.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2022.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1974.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1976.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1977.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1978.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1979.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1980.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1981.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1982.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1983.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1984.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1985.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1986.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1987.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1988.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1989.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1990.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1991.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1992.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1993.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1994.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1995.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1996.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1997.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1998.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1999.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2000.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2001.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2002.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2003.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2004.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2005.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2006.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2007.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2008.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2009.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2010.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2011.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2012.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2013.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2015.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2016.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2017.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2018.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2019.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2021.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2022.tif
-NEUS_SPR_IDW_Scomber_scombrus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1974.tif
-NEUS_SPR_IDW_Scomber_scombrus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1976.tif
-NEUS_SPR_IDW_Scomber_scombrus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1977.tif
-NEUS_SPR_IDW_Scomber_scombrus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1978.tif
-NEUS_SPR_IDW_Scomber_scombrus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1979.tif
-NEUS_SPR_IDW_Scomber_scombrus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1980.tif
-NEUS_SPR_IDW_Scomber_scombrus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1981.tif
-NEUS_SPR_IDW_Scomber_scombrus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1982.tif
-NEUS_SPR_IDW_Scomber_scombrus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1983.tif
-NEUS_SPR_IDW_Scomber_scombrus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1984.tif
-NEUS_SPR_IDW_Scomber_scombrus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1985.tif
-NEUS_SPR_IDW_Scomber_scombrus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1986.tif
-NEUS_SPR_IDW_Scomber_scombrus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1987.tif
-NEUS_SPR_IDW_Scomber_scombrus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1988.tif
-NEUS_SPR_IDW_Scomber_scombrus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1989.tif
-NEUS_SPR_IDW_Scomber_scombrus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1990.tif
-NEUS_SPR_IDW_Scomber_scombrus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1991.tif
-NEUS_SPR_IDW_Scomber_scombrus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1992.tif
-NEUS_SPR_IDW_Scomber_scombrus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1993.tif
-NEUS_SPR_IDW_Scomber_scombrus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1994.tif
-NEUS_SPR_IDW_Scomber_scombrus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1995.tif
-NEUS_SPR_IDW_Scomber_scombrus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1996.tif
-NEUS_SPR_IDW_Scomber_scombrus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1997.tif
-NEUS_SPR_IDW_Scomber_scombrus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1998.tif
-NEUS_SPR_IDW_Scomber_scombrus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1999.tif
-NEUS_SPR_IDW_Scomber_scombrus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2000.tif
-NEUS_SPR_IDW_Scomber_scombrus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2001.tif
-NEUS_SPR_IDW_Scomber_scombrus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2002.tif
-NEUS_SPR_IDW_Scomber_scombrus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2003.tif
-NEUS_SPR_IDW_Scomber_scombrus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2004.tif
-NEUS_SPR_IDW_Scomber_scombrus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2005.tif
-NEUS_SPR_IDW_Scomber_scombrus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2006.tif
-NEUS_SPR_IDW_Scomber_scombrus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2007.tif
-NEUS_SPR_IDW_Scomber_scombrus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2008.tif
-NEUS_SPR_IDW_Scomber_scombrus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2009.tif
-NEUS_SPR_IDW_Scomber_scombrus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2010.tif
-NEUS_SPR_IDW_Scomber_scombrus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2011.tif
-NEUS_SPR_IDW_Scomber_scombrus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2012.tif
-NEUS_SPR_IDW_Scomber_scombrus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2013.tif
-NEUS_SPR_IDW_Scomber_scombrus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2015.tif
-NEUS_SPR_IDW_Scomber_scombrus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2016.tif
-NEUS_SPR_IDW_Scomber_scombrus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2017.tif
-NEUS_SPR_IDW_Scomber_scombrus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2018.tif
-NEUS_SPR_IDW_Scomber_scombrus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2019.tif
-NEUS_SPR_IDW_Scomber_scombrus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2021.tif
-NEUS_SPR_IDW_Scomber_scombrus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2022.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1974.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1976.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1977.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1978.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1979.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1980.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1981.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1982.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1983.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1984.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1985.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1986.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1987.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1988.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1989.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1990.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1991.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1992.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1993.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1994.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1995.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1996.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1997.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1998.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1999.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2000.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2001.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2002.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2003.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2004.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2005.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2006.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2007.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2008.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2009.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2010.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2011.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2012.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2013.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:37:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2015.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2016.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2017.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2018.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2019.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2021.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2022.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1974.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1976.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1977.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1978.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1979.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1980.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1981.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1982.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1983.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1984.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1985.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1986.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1987.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1988.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1989.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1990.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1991.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1992.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1993.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1994.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1995.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1996.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1997.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1998.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1999.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2000.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2001.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2002.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2003.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2004.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2005.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2006.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2007.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2008.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2009.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2010.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2011.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2012.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2013.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2015.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2016.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2017.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2018.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2019.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2021.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2022.tif
-NEUS_SPR_IDW_Squalus_acanthias_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1974.tif
-NEUS_SPR_IDW_Squalus_acanthias_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1976.tif
-NEUS_SPR_IDW_Squalus_acanthias_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1977.tif
-NEUS_SPR_IDW_Squalus_acanthias_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1978.tif
-NEUS_SPR_IDW_Squalus_acanthias_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1979.tif
-NEUS_SPR_IDW_Squalus_acanthias_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1980.tif
-NEUS_SPR_IDW_Squalus_acanthias_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1981.tif
-NEUS_SPR_IDW_Squalus_acanthias_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1982.tif
-NEUS_SPR_IDW_Squalus_acanthias_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1983.tif
-NEUS_SPR_IDW_Squalus_acanthias_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1984.tif
-NEUS_SPR_IDW_Squalus_acanthias_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1985.tif
-NEUS_SPR_IDW_Squalus_acanthias_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1986.tif
-NEUS_SPR_IDW_Squalus_acanthias_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1987.tif
-NEUS_SPR_IDW_Squalus_acanthias_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1988.tif
-NEUS_SPR_IDW_Squalus_acanthias_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1989.tif
-NEUS_SPR_IDW_Squalus_acanthias_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1990.tif
-NEUS_SPR_IDW_Squalus_acanthias_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1991.tif
-NEUS_SPR_IDW_Squalus_acanthias_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1992.tif
-NEUS_SPR_IDW_Squalus_acanthias_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1993.tif
-NEUS_SPR_IDW_Squalus_acanthias_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1994.tif
-NEUS_SPR_IDW_Squalus_acanthias_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1995.tif
-NEUS_SPR_IDW_Squalus_acanthias_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1996.tif
-NEUS_SPR_IDW_Squalus_acanthias_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1997.tif
-NEUS_SPR_IDW_Squalus_acanthias_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1998.tif
-NEUS_SPR_IDW_Squalus_acanthias_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1999.tif
-NEUS_SPR_IDW_Squalus_acanthias_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2000.tif
-NEUS_SPR_IDW_Squalus_acanthias_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2001.tif
-NEUS_SPR_IDW_Squalus_acanthias_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2002.tif
-NEUS_SPR_IDW_Squalus_acanthias_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2003.tif
-NEUS_SPR_IDW_Squalus_acanthias_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2004.tif
-NEUS_SPR_IDW_Squalus_acanthias_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2005.tif
-NEUS_SPR_IDW_Squalus_acanthias_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2006.tif
-NEUS_SPR_IDW_Squalus_acanthias_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2007.tif
-NEUS_SPR_IDW_Squalus_acanthias_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2008.tif
-NEUS_SPR_IDW_Squalus_acanthias_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2009.tif
-NEUS_SPR_IDW_Squalus_acanthias_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2010.tif
-NEUS_SPR_IDW_Squalus_acanthias_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2011.tif
-NEUS_SPR_IDW_Squalus_acanthias_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2012.tif
-NEUS_SPR_IDW_Squalus_acanthias_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2013.tif
-NEUS_SPR_IDW_Squalus_acanthias_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2015.tif
-NEUS_SPR_IDW_Squalus_acanthias_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2016.tif
-NEUS_SPR_IDW_Squalus_acanthias_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2017.tif
-NEUS_SPR_IDW_Squalus_acanthias_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2018.tif
-NEUS_SPR_IDW_Squalus_acanthias_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2019.tif
-NEUS_SPR_IDW_Squalus_acanthias_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2021.tif
-NEUS_SPR_IDW_Squalus_acanthias_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2022.tif
-NEUS_SPR_IDW_Urophycis_chuss_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1974.tif
-NEUS_SPR_IDW_Urophycis_chuss_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1976.tif
-NEUS_SPR_IDW_Urophycis_chuss_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1977.tif
-NEUS_SPR_IDW_Urophycis_chuss_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1978.tif
-NEUS_SPR_IDW_Urophycis_chuss_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1979.tif
-NEUS_SPR_IDW_Urophycis_chuss_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1980.tif
-NEUS_SPR_IDW_Urophycis_chuss_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1981.tif
-NEUS_SPR_IDW_Urophycis_chuss_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1982.tif
-NEUS_SPR_IDW_Urophycis_chuss_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1983.tif
-NEUS_SPR_IDW_Urophycis_chuss_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1984.tif
-NEUS_SPR_IDW_Urophycis_chuss_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1985.tif
-NEUS_SPR_IDW_Urophycis_chuss_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1986.tif
-NEUS_SPR_IDW_Urophycis_chuss_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1987.tif
-NEUS_SPR_IDW_Urophycis_chuss_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1988.tif
-NEUS_SPR_IDW_Urophycis_chuss_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1989.tif
-NEUS_SPR_IDW_Urophycis_chuss_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1990.tif
-NEUS_SPR_IDW_Urophycis_chuss_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1991.tif
-NEUS_SPR_IDW_Urophycis_chuss_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1992.tif
-NEUS_SPR_IDW_Urophycis_chuss_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1993.tif
-NEUS_SPR_IDW_Urophycis_chuss_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1994.tif
-NEUS_SPR_IDW_Urophycis_chuss_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1995.tif
-NEUS_SPR_IDW_Urophycis_chuss_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1996.tif
-NEUS_SPR_IDW_Urophycis_chuss_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1997.tif
-NEUS_SPR_IDW_Urophycis_chuss_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1998.tif
-NEUS_SPR_IDW_Urophycis_chuss_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1999.tif
-NEUS_SPR_IDW_Urophycis_chuss_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2000.tif
-NEUS_SPR_IDW_Urophycis_chuss_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2001.tif
-NEUS_SPR_IDW_Urophycis_chuss_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2002.tif
-NEUS_SPR_IDW_Urophycis_chuss_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2003.tif
-NEUS_SPR_IDW_Urophycis_chuss_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2004.tif
-NEUS_SPR_IDW_Urophycis_chuss_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2005.tif
-NEUS_SPR_IDW_Urophycis_chuss_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2006.tif
-NEUS_SPR_IDW_Urophycis_chuss_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2007.tif
-NEUS_SPR_IDW_Urophycis_chuss_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2008.tif
-NEUS_SPR_IDW_Urophycis_chuss_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2009.tif
-NEUS_SPR_IDW_Urophycis_chuss_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2010.tif
-NEUS_SPR_IDW_Urophycis_chuss_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2011.tif
-NEUS_SPR_IDW_Urophycis_chuss_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2012.tif
-NEUS_SPR_IDW_Urophycis_chuss_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2013.tif
-NEUS_SPR_IDW_Urophycis_chuss_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2015.tif
-NEUS_SPR_IDW_Urophycis_chuss_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2016.tif
-NEUS_SPR_IDW_Urophycis_chuss_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2017.tif
-NEUS_SPR_IDW_Urophycis_chuss_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2018.tif
-NEUS_SPR_IDW_Urophycis_chuss_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2019.tif
-NEUS_SPR_IDW_Urophycis_chuss_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2021.tif
-NEUS_SPR_IDW_Urophycis_chuss_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2022.tif
-NEUS_SPR_IDW_Urophycis_regia_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1974.tif
-NEUS_SPR_IDW_Urophycis_regia_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1976.tif
-NEUS_SPR_IDW_Urophycis_regia_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1977.tif
-NEUS_SPR_IDW_Urophycis_regia_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1978.tif
-NEUS_SPR_IDW_Urophycis_regia_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1979.tif
-NEUS_SPR_IDW_Urophycis_regia_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1980.tif
-NEUS_SPR_IDW_Urophycis_regia_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1981.tif
-NEUS_SPR_IDW_Urophycis_regia_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1982.tif
-NEUS_SPR_IDW_Urophycis_regia_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1983.tif
-NEUS_SPR_IDW_Urophycis_regia_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1984.tif
-NEUS_SPR_IDW_Urophycis_regia_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1985.tif
-NEUS_SPR_IDW_Urophycis_regia_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1986.tif
-NEUS_SPR_IDW_Urophycis_regia_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1987.tif
-NEUS_SPR_IDW_Urophycis_regia_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1988.tif
-NEUS_SPR_IDW_Urophycis_regia_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1989.tif
-NEUS_SPR_IDW_Urophycis_regia_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1990.tif
-NEUS_SPR_IDW_Urophycis_regia_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1991.tif
-NEUS_SPR_IDW_Urophycis_regia_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1992.tif
-NEUS_SPR_IDW_Urophycis_regia_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1993.tif
-NEUS_SPR_IDW_Urophycis_regia_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1994.tif
-NEUS_SPR_IDW_Urophycis_regia_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1995.tif
-NEUS_SPR_IDW_Urophycis_regia_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1996.tif
-NEUS_SPR_IDW_Urophycis_regia_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1997.tif
-NEUS_SPR_IDW_Urophycis_regia_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1998.tif
-NEUS_SPR_IDW_Urophycis_regia_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1999.tif
-NEUS_SPR_IDW_Urophycis_regia_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2000.tif
-NEUS_SPR_IDW_Urophycis_regia_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2001.tif
-NEUS_SPR_IDW_Urophycis_regia_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2002.tif
-NEUS_SPR_IDW_Urophycis_regia_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2003.tif
-NEUS_SPR_IDW_Urophycis_regia_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2004.tif
-NEUS_SPR_IDW_Urophycis_regia_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2005.tif
-NEUS_SPR_IDW_Urophycis_regia_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2006.tif
-NEUS_SPR_IDW_Urophycis_regia_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2007.tif
-NEUS_SPR_IDW_Urophycis_regia_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2008.tif
-NEUS_SPR_IDW_Urophycis_regia_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2009.tif
-NEUS_SPR_IDW_Urophycis_regia_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2010.tif
-NEUS_SPR_IDW_Urophycis_regia_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2011.tif
-NEUS_SPR_IDW_Urophycis_regia_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2012.tif
-NEUS_SPR_IDW_Urophycis_regia_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2013.tif
-NEUS_SPR_IDW_Urophycis_regia_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2015.tif
-NEUS_SPR_IDW_Urophycis_regia_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2016.tif
-NEUS_SPR_IDW_Urophycis_regia_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2017.tif
-NEUS_SPR_IDW_Urophycis_regia_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2018.tif
-NEUS_SPR_IDW_Urophycis_regia_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2019.tif
-NEUS_SPR_IDW_Urophycis_regia_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2021.tif
-NEUS_SPR_IDW_Urophycis_regia_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2022.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1974.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1976.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1977.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1978.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1979.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1980.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1981.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1982.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1983.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1984.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1985.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1986.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1987.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1988.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1989.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1990.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1991.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1992.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1993.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1994.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1995.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1996.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1997.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1998.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1999.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2000.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2001.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2002.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2003.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2004.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2005.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2006.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:38:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2007.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2008.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2009.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2010.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2011.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2012.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2013.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2015.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2016.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2017.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2018.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2019.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2021.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2022.tif
-NEUS_SPR_IDW_Zoarces_americanus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1974.tif
-NEUS_SPR_IDW_Zoarces_americanus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1976.tif
-NEUS_SPR_IDW_Zoarces_americanus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1977.tif
-NEUS_SPR_IDW_Zoarces_americanus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1978.tif
-NEUS_SPR_IDW_Zoarces_americanus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1979.tif
-NEUS_SPR_IDW_Zoarces_americanus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1980.tif
-NEUS_SPR_IDW_Zoarces_americanus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1981.tif
-NEUS_SPR_IDW_Zoarces_americanus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1982.tif
-NEUS_SPR_IDW_Zoarces_americanus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1983.tif
-NEUS_SPR_IDW_Zoarces_americanus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1984.tif
-NEUS_SPR_IDW_Zoarces_americanus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1985.tif
-NEUS_SPR_IDW_Zoarces_americanus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1986.tif
-NEUS_SPR_IDW_Zoarces_americanus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1987.tif
-NEUS_SPR_IDW_Zoarces_americanus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1988.tif
-NEUS_SPR_IDW_Zoarces_americanus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1989.tif
-NEUS_SPR_IDW_Zoarces_americanus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1990.tif
-NEUS_SPR_IDW_Zoarces_americanus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1991.tif
-NEUS_SPR_IDW_Zoarces_americanus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1992.tif
-NEUS_SPR_IDW_Zoarces_americanus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1993.tif
-NEUS_SPR_IDW_Zoarces_americanus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1994.tif
-NEUS_SPR_IDW_Zoarces_americanus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1995.tif
-NEUS_SPR_IDW_Zoarces_americanus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1996.tif
-NEUS_SPR_IDW_Zoarces_americanus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1997.tif
-NEUS_SPR_IDW_Zoarces_americanus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1998.tif
-NEUS_SPR_IDW_Zoarces_americanus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_1999.tif
-NEUS_SPR_IDW_Zoarces_americanus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_2000.tif
-NEUS_SPR_IDW_Zoarces_americanus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_2001.tif
-NEUS_SPR_IDW_Zoarces_americanus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_2002.tif
-NEUS_SPR_IDW_Zoarces_americanus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_2003.tif
-NEUS_SPR_IDW_Zoarces_americanus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_2004.tif
-NEUS_SPR_IDW_Zoarces_americanus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_2005.tif
-NEUS_SPR_IDW_Zoarces_americanus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_2006.tif
-NEUS_SPR_IDW_Zoarces_americanus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_2007.tif
-NEUS_SPR_IDW_Zoarces_americanus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_2008.tif
-NEUS_SPR_IDW_Zoarces_americanus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_2009.tif
-NEUS_SPR_IDW_Zoarces_americanus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_2010.tif
-NEUS_SPR_IDW_Zoarces_americanus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_2011.tif
-NEUS_SPR_IDW_Zoarces_americanus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_2012.tif
-NEUS_SPR_IDW_Zoarces_americanus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_2013.tif
-NEUS_SPR_IDW_Zoarces_americanus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_2015.tif
-NEUS_SPR_IDW_Zoarces_americanus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_2016.tif
-NEUS_SPR_IDW_Zoarces_americanus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_2017.tif
-NEUS_SPR_IDW_Zoarces_americanus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_2018.tif
-NEUS_SPR_IDW_Zoarces_americanus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_2019.tif
-NEUS_SPR_IDW_Zoarces_americanus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_2021.tif
-NEUS_SPR_IDW_Zoarces_americanus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\Zoarces americanus\NEUS_SPR_IDW_Zoarces_americanus_2022.tif
-NEUS_SPR_IDW_Core_Species_Richness_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1974.tif
-NEUS_SPR_IDW_Core_Species_Richness_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1976.tif
-NEUS_SPR_IDW_Core_Species_Richness_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1977.tif
-NEUS_SPR_IDW_Core_Species_Richness_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1978.tif
-NEUS_SPR_IDW_Core_Species_Richness_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1979.tif
-NEUS_SPR_IDW_Core_Species_Richness_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1980.tif
-NEUS_SPR_IDW_Core_Species_Richness_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1981.tif
-NEUS_SPR_IDW_Core_Species_Richness_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1982.tif
-NEUS_SPR_IDW_Core_Species_Richness_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1983.tif
-NEUS_SPR_IDW_Core_Species_Richness_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1984.tif
-NEUS_SPR_IDW_Core_Species_Richness_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1985.tif
-NEUS_SPR_IDW_Core_Species_Richness_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1986.tif
-NEUS_SPR_IDW_Core_Species_Richness_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1987.tif
-NEUS_SPR_IDW_Core_Species_Richness_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1988.tif
-NEUS_SPR_IDW_Core_Species_Richness_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1989.tif
-NEUS_SPR_IDW_Core_Species_Richness_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1990.tif
-NEUS_SPR_IDW_Core_Species_Richness_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1991.tif
-NEUS_SPR_IDW_Core_Species_Richness_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1992.tif
-NEUS_SPR_IDW_Core_Species_Richness_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1993.tif
-NEUS_SPR_IDW_Core_Species_Richness_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1994.tif
-NEUS_SPR_IDW_Core_Species_Richness_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1995.tif
-NEUS_SPR_IDW_Core_Species_Richness_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1996.tif
-NEUS_SPR_IDW_Core_Species_Richness_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1997.tif
-NEUS_SPR_IDW_Core_Species_Richness_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1998.tif
-NEUS_SPR_IDW_Core_Species_Richness_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1999.tif
-NEUS_SPR_IDW_Core_Species_Richness_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2000.tif
-NEUS_SPR_IDW_Core_Species_Richness_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2001.tif
-NEUS_SPR_IDW_Core_Species_Richness_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2002.tif
-NEUS_SPR_IDW_Core_Species_Richness_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2003.tif
-NEUS_SPR_IDW_Core_Species_Richness_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2004.tif
-NEUS_SPR_IDW_Core_Species_Richness_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2005.tif
-NEUS_SPR_IDW_Core_Species_Richness_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2006.tif
-NEUS_SPR_IDW_Core_Species_Richness_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2007.tif
-NEUS_SPR_IDW_Core_Species_Richness_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2008.tif
-NEUS_SPR_IDW_Core_Species_Richness_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2009.tif
-NEUS_SPR_IDW_Core_Species_Richness_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2010.tif
-NEUS_SPR_IDW_Core_Species_Richness_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2011.tif
-NEUS_SPR_IDW_Core_Species_Richness_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2012.tif
-NEUS_SPR_IDW_Core_Species_Richness_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2013.tif
-NEUS_SPR_IDW_Core_Species_Richness_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2015.tif
-NEUS_SPR_IDW_Core_Species_Richness_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2016.tif
-NEUS_SPR_IDW_Core_Species_Richness_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2017.tif
-NEUS_SPR_IDW_Core_Species_Richness_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2018.tif
-NEUS_SPR_IDW_Core_Species_Richness_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2019.tif
-NEUS_SPR_IDW_Core_Species_Richness_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2021.tif
-NEUS_SPR_IDW_Core_Species_Richness_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2022.tif
-NEUS_SPR_IDW_Species_Richness_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1974.tif
-NEUS_SPR_IDW_Species_Richness_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1976.tif
-NEUS_SPR_IDW_Species_Richness_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1977.tif
-NEUS_SPR_IDW_Species_Richness_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1978.tif
-NEUS_SPR_IDW_Species_Richness_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1979.tif
-NEUS_SPR_IDW_Species_Richness_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1980.tif
-NEUS_SPR_IDW_Species_Richness_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1981.tif
-NEUS_SPR_IDW_Species_Richness_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1982.tif
-NEUS_SPR_IDW_Species_Richness_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1983.tif
-NEUS_SPR_IDW_Species_Richness_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1984.tif
-NEUS_SPR_IDW_Species_Richness_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1985.tif
-NEUS_SPR_IDW_Species_Richness_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1986.tif
-NEUS_SPR_IDW_Species_Richness_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1987.tif
-NEUS_SPR_IDW_Species_Richness_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1988.tif
-NEUS_SPR_IDW_Species_Richness_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1989.tif
-NEUS_SPR_IDW_Species_Richness_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1990.tif
-NEUS_SPR_IDW_Species_Richness_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1991.tif
-NEUS_SPR_IDW_Species_Richness_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1992.tif
-NEUS_SPR_IDW_Species_Richness_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1993.tif
-NEUS_SPR_IDW_Species_Richness_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1994.tif
-NEUS_SPR_IDW_Species_Richness_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1995.tif
-NEUS_SPR_IDW_Species_Richness_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1996.tif
-NEUS_SPR_IDW_Species_Richness_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1997.tif
-NEUS_SPR_IDW_Species_Richness_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1998.tif
-NEUS_SPR_IDW_Species_Richness_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1999.tif
-NEUS_SPR_IDW_Species_Richness_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2000.tif
-NEUS_SPR_IDW_Species_Richness_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2001.tif
-NEUS_SPR_IDW_Species_Richness_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2002.tif
-NEUS_SPR_IDW_Species_Richness_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2003.tif
-NEUS_SPR_IDW_Species_Richness_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2004.tif
-NEUS_SPR_IDW_Species_Richness_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2005.tif
-NEUS_SPR_IDW_Species_Richness_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2006.tif
-NEUS_SPR_IDW_Species_Richness_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2007.tif
-NEUS_SPR_IDW_Species_Richness_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2008.tif
-NEUS_SPR_IDW_Species_Richness_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2009.tif
-NEUS_SPR_IDW_Species_Richness_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2010.tif
-NEUS_SPR_IDW_Species_Richness_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2011.tif
-NEUS_SPR_IDW_Species_Richness_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2012.tif
-NEUS_SPR_IDW_Species_Richness_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2013.tif
-NEUS_SPR_IDW_Species_Richness_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2015.tif
-NEUS_SPR_IDW_Species_Richness_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2016.tif
-NEUS_SPR_IDW_Species_Richness_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2017.tif
-NEUS_SPR_IDW_Species_Richness_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2018.tif
-NEUS_SPR_IDW_Species_Richness_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2019.tif
-NEUS_SPR_IDW_Species_Richness_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2021.tif
-NEUS_SPR_IDW_Species_Richness_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2022.tif
-SEUS_FAL_IDW_Achelous_gibbesii_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_1989.tif
-SEUS_FAL_IDW_Achelous_gibbesii_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_1990.tif
-SEUS_FAL_IDW_Achelous_gibbesii_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_1991.tif
-SEUS_FAL_IDW_Achelous_gibbesii_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_1992.tif
-SEUS_FAL_IDW_Achelous_gibbesii_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_1993.tif
-SEUS_FAL_IDW_Achelous_gibbesii_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_1994.tif
-SEUS_FAL_IDW_Achelous_gibbesii_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_1995.tif
-SEUS_FAL_IDW_Achelous_gibbesii_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_1996.tif
-SEUS_FAL_IDW_Achelous_gibbesii_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_1997.tif
-SEUS_FAL_IDW_Achelous_gibbesii_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_1998.tif
-SEUS_FAL_IDW_Achelous_gibbesii_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:39:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_1999.tif
-SEUS_FAL_IDW_Achelous_gibbesii_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_2000.tif
-SEUS_FAL_IDW_Achelous_gibbesii_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_2001.tif
-SEUS_FAL_IDW_Achelous_gibbesii_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_2002.tif
-SEUS_FAL_IDW_Achelous_gibbesii_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_2003.tif
-SEUS_FAL_IDW_Achelous_gibbesii_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_2004.tif
-SEUS_FAL_IDW_Achelous_gibbesii_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_2005.tif
-SEUS_FAL_IDW_Achelous_gibbesii_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_2006.tif
-SEUS_FAL_IDW_Achelous_gibbesii_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_2007.tif
-SEUS_FAL_IDW_Achelous_gibbesii_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_2008.tif
-SEUS_FAL_IDW_Achelous_gibbesii_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_2009.tif
-SEUS_FAL_IDW_Achelous_gibbesii_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_2010.tif
-SEUS_FAL_IDW_Achelous_gibbesii_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_2011.tif
-SEUS_FAL_IDW_Achelous_gibbesii_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_2012.tif
-SEUS_FAL_IDW_Achelous_gibbesii_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_2013.tif
-SEUS_FAL_IDW_Achelous_gibbesii_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_2014.tif
-SEUS_FAL_IDW_Achelous_gibbesii_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_2015.tif
-SEUS_FAL_IDW_Achelous_gibbesii_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_2016.tif
-SEUS_FAL_IDW_Achelous_gibbesii_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous gibbesii\SEUS_FAL_IDW_Achelous_gibbesii_2017.tif
-SEUS_FAL_IDW_Achelous_spinimanus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_1989.tif
-SEUS_FAL_IDW_Achelous_spinimanus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_1990.tif
-SEUS_FAL_IDW_Achelous_spinimanus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_1991.tif
-SEUS_FAL_IDW_Achelous_spinimanus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_1992.tif
-SEUS_FAL_IDW_Achelous_spinimanus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_1993.tif
-SEUS_FAL_IDW_Achelous_spinimanus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_1994.tif
-SEUS_FAL_IDW_Achelous_spinimanus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_1995.tif
-SEUS_FAL_IDW_Achelous_spinimanus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_1996.tif
-SEUS_FAL_IDW_Achelous_spinimanus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_1997.tif
-SEUS_FAL_IDW_Achelous_spinimanus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_1998.tif
-SEUS_FAL_IDW_Achelous_spinimanus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_1999.tif
-SEUS_FAL_IDW_Achelous_spinimanus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_2000.tif
-SEUS_FAL_IDW_Achelous_spinimanus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_2001.tif
-SEUS_FAL_IDW_Achelous_spinimanus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_2002.tif
-SEUS_FAL_IDW_Achelous_spinimanus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_2003.tif
-SEUS_FAL_IDW_Achelous_spinimanus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_2004.tif
-SEUS_FAL_IDW_Achelous_spinimanus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_2005.tif
-SEUS_FAL_IDW_Achelous_spinimanus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_2006.tif
-SEUS_FAL_IDW_Achelous_spinimanus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_2007.tif
-SEUS_FAL_IDW_Achelous_spinimanus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_2008.tif
-SEUS_FAL_IDW_Achelous_spinimanus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_2009.tif
-SEUS_FAL_IDW_Achelous_spinimanus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_2010.tif
-SEUS_FAL_IDW_Achelous_spinimanus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_2011.tif
-SEUS_FAL_IDW_Achelous_spinimanus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_2012.tif
-SEUS_FAL_IDW_Achelous_spinimanus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_2013.tif
-SEUS_FAL_IDW_Achelous_spinimanus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_2014.tif
-SEUS_FAL_IDW_Achelous_spinimanus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_2015.tif
-SEUS_FAL_IDW_Achelous_spinimanus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_2016.tif
-SEUS_FAL_IDW_Achelous_spinimanus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Achelous spinimanus\SEUS_FAL_IDW_Achelous_spinimanus_2017.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_1989.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_1990.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_1991.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_1992.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_1993.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_1994.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_1995.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_1996.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_1997.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_1998.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_1999.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2000.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2001.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2002.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2003.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2004.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2005.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2006.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2007.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2008.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2009.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2010.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2011.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2012.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2013.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2014.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2015.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2016.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2017.tif
-SEUS_FAL_IDW_Ariopsis_felis_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_1989.tif
-SEUS_FAL_IDW_Ariopsis_felis_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_1990.tif
-SEUS_FAL_IDW_Ariopsis_felis_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_1991.tif
-SEUS_FAL_IDW_Ariopsis_felis_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_1992.tif
-SEUS_FAL_IDW_Ariopsis_felis_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_1993.tif
-SEUS_FAL_IDW_Ariopsis_felis_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_1994.tif
-SEUS_FAL_IDW_Ariopsis_felis_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_1995.tif
-SEUS_FAL_IDW_Ariopsis_felis_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_1996.tif
-SEUS_FAL_IDW_Ariopsis_felis_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_1997.tif
-SEUS_FAL_IDW_Ariopsis_felis_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_1998.tif
-SEUS_FAL_IDW_Ariopsis_felis_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_1999.tif
-SEUS_FAL_IDW_Ariopsis_felis_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_2000.tif
-SEUS_FAL_IDW_Ariopsis_felis_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_2001.tif
-SEUS_FAL_IDW_Ariopsis_felis_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_2002.tif
-SEUS_FAL_IDW_Ariopsis_felis_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_2003.tif
-SEUS_FAL_IDW_Ariopsis_felis_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_2004.tif
-SEUS_FAL_IDW_Ariopsis_felis_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_2005.tif
-SEUS_FAL_IDW_Ariopsis_felis_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_2006.tif
-SEUS_FAL_IDW_Ariopsis_felis_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_2007.tif
-SEUS_FAL_IDW_Ariopsis_felis_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_2008.tif
-SEUS_FAL_IDW_Ariopsis_felis_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_2009.tif
-SEUS_FAL_IDW_Ariopsis_felis_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_2010.tif
-SEUS_FAL_IDW_Ariopsis_felis_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_2011.tif
-SEUS_FAL_IDW_Ariopsis_felis_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_2012.tif
-SEUS_FAL_IDW_Ariopsis_felis_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_2013.tif
-SEUS_FAL_IDW_Ariopsis_felis_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_2014.tif
-SEUS_FAL_IDW_Ariopsis_felis_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_2015.tif
-SEUS_FAL_IDW_Ariopsis_felis_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_2016.tif
-SEUS_FAL_IDW_Ariopsis_felis_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ariopsis felis\SEUS_FAL_IDW_Ariopsis_felis_2017.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_1989.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_1990.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_1991.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_1992.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_1993.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_1994.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_1995.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_1996.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_1997.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_1998.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_1999.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2000.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2001.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2002.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2003.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2004.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2005.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2006.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2007.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2008.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2009.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2010.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2011.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2012.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2013.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2014.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2015.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2016.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2017.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_1989.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_1990.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_1991.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_1992.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_1993.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_1994.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_1995.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_1996.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_1997.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_1998.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_1999.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2000.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2001.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2002.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2003.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2004.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2005.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2006.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2007.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2008.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2009.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2010.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2011.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2012.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2013.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2014.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2015.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2016.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2017.tif
-SEUS_FAL_IDW_Callinectes_ornatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_1989.tif
-SEUS_FAL_IDW_Callinectes_ornatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_1990.tif
-SEUS_FAL_IDW_Callinectes_ornatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_1991.tif
-SEUS_FAL_IDW_Callinectes_ornatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_1992.tif
-SEUS_FAL_IDW_Callinectes_ornatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_1993.tif
-SEUS_FAL_IDW_Callinectes_ornatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_1994.tif
-SEUS_FAL_IDW_Callinectes_ornatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_1995.tif
-SEUS_FAL_IDW_Callinectes_ornatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_1996.tif
-SEUS_FAL_IDW_Callinectes_ornatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_1997.tif
-SEUS_FAL_IDW_Callinectes_ornatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_1998.tif
-SEUS_FAL_IDW_Callinectes_ornatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_1999.tif
-SEUS_FAL_IDW_Callinectes_ornatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_2000.tif
-SEUS_FAL_IDW_Callinectes_ornatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_2001.tif
-SEUS_FAL_IDW_Callinectes_ornatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_2002.tif
-SEUS_FAL_IDW_Callinectes_ornatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_2003.tif
-SEUS_FAL_IDW_Callinectes_ornatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_2004.tif
-SEUS_FAL_IDW_Callinectes_ornatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_2005.tif
-SEUS_FAL_IDW_Callinectes_ornatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_2006.tif
-SEUS_FAL_IDW_Callinectes_ornatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_2007.tif
-SEUS_FAL_IDW_Callinectes_ornatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_2008.tif
-SEUS_FAL_IDW_Callinectes_ornatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_2009.tif
-SEUS_FAL_IDW_Callinectes_ornatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_2010.tif
-SEUS_FAL_IDW_Callinectes_ornatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_2011.tif
-SEUS_FAL_IDW_Callinectes_ornatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_2012.tif
-SEUS_FAL_IDW_Callinectes_ornatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_2013.tif
-SEUS_FAL_IDW_Callinectes_ornatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_2014.tif
-SEUS_FAL_IDW_Callinectes_ornatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_2015.tif
-SEUS_FAL_IDW_Callinectes_ornatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_2016.tif
-SEUS_FAL_IDW_Callinectes_ornatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes ornatus\SEUS_FAL_IDW_Callinectes_ornatus_2017.tif
-SEUS_FAL_IDW_Callinectes_similis_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_1989.tif
-SEUS_FAL_IDW_Callinectes_similis_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_1990.tif
-SEUS_FAL_IDW_Callinectes_similis_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_1991.tif
-SEUS_FAL_IDW_Callinectes_similis_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_1992.tif
-SEUS_FAL_IDW_Callinectes_similis_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_1993.tif
-SEUS_FAL_IDW_Callinectes_similis_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_1994.tif
-SEUS_FAL_IDW_Callinectes_similis_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_1995.tif
-SEUS_FAL_IDW_Callinectes_similis_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_1996.tif
-SEUS_FAL_IDW_Callinectes_similis_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_1997.tif
-SEUS_FAL_IDW_Callinectes_similis_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_1998.tif
-SEUS_FAL_IDW_Callinectes_similis_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_1999.tif
-SEUS_FAL_IDW_Callinectes_similis_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2000.tif
-SEUS_FAL_IDW_Callinectes_similis_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2001.tif
-SEUS_FAL_IDW_Callinectes_similis_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2002.tif
-SEUS_FAL_IDW_Callinectes_similis_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2003.tif
-SEUS_FAL_IDW_Callinectes_similis_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2004.tif
-SEUS_FAL_IDW_Callinectes_similis_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2005.tif
-SEUS_FAL_IDW_Callinectes_similis_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2006.tif
-SEUS_FAL_IDW_Callinectes_similis_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2007.tif
-SEUS_FAL_IDW_Callinectes_similis_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2008.tif
-SEUS_FAL_IDW_Callinectes_similis_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2009.tif
-SEUS_FAL_IDW_Callinectes_similis_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2010.tif
-SEUS_FAL_IDW_Callinectes_similis_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2011.tif
-SEUS_FAL_IDW_Callinectes_similis_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2012.tif
-SEUS_FAL_IDW_Callinectes_similis_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2013.tif
-SEUS_FAL_IDW_Callinectes_similis_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2014.tif
-SEUS_FAL_IDW_Callinectes_similis_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2015.tif
-SEUS_FAL_IDW_Callinectes_similis_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2016.tif
-SEUS_FAL_IDW_Callinectes_similis_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2017.tif
-SEUS_FAL_IDW_Caranx_crysos_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_1989.tif
-SEUS_FAL_IDW_Caranx_crysos_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_1990.tif
-SEUS_FAL_IDW_Caranx_crysos_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_1991.tif
-SEUS_FAL_IDW_Caranx_crysos_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_1992.tif
-SEUS_FAL_IDW_Caranx_crysos_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_1993.tif
-SEUS_FAL_IDW_Caranx_crysos_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_1994.tif
-SEUS_FAL_IDW_Caranx_crysos_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_1995.tif
-SEUS_FAL_IDW_Caranx_crysos_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_1996.tif
-SEUS_FAL_IDW_Caranx_crysos_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_1997.tif
-SEUS_FAL_IDW_Caranx_crysos_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_1998.tif
-SEUS_FAL_IDW_Caranx_crysos_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_1999.tif
-SEUS_FAL_IDW_Caranx_crysos_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2000.tif
-SEUS_FAL_IDW_Caranx_crysos_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2001.tif
-SEUS_FAL_IDW_Caranx_crysos_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2002.tif
-SEUS_FAL_IDW_Caranx_crysos_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2003.tif
-SEUS_FAL_IDW_Caranx_crysos_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2004.tif
-SEUS_FAL_IDW_Caranx_crysos_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2005.tif
-SEUS_FAL_IDW_Caranx_crysos_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2006.tif
-SEUS_FAL_IDW_Caranx_crysos_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2007.tif
-SEUS_FAL_IDW_Caranx_crysos_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2008.tif
-SEUS_FAL_IDW_Caranx_crysos_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2009.tif
-SEUS_FAL_IDW_Caranx_crysos_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2010.tif
-SEUS_FAL_IDW_Caranx_crysos_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2011.tif
-SEUS_FAL_IDW_Caranx_crysos_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2012.tif
-SEUS_FAL_IDW_Caranx_crysos_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2013.tif
-SEUS_FAL_IDW_Caranx_crysos_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2014.tif
-SEUS_FAL_IDW_Caranx_crysos_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2015.tif
-SEUS_FAL_IDW_Caranx_crysos_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2016.tif
-SEUS_FAL_IDW_Caranx_crysos_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2017.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_1989.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:40:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_1990.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_1991.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_1992.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_1993.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_1994.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_1995.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_1996.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_1997.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_1998.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_1999.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2000.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2001.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2002.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2003.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2004.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2005.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2006.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2007.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2008.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2009.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2010.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2011.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2012.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2013.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2014.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2015.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2016.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2017.tif
-SEUS_FAL_IDW_Centropristis_striata_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_1989.tif
-SEUS_FAL_IDW_Centropristis_striata_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_1990.tif
-SEUS_FAL_IDW_Centropristis_striata_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_1991.tif
-SEUS_FAL_IDW_Centropristis_striata_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_1992.tif
-SEUS_FAL_IDW_Centropristis_striata_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_1993.tif
-SEUS_FAL_IDW_Centropristis_striata_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_1994.tif
-SEUS_FAL_IDW_Centropristis_striata_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_1995.tif
-SEUS_FAL_IDW_Centropristis_striata_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_1996.tif
-SEUS_FAL_IDW_Centropristis_striata_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_1997.tif
-SEUS_FAL_IDW_Centropristis_striata_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_1998.tif
-SEUS_FAL_IDW_Centropristis_striata_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_1999.tif
-SEUS_FAL_IDW_Centropristis_striata_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2000.tif
-SEUS_FAL_IDW_Centropristis_striata_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2001.tif
-SEUS_FAL_IDW_Centropristis_striata_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2002.tif
-SEUS_FAL_IDW_Centropristis_striata_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2003.tif
-SEUS_FAL_IDW_Centropristis_striata_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2004.tif
-SEUS_FAL_IDW_Centropristis_striata_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2005.tif
-SEUS_FAL_IDW_Centropristis_striata_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2006.tif
-SEUS_FAL_IDW_Centropristis_striata_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2007.tif
-SEUS_FAL_IDW_Centropristis_striata_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2008.tif
-SEUS_FAL_IDW_Centropristis_striata_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2009.tif
-SEUS_FAL_IDW_Centropristis_striata_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2010.tif
-SEUS_FAL_IDW_Centropristis_striata_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2011.tif
-SEUS_FAL_IDW_Centropristis_striata_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2012.tif
-SEUS_FAL_IDW_Centropristis_striata_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2013.tif
-SEUS_FAL_IDW_Centropristis_striata_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2014.tif
-SEUS_FAL_IDW_Centropristis_striata_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2015.tif
-SEUS_FAL_IDW_Centropristis_striata_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2016.tif
-SEUS_FAL_IDW_Centropristis_striata_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2017.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_1989.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_1990.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_1991.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_1992.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_1993.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_1994.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_1995.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_1996.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_1997.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_1998.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_1999.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2000.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2001.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2002.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2003.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2004.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2005.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2006.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2007.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2008.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2009.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2010.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2011.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2012.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2013.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2014.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2015.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2016.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2017.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_1989.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_1990.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_1991.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_1992.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_1993.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_1994.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_1995.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_1996.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_1997.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_1998.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_1999.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2000.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2001.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2002.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2003.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2004.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2005.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2006.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2007.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2008.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2009.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2010.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2011.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2012.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2013.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2014.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2015.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2016.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2017.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_1989.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_1990.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_1991.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_1992.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_1993.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_1994.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_1995.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_1996.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_1997.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_1998.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_1999.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2000.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2001.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2002.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2003.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2004.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2005.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2006.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2007.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2008.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2009.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2010.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2011.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2012.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2013.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2014.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2015.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2016.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2017.tif
-SEUS_FAL_IDW_Citharichthys_macrops_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_1989.tif
-SEUS_FAL_IDW_Citharichthys_macrops_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_1990.tif
-SEUS_FAL_IDW_Citharichthys_macrops_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_1991.tif
-SEUS_FAL_IDW_Citharichthys_macrops_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_1992.tif
-SEUS_FAL_IDW_Citharichthys_macrops_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_1993.tif
-SEUS_FAL_IDW_Citharichthys_macrops_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_1994.tif
-SEUS_FAL_IDW_Citharichthys_macrops_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_1995.tif
-SEUS_FAL_IDW_Citharichthys_macrops_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_1996.tif
-SEUS_FAL_IDW_Citharichthys_macrops_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_1997.tif
-SEUS_FAL_IDW_Citharichthys_macrops_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_1998.tif
-SEUS_FAL_IDW_Citharichthys_macrops_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_1999.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2000.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2001.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2002.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2003.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2004.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2005.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2006.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2007.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2008.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2009.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2010.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2011.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2012.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2013.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2014.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2015.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2016.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2017.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_1989.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_1990.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_1991.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_1992.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_1993.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_1994.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_1995.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_1996.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_1997.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_1998.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_1999.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2000.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2001.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2002.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2003.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2004.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2005.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2006.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2007.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2008.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2009.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2010.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2011.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2012.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2013.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2014.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2015.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2016.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2017.tif
-SEUS_FAL_IDW_Cynoscion_nothus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_1989.tif
-SEUS_FAL_IDW_Cynoscion_nothus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_1990.tif
-SEUS_FAL_IDW_Cynoscion_nothus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_1991.tif
-SEUS_FAL_IDW_Cynoscion_nothus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_1992.tif
-SEUS_FAL_IDW_Cynoscion_nothus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_1993.tif
-SEUS_FAL_IDW_Cynoscion_nothus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_1994.tif
-SEUS_FAL_IDW_Cynoscion_nothus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_1995.tif
-SEUS_FAL_IDW_Cynoscion_nothus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:41:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_1996.tif
-SEUS_FAL_IDW_Cynoscion_nothus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_1997.tif
-SEUS_FAL_IDW_Cynoscion_nothus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_1998.tif
-SEUS_FAL_IDW_Cynoscion_nothus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_1999.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2000.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2001.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2002.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2003.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2004.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2005.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2006.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2007.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2008.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2009.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2010.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2011.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2012.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2013.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2014.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2015.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2016.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2017.tif
-SEUS_FAL_IDW_Cynoscion_regalis_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_1989.tif
-SEUS_FAL_IDW_Cynoscion_regalis_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_1990.tif
-SEUS_FAL_IDW_Cynoscion_regalis_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_1991.tif
-SEUS_FAL_IDW_Cynoscion_regalis_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_1992.tif
-SEUS_FAL_IDW_Cynoscion_regalis_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_1993.tif
-SEUS_FAL_IDW_Cynoscion_regalis_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_1994.tif
-SEUS_FAL_IDW_Cynoscion_regalis_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_1995.tif
-SEUS_FAL_IDW_Cynoscion_regalis_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_1996.tif
-SEUS_FAL_IDW_Cynoscion_regalis_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_1997.tif
-SEUS_FAL_IDW_Cynoscion_regalis_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_1998.tif
-SEUS_FAL_IDW_Cynoscion_regalis_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_1999.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2000.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2001.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2002.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2003.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2004.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2005.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2006.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2007.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2008.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2009.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2010.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2011.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2012.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2013.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2014.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2015.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2016.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2017.tif
-SEUS_FAL_IDW_Etropus_crossotus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_1989.tif
-SEUS_FAL_IDW_Etropus_crossotus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_1990.tif
-SEUS_FAL_IDW_Etropus_crossotus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_1991.tif
-SEUS_FAL_IDW_Etropus_crossotus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_1992.tif
-SEUS_FAL_IDW_Etropus_crossotus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_1993.tif
-SEUS_FAL_IDW_Etropus_crossotus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_1994.tif
-SEUS_FAL_IDW_Etropus_crossotus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_1995.tif
-SEUS_FAL_IDW_Etropus_crossotus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_1996.tif
-SEUS_FAL_IDW_Etropus_crossotus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_1997.tif
-SEUS_FAL_IDW_Etropus_crossotus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_1998.tif
-SEUS_FAL_IDW_Etropus_crossotus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_1999.tif
-SEUS_FAL_IDW_Etropus_crossotus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2000.tif
-SEUS_FAL_IDW_Etropus_crossotus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2001.tif
-SEUS_FAL_IDW_Etropus_crossotus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2002.tif
-SEUS_FAL_IDW_Etropus_crossotus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2003.tif
-SEUS_FAL_IDW_Etropus_crossotus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2004.tif
-SEUS_FAL_IDW_Etropus_crossotus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2005.tif
-SEUS_FAL_IDW_Etropus_crossotus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2006.tif
-SEUS_FAL_IDW_Etropus_crossotus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2007.tif
-SEUS_FAL_IDW_Etropus_crossotus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2008.tif
-SEUS_FAL_IDW_Etropus_crossotus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2009.tif
-SEUS_FAL_IDW_Etropus_crossotus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2010.tif
-SEUS_FAL_IDW_Etropus_crossotus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2011.tif
-SEUS_FAL_IDW_Etropus_crossotus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2012.tif
-SEUS_FAL_IDW_Etropus_crossotus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2013.tif
-SEUS_FAL_IDW_Etropus_crossotus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2014.tif
-SEUS_FAL_IDW_Etropus_crossotus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2015.tif
-SEUS_FAL_IDW_Etropus_crossotus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2016.tif
-SEUS_FAL_IDW_Etropus_crossotus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2017.tif
-SEUS_FAL_IDW_Eucinostomus_spp_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_1989.tif
-SEUS_FAL_IDW_Eucinostomus_spp_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_1990.tif
-SEUS_FAL_IDW_Eucinostomus_spp_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_1991.tif
-SEUS_FAL_IDW_Eucinostomus_spp_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_1992.tif
-SEUS_FAL_IDW_Eucinostomus_spp_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_1993.tif
-SEUS_FAL_IDW_Eucinostomus_spp_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_1994.tif
-SEUS_FAL_IDW_Eucinostomus_spp_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_1995.tif
-SEUS_FAL_IDW_Eucinostomus_spp_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_1996.tif
-SEUS_FAL_IDW_Eucinostomus_spp_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_1997.tif
-SEUS_FAL_IDW_Eucinostomus_spp_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_1998.tif
-SEUS_FAL_IDW_Eucinostomus_spp_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_1999.tif
-SEUS_FAL_IDW_Eucinostomus_spp_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_2000.tif
-SEUS_FAL_IDW_Eucinostomus_spp_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_2001.tif
-SEUS_FAL_IDW_Eucinostomus_spp_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_2002.tif
-SEUS_FAL_IDW_Eucinostomus_spp_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_2003.tif
-SEUS_FAL_IDW_Eucinostomus_spp_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_2004.tif
-SEUS_FAL_IDW_Eucinostomus_spp_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_2005.tif
-SEUS_FAL_IDW_Eucinostomus_spp_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_2006.tif
-SEUS_FAL_IDW_Eucinostomus_spp_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_2007.tif
-SEUS_FAL_IDW_Eucinostomus_spp_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_2008.tif
-SEUS_FAL_IDW_Eucinostomus_spp_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_2009.tif
-SEUS_FAL_IDW_Eucinostomus_spp_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_2010.tif
-SEUS_FAL_IDW_Eucinostomus_spp_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_2011.tif
-SEUS_FAL_IDW_Eucinostomus_spp_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_2012.tif
-SEUS_FAL_IDW_Eucinostomus_spp_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_2013.tif
-SEUS_FAL_IDW_Eucinostomus_spp_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_2014.tif
-SEUS_FAL_IDW_Eucinostomus_spp_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_2015.tif
-SEUS_FAL_IDW_Eucinostomus_spp_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_2016.tif
-SEUS_FAL_IDW_Eucinostomus_spp_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Eucinostomus spp\SEUS_FAL_IDW_Eucinostomus_spp_2017.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_1989.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_1990.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_1991.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_1992.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_1993.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_1994.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_1995.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_1996.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_1997.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_1998.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_1999.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2000.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2001.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2002.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2003.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2004.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2005.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2006.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2007.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2008.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2009.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2010.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2011.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2012.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2013.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2014.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2015.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2016.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2017.tif
-SEUS_FAL_IDW_Gymnura_micrura_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_1989.tif
-SEUS_FAL_IDW_Gymnura_micrura_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_1990.tif
-SEUS_FAL_IDW_Gymnura_micrura_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_1991.tif
-SEUS_FAL_IDW_Gymnura_micrura_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_1992.tif
-SEUS_FAL_IDW_Gymnura_micrura_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_1993.tif
-SEUS_FAL_IDW_Gymnura_micrura_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_1994.tif
-SEUS_FAL_IDW_Gymnura_micrura_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_1995.tif
-SEUS_FAL_IDW_Gymnura_micrura_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_1996.tif
-SEUS_FAL_IDW_Gymnura_micrura_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_1997.tif
-SEUS_FAL_IDW_Gymnura_micrura_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_1998.tif
-SEUS_FAL_IDW_Gymnura_micrura_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_1999.tif
-SEUS_FAL_IDW_Gymnura_micrura_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2000.tif
-SEUS_FAL_IDW_Gymnura_micrura_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2001.tif
-SEUS_FAL_IDW_Gymnura_micrura_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2002.tif
-SEUS_FAL_IDW_Gymnura_micrura_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2003.tif
-SEUS_FAL_IDW_Gymnura_micrura_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2004.tif
-SEUS_FAL_IDW_Gymnura_micrura_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2005.tif
-SEUS_FAL_IDW_Gymnura_micrura_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2006.tif
-SEUS_FAL_IDW_Gymnura_micrura_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2007.tif
-SEUS_FAL_IDW_Gymnura_micrura_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2008.tif
-SEUS_FAL_IDW_Gymnura_micrura_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2009.tif
-SEUS_FAL_IDW_Gymnura_micrura_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2010.tif
-SEUS_FAL_IDW_Gymnura_micrura_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2011.tif
-SEUS_FAL_IDW_Gymnura_micrura_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2012.tif
-SEUS_FAL_IDW_Gymnura_micrura_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2013.tif
-SEUS_FAL_IDW_Gymnura_micrura_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2014.tif
-SEUS_FAL_IDW_Gymnura_micrura_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2015.tif
-SEUS_FAL_IDW_Gymnura_micrura_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2016.tif
-SEUS_FAL_IDW_Gymnura_micrura_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2017.tif
-SEUS_FAL_IDW_Hypanus_americanus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_1989.tif
-SEUS_FAL_IDW_Hypanus_americanus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_1990.tif
-SEUS_FAL_IDW_Hypanus_americanus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_1991.tif
-SEUS_FAL_IDW_Hypanus_americanus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_1992.tif
-SEUS_FAL_IDW_Hypanus_americanus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_1993.tif
-SEUS_FAL_IDW_Hypanus_americanus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_1994.tif
-SEUS_FAL_IDW_Hypanus_americanus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_1995.tif
-SEUS_FAL_IDW_Hypanus_americanus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_1996.tif
-SEUS_FAL_IDW_Hypanus_americanus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_1997.tif
-SEUS_FAL_IDW_Hypanus_americanus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_1998.tif
-SEUS_FAL_IDW_Hypanus_americanus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_1999.tif
-SEUS_FAL_IDW_Hypanus_americanus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_2000.tif
-SEUS_FAL_IDW_Hypanus_americanus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_2001.tif
-SEUS_FAL_IDW_Hypanus_americanus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_2002.tif
-SEUS_FAL_IDW_Hypanus_americanus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_2003.tif
-SEUS_FAL_IDW_Hypanus_americanus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_2004.tif
-SEUS_FAL_IDW_Hypanus_americanus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_2005.tif
-SEUS_FAL_IDW_Hypanus_americanus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_2006.tif
-SEUS_FAL_IDW_Hypanus_americanus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_2007.tif
-SEUS_FAL_IDW_Hypanus_americanus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_2008.tif
-SEUS_FAL_IDW_Hypanus_americanus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_2009.tif
-SEUS_FAL_IDW_Hypanus_americanus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_2010.tif
-SEUS_FAL_IDW_Hypanus_americanus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_2011.tif
-SEUS_FAL_IDW_Hypanus_americanus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_2012.tif
-SEUS_FAL_IDW_Hypanus_americanus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_2013.tif
-SEUS_FAL_IDW_Hypanus_americanus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_2014.tif
-SEUS_FAL_IDW_Hypanus_americanus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_2015.tif
-SEUS_FAL_IDW_Hypanus_americanus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_2016.tif
-SEUS_FAL_IDW_Hypanus_americanus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus americanus\SEUS_FAL_IDW_Hypanus_americanus_2017.tif
-SEUS_FAL_IDW_Hypanus_sabinus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_1989.tif
-SEUS_FAL_IDW_Hypanus_sabinus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_1990.tif
-SEUS_FAL_IDW_Hypanus_sabinus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_1991.tif
-SEUS_FAL_IDW_Hypanus_sabinus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_1992.tif
-SEUS_FAL_IDW_Hypanus_sabinus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_1993.tif
-SEUS_FAL_IDW_Hypanus_sabinus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_1994.tif
-SEUS_FAL_IDW_Hypanus_sabinus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_1995.tif
-SEUS_FAL_IDW_Hypanus_sabinus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_1996.tif
-SEUS_FAL_IDW_Hypanus_sabinus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_1997.tif
-SEUS_FAL_IDW_Hypanus_sabinus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_1998.tif
-SEUS_FAL_IDW_Hypanus_sabinus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_1999.tif
-SEUS_FAL_IDW_Hypanus_sabinus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_2000.tif
-SEUS_FAL_IDW_Hypanus_sabinus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_2001.tif
-SEUS_FAL_IDW_Hypanus_sabinus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_2002.tif
-SEUS_FAL_IDW_Hypanus_sabinus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_2003.tif
-SEUS_FAL_IDW_Hypanus_sabinus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_2004.tif
-SEUS_FAL_IDW_Hypanus_sabinus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_2005.tif
-SEUS_FAL_IDW_Hypanus_sabinus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_2006.tif
-SEUS_FAL_IDW_Hypanus_sabinus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_2007.tif
-SEUS_FAL_IDW_Hypanus_sabinus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_2008.tif
-SEUS_FAL_IDW_Hypanus_sabinus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_2009.tif
-SEUS_FAL_IDW_Hypanus_sabinus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_2010.tif
-SEUS_FAL_IDW_Hypanus_sabinus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_2011.tif
-SEUS_FAL_IDW_Hypanus_sabinus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_2012.tif
-SEUS_FAL_IDW_Hypanus_sabinus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_2013.tif
-SEUS_FAL_IDW_Hypanus_sabinus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_2014.tif
-SEUS_FAL_IDW_Hypanus_sabinus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_2015.tif
-SEUS_FAL_IDW_Hypanus_sabinus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_2016.tif
-SEUS_FAL_IDW_Hypanus_sabinus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus sabinus\SEUS_FAL_IDW_Hypanus_sabinus_2017.tif
-SEUS_FAL_IDW_Hypanus_say_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_1989.tif
-SEUS_FAL_IDW_Hypanus_say_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_1990.tif
-SEUS_FAL_IDW_Hypanus_say_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_1991.tif
-SEUS_FAL_IDW_Hypanus_say_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_1992.tif
-SEUS_FAL_IDW_Hypanus_say_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_1993.tif
-SEUS_FAL_IDW_Hypanus_say_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_1994.tif
-SEUS_FAL_IDW_Hypanus_say_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_1995.tif
-SEUS_FAL_IDW_Hypanus_say_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_1996.tif
-SEUS_FAL_IDW_Hypanus_say_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_1997.tif
-SEUS_FAL_IDW_Hypanus_say_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_1998.tif
-SEUS_FAL_IDW_Hypanus_say_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_1999.tif
-SEUS_FAL_IDW_Hypanus_say_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_2000.tif
-SEUS_FAL_IDW_Hypanus_say_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_2001.tif
-SEUS_FAL_IDW_Hypanus_say_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_2002.tif
-SEUS_FAL_IDW_Hypanus_say_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_2003.tif
-SEUS_FAL_IDW_Hypanus_say_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_2004.tif
-SEUS_FAL_IDW_Hypanus_say_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_2005.tif
-SEUS_FAL_IDW_Hypanus_say_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_2006.tif
-SEUS_FAL_IDW_Hypanus_say_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_2007.tif
-SEUS_FAL_IDW_Hypanus_say_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_2008.tif
-SEUS_FAL_IDW_Hypanus_say_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_2009.tif
-SEUS_FAL_IDW_Hypanus_say_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_2010.tif
-SEUS_FAL_IDW_Hypanus_say_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_2011.tif
-SEUS_FAL_IDW_Hypanus_say_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_2012.tif
-SEUS_FAL_IDW_Hypanus_say_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_2013.tif
-SEUS_FAL_IDW_Hypanus_say_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_2014.tif
-SEUS_FAL_IDW_Hypanus_say_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_2015.tif
-SEUS_FAL_IDW_Hypanus_say_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_2016.tif
-SEUS_FAL_IDW_Hypanus_say_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Hypanus say\SEUS_FAL_IDW_Hypanus_say_2017.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_1989.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_1990.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_1991.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_1992.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_1993.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_1994.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_1995.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_1996.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_1997.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_1998.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_1999.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:42:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2000.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2001.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2002.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2003.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2004.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2005.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2006.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2007.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2008.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2009.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2010.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2011.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2012.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2013.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2014.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2015.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2016.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2017.tif
-SEUS_FAL_IDW_Larimus_fasciatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_1989.tif
-SEUS_FAL_IDW_Larimus_fasciatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_1990.tif
-SEUS_FAL_IDW_Larimus_fasciatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_1991.tif
-SEUS_FAL_IDW_Larimus_fasciatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_1992.tif
-SEUS_FAL_IDW_Larimus_fasciatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_1993.tif
-SEUS_FAL_IDW_Larimus_fasciatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_1994.tif
-SEUS_FAL_IDW_Larimus_fasciatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_1995.tif
-SEUS_FAL_IDW_Larimus_fasciatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_1996.tif
-SEUS_FAL_IDW_Larimus_fasciatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_1997.tif
-SEUS_FAL_IDW_Larimus_fasciatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_1998.tif
-SEUS_FAL_IDW_Larimus_fasciatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_1999.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2000.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2001.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2002.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2003.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2004.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2005.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2006.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2007.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2008.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2009.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2010.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2011.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2012.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2013.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2014.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2015.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2016.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2017.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_1989.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_1990.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_1991.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_1992.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_1993.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_1994.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_1995.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_1996.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_1997.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_1998.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_1999.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2000.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2001.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2002.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2003.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2004.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2005.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2006.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2007.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2008.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2009.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2010.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2011.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2012.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2013.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2014.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2015.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2016.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2017.tif
-SEUS_FAL_IDW_Loligo_spp_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_1989.tif
-SEUS_FAL_IDW_Loligo_spp_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_1990.tif
-SEUS_FAL_IDW_Loligo_spp_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_1991.tif
-SEUS_FAL_IDW_Loligo_spp_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_1992.tif
-SEUS_FAL_IDW_Loligo_spp_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_1993.tif
-SEUS_FAL_IDW_Loligo_spp_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_1994.tif
-SEUS_FAL_IDW_Loligo_spp_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_1995.tif
-SEUS_FAL_IDW_Loligo_spp_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_1996.tif
-SEUS_FAL_IDW_Loligo_spp_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_1997.tif
-SEUS_FAL_IDW_Loligo_spp_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_1998.tif
-SEUS_FAL_IDW_Loligo_spp_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_1999.tif
-SEUS_FAL_IDW_Loligo_spp_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_2000.tif
-SEUS_FAL_IDW_Loligo_spp_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_2001.tif
-SEUS_FAL_IDW_Loligo_spp_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_2002.tif
-SEUS_FAL_IDW_Loligo_spp_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_2003.tif
-SEUS_FAL_IDW_Loligo_spp_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_2004.tif
-SEUS_FAL_IDW_Loligo_spp_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_2005.tif
-SEUS_FAL_IDW_Loligo_spp_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_2006.tif
-SEUS_FAL_IDW_Loligo_spp_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_2007.tif
-SEUS_FAL_IDW_Loligo_spp_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_2008.tif
-SEUS_FAL_IDW_Loligo_spp_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_2009.tif
-SEUS_FAL_IDW_Loligo_spp_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_2010.tif
-SEUS_FAL_IDW_Loligo_spp_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_2011.tif
-SEUS_FAL_IDW_Loligo_spp_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_2012.tif
-SEUS_FAL_IDW_Loligo_spp_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_2013.tif
-SEUS_FAL_IDW_Loligo_spp_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_2014.tif
-SEUS_FAL_IDW_Loligo_spp_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_2015.tif
-SEUS_FAL_IDW_Loligo_spp_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_2016.tif
-SEUS_FAL_IDW_Loligo_spp_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Loligo spp\SEUS_FAL_IDW_Loligo_spp_2017.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_1989.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_1990.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_1991.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_1992.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_1993.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_1994.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_1995.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_1996.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_1997.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_1998.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_1999.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2000.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2001.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2002.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2003.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2004.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2005.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2006.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2007.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2008.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2009.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2010.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2011.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2012.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2013.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2014.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2015.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2016.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2017.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_1989.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_1990.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_1991.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_1992.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_1993.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_1994.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_1995.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_1996.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_1997.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_1998.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_1999.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2000.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2001.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2002.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2003.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2004.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2005.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2006.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2007.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2008.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2009.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2010.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2011.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2012.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2013.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2014.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2015.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2016.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2017.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_1989.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_1990.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_1991.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_1992.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_1993.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_1994.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_1995.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_1996.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_1997.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_1998.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_1999.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2000.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2001.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2002.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2003.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2004.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2005.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2006.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2007.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2008.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2009.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2010.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2011.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2012.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2013.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2014.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2015.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2016.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2017.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_1989.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_1990.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_1991.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_1992.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_1993.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_1994.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_1995.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_1996.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_1997.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_1998.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_1999.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2000.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2001.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2002.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2003.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2004.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2005.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2006.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2007.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2008.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2009.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2010.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2011.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2012.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2013.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2014.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2015.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2016.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2017.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_1989.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_1990.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_1991.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_1992.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_1993.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_1994.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_1995.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_1996.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_1997.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_1998.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_1999.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_2000.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_2001.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_2002.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_2003.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_2004.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_2005.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_2006.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_2007.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_2008.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_2009.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_2010.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_2011.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_2012.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_2013.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_2014.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_2015.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_2016.tif
-SEUS_FAL_IDW_Myliobatis_freminvillei_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Myliobatis freminvillei\SEUS_FAL_IDW_Myliobatis_freminvillei_2017.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_1989.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_1990.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_1991.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_1992.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_1993.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_1994.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_1995.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_1996.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_1997.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_1998.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_1999.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2000.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2001.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2002.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2003.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2004.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2005.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:43:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2006.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2007.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2008.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2009.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2010.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2011.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2012.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2013.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2014.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2015.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2016.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2017.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_1989.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_1990.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_1991.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_1992.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_1993.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_1994.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_1995.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_1996.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_1997.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_1998.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_1999.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2000.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2001.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2002.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2003.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2004.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2005.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2006.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2007.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2008.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2009.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2010.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2011.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2012.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2013.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2014.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2015.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2016.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2017.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_1989.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_1990.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_1991.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_1992.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_1993.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_1994.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_1995.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_1996.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_1997.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_1998.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_1999.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2000.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2001.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2002.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2003.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2004.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2005.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2006.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2007.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2008.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2009.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2010.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2011.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2012.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2013.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2014.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2015.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2016.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2017.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_1989.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_1990.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_1991.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_1992.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_1993.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_1994.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_1995.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_1996.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_1997.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_1998.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_1999.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2000.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2001.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2002.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2003.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2004.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2005.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2006.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2007.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2008.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2009.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2010.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2011.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2012.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2013.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2014.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2015.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2016.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2017.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_1989.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_1990.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_1991.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_1992.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_1993.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_1994.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_1995.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_1996.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_1997.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_1998.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_1999.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2000.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2001.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2002.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2003.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2004.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2005.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2006.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2007.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2008.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2009.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2010.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2011.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2012.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2013.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2014.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2015.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2016.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2017.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_1989.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_1990.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_1991.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_1992.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_1993.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_1994.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_1995.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_1996.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_1997.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_1998.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_1999.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2000.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2001.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2002.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2003.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2004.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2005.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2006.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2007.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2008.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2009.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2010.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2011.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2012.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2013.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2014.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2015.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2016.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2017.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_1989.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_1990.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_1991.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_1992.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_1993.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_1994.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_1995.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_1996.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_1997.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_1998.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_1999.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2000.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2001.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2002.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2003.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2004.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2005.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2006.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2007.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2008.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2009.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2010.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2011.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2012.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2013.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2014.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2015.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2016.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2017.tif
-SEUS_FAL_IDW_Penaeus_aztecus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_1989.tif
-SEUS_FAL_IDW_Penaeus_aztecus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_1990.tif
-SEUS_FAL_IDW_Penaeus_aztecus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_1991.tif
-SEUS_FAL_IDW_Penaeus_aztecus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_1992.tif
-SEUS_FAL_IDW_Penaeus_aztecus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_1993.tif
-SEUS_FAL_IDW_Penaeus_aztecus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_1994.tif
-SEUS_FAL_IDW_Penaeus_aztecus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_1995.tif
-SEUS_FAL_IDW_Penaeus_aztecus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_1996.tif
-SEUS_FAL_IDW_Penaeus_aztecus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_1997.tif
-SEUS_FAL_IDW_Penaeus_aztecus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_1998.tif
-SEUS_FAL_IDW_Penaeus_aztecus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_1999.tif
-SEUS_FAL_IDW_Penaeus_aztecus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_2000.tif
-SEUS_FAL_IDW_Penaeus_aztecus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_2001.tif
-SEUS_FAL_IDW_Penaeus_aztecus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_2002.tif
-SEUS_FAL_IDW_Penaeus_aztecus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_2003.tif
-SEUS_FAL_IDW_Penaeus_aztecus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_2004.tif
-SEUS_FAL_IDW_Penaeus_aztecus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_2005.tif
-SEUS_FAL_IDW_Penaeus_aztecus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_2006.tif
-SEUS_FAL_IDW_Penaeus_aztecus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_2007.tif
-SEUS_FAL_IDW_Penaeus_aztecus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_2008.tif
-SEUS_FAL_IDW_Penaeus_aztecus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_2009.tif
-SEUS_FAL_IDW_Penaeus_aztecus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_2010.tif
-SEUS_FAL_IDW_Penaeus_aztecus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_2011.tif
-SEUS_FAL_IDW_Penaeus_aztecus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_2012.tif
-SEUS_FAL_IDW_Penaeus_aztecus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_2013.tif
-SEUS_FAL_IDW_Penaeus_aztecus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_2014.tif
-SEUS_FAL_IDW_Penaeus_aztecus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_2015.tif
-SEUS_FAL_IDW_Penaeus_aztecus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_2016.tif
-SEUS_FAL_IDW_Penaeus_aztecus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus aztecus\SEUS_FAL_IDW_Penaeus_aztecus_2017.tif
-SEUS_FAL_IDW_Penaeus_setiferus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_1989.tif
-SEUS_FAL_IDW_Penaeus_setiferus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_1990.tif
-SEUS_FAL_IDW_Penaeus_setiferus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_1991.tif
-SEUS_FAL_IDW_Penaeus_setiferus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_1992.tif
-SEUS_FAL_IDW_Penaeus_setiferus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_1993.tif
-SEUS_FAL_IDW_Penaeus_setiferus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_1994.tif
-SEUS_FAL_IDW_Penaeus_setiferus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_1995.tif
-SEUS_FAL_IDW_Penaeus_setiferus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_1996.tif
-SEUS_FAL_IDW_Penaeus_setiferus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_1997.tif
-SEUS_FAL_IDW_Penaeus_setiferus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_1998.tif
-SEUS_FAL_IDW_Penaeus_setiferus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_1999.tif
-SEUS_FAL_IDW_Penaeus_setiferus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_2000.tif
-SEUS_FAL_IDW_Penaeus_setiferus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_2001.tif
-SEUS_FAL_IDW_Penaeus_setiferus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_2002.tif
-SEUS_FAL_IDW_Penaeus_setiferus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_2003.tif
-SEUS_FAL_IDW_Penaeus_setiferus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_2004.tif
-SEUS_FAL_IDW_Penaeus_setiferus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_2005.tif
-SEUS_FAL_IDW_Penaeus_setiferus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_2006.tif
-SEUS_FAL_IDW_Penaeus_setiferus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_2007.tif
-SEUS_FAL_IDW_Penaeus_setiferus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_2008.tif
-SEUS_FAL_IDW_Penaeus_setiferus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_2009.tif
-SEUS_FAL_IDW_Penaeus_setiferus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_2010.tif
-SEUS_FAL_IDW_Penaeus_setiferus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_2011.tif
-SEUS_FAL_IDW_Penaeus_setiferus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_2012.tif
-SEUS_FAL_IDW_Penaeus_setiferus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_2013.tif
-SEUS_FAL_IDW_Penaeus_setiferus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_2014.tif
-SEUS_FAL_IDW_Penaeus_setiferus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_2015.tif
-SEUS_FAL_IDW_Penaeus_setiferus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_2016.tif
-SEUS_FAL_IDW_Penaeus_setiferus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Penaeus setiferus\SEUS_FAL_IDW_Penaeus_setiferus_2017.tif
-SEUS_FAL_IDW_Peprilus_paru_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_1989.tif
-SEUS_FAL_IDW_Peprilus_paru_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_1990.tif
-SEUS_FAL_IDW_Peprilus_paru_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:44:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_1991.tif
-SEUS_FAL_IDW_Peprilus_paru_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_1992.tif
-SEUS_FAL_IDW_Peprilus_paru_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_1993.tif
-SEUS_FAL_IDW_Peprilus_paru_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_1994.tif
-SEUS_FAL_IDW_Peprilus_paru_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_1995.tif
-SEUS_FAL_IDW_Peprilus_paru_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_1996.tif
-SEUS_FAL_IDW_Peprilus_paru_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_1997.tif
-SEUS_FAL_IDW_Peprilus_paru_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_1998.tif
-SEUS_FAL_IDW_Peprilus_paru_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_1999.tif
-SEUS_FAL_IDW_Peprilus_paru_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2000.tif
-SEUS_FAL_IDW_Peprilus_paru_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2001.tif
-SEUS_FAL_IDW_Peprilus_paru_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2002.tif
-SEUS_FAL_IDW_Peprilus_paru_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2003.tif
-SEUS_FAL_IDW_Peprilus_paru_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2004.tif
-SEUS_FAL_IDW_Peprilus_paru_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2005.tif
-SEUS_FAL_IDW_Peprilus_paru_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2006.tif
-SEUS_FAL_IDW_Peprilus_paru_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2007.tif
-SEUS_FAL_IDW_Peprilus_paru_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2008.tif
-SEUS_FAL_IDW_Peprilus_paru_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2009.tif
-SEUS_FAL_IDW_Peprilus_paru_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2010.tif
-SEUS_FAL_IDW_Peprilus_paru_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2011.tif
-SEUS_FAL_IDW_Peprilus_paru_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2012.tif
-SEUS_FAL_IDW_Peprilus_paru_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2013.tif
-SEUS_FAL_IDW_Peprilus_paru_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2014.tif
-SEUS_FAL_IDW_Peprilus_paru_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2015.tif
-SEUS_FAL_IDW_Peprilus_paru_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2016.tif
-SEUS_FAL_IDW_Peprilus_paru_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2017.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_1989.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_1990.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_1991.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_1992.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_1993.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_1994.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_1995.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_1996.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_1997.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_1998.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_1999.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2000.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2001.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2002.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2003.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2004.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2005.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2006.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2007.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2008.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2009.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2010.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2011.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2012.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2013.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2014.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2015.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2016.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2017.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_1989.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_1990.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_1991.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_1992.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_1993.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_1994.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_1995.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_1996.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_1997.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_1998.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_1999.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2000.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2001.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2002.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2003.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2004.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2005.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2006.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2007.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2008.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2009.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2010.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2011.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2012.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2013.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2014.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2015.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2016.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2017.tif
-SEUS_FAL_IDW_Prionotus_carolinus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_1989.tif
-SEUS_FAL_IDW_Prionotus_carolinus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_1990.tif
-SEUS_FAL_IDW_Prionotus_carolinus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_1991.tif
-SEUS_FAL_IDW_Prionotus_carolinus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_1992.tif
-SEUS_FAL_IDW_Prionotus_carolinus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_1993.tif
-SEUS_FAL_IDW_Prionotus_carolinus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_1994.tif
-SEUS_FAL_IDW_Prionotus_carolinus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_1995.tif
-SEUS_FAL_IDW_Prionotus_carolinus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_1996.tif
-SEUS_FAL_IDW_Prionotus_carolinus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_1997.tif
-SEUS_FAL_IDW_Prionotus_carolinus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_1998.tif
-SEUS_FAL_IDW_Prionotus_carolinus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_1999.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2000.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2001.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2002.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2003.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2004.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2005.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2006.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2007.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2008.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2009.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2010.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2011.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2012.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2013.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2014.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2015.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2016.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2017.tif
-SEUS_FAL_IDW_Prionotus_evolans_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_1989.tif
-SEUS_FAL_IDW_Prionotus_evolans_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_1990.tif
-SEUS_FAL_IDW_Prionotus_evolans_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_1991.tif
-SEUS_FAL_IDW_Prionotus_evolans_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_1992.tif
-SEUS_FAL_IDW_Prionotus_evolans_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_1993.tif
-SEUS_FAL_IDW_Prionotus_evolans_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_1994.tif
-SEUS_FAL_IDW_Prionotus_evolans_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_1995.tif
-SEUS_FAL_IDW_Prionotus_evolans_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_1996.tif
-SEUS_FAL_IDW_Prionotus_evolans_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_1997.tif
-SEUS_FAL_IDW_Prionotus_evolans_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_1998.tif
-SEUS_FAL_IDW_Prionotus_evolans_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_1999.tif
-SEUS_FAL_IDW_Prionotus_evolans_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2000.tif
-SEUS_FAL_IDW_Prionotus_evolans_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2001.tif
-SEUS_FAL_IDW_Prionotus_evolans_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2002.tif
-SEUS_FAL_IDW_Prionotus_evolans_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2003.tif
-SEUS_FAL_IDW_Prionotus_evolans_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2004.tif
-SEUS_FAL_IDW_Prionotus_evolans_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2005.tif
-SEUS_FAL_IDW_Prionotus_evolans_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2006.tif
-SEUS_FAL_IDW_Prionotus_evolans_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2007.tif
-SEUS_FAL_IDW_Prionotus_evolans_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2008.tif
-SEUS_FAL_IDW_Prionotus_evolans_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2009.tif
-SEUS_FAL_IDW_Prionotus_evolans_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2010.tif
-SEUS_FAL_IDW_Prionotus_evolans_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2011.tif
-SEUS_FAL_IDW_Prionotus_evolans_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2012.tif
-SEUS_FAL_IDW_Prionotus_evolans_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2013.tif
-SEUS_FAL_IDW_Prionotus_evolans_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2014.tif
-SEUS_FAL_IDW_Prionotus_evolans_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2015.tif
-SEUS_FAL_IDW_Prionotus_evolans_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2016.tif
-SEUS_FAL_IDW_Prionotus_evolans_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2017.tif
-SEUS_FAL_IDW_Prionotus_rubio_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_1989.tif
-SEUS_FAL_IDW_Prionotus_rubio_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_1990.tif
-SEUS_FAL_IDW_Prionotus_rubio_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_1991.tif
-SEUS_FAL_IDW_Prionotus_rubio_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_1992.tif
-SEUS_FAL_IDW_Prionotus_rubio_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_1993.tif
-SEUS_FAL_IDW_Prionotus_rubio_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_1994.tif
-SEUS_FAL_IDW_Prionotus_rubio_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_1995.tif
-SEUS_FAL_IDW_Prionotus_rubio_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_1996.tif
-SEUS_FAL_IDW_Prionotus_rubio_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_1997.tif
-SEUS_FAL_IDW_Prionotus_rubio_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_1998.tif
-SEUS_FAL_IDW_Prionotus_rubio_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_1999.tif
-SEUS_FAL_IDW_Prionotus_rubio_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2000.tif
-SEUS_FAL_IDW_Prionotus_rubio_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2001.tif
-SEUS_FAL_IDW_Prionotus_rubio_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2002.tif
-SEUS_FAL_IDW_Prionotus_rubio_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2003.tif
-SEUS_FAL_IDW_Prionotus_rubio_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2004.tif
-SEUS_FAL_IDW_Prionotus_rubio_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2005.tif
-SEUS_FAL_IDW_Prionotus_rubio_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2006.tif
-SEUS_FAL_IDW_Prionotus_rubio_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2007.tif
-SEUS_FAL_IDW_Prionotus_rubio_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2008.tif
-SEUS_FAL_IDW_Prionotus_rubio_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2009.tif
-SEUS_FAL_IDW_Prionotus_rubio_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2010.tif
-SEUS_FAL_IDW_Prionotus_rubio_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2011.tif
-SEUS_FAL_IDW_Prionotus_rubio_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2012.tif
-SEUS_FAL_IDW_Prionotus_rubio_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2013.tif
-SEUS_FAL_IDW_Prionotus_rubio_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2014.tif
-SEUS_FAL_IDW_Prionotus_rubio_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2015.tif
-SEUS_FAL_IDW_Prionotus_rubio_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2016.tif
-SEUS_FAL_IDW_Prionotus_rubio_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2017.tif
-SEUS_FAL_IDW_Prionotus_scitulus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_1989.tif
-SEUS_FAL_IDW_Prionotus_scitulus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_1990.tif
-SEUS_FAL_IDW_Prionotus_scitulus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_1991.tif
-SEUS_FAL_IDW_Prionotus_scitulus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_1992.tif
-SEUS_FAL_IDW_Prionotus_scitulus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_1993.tif
-SEUS_FAL_IDW_Prionotus_scitulus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_1994.tif
-SEUS_FAL_IDW_Prionotus_scitulus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_1995.tif
-SEUS_FAL_IDW_Prionotus_scitulus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_1996.tif
-SEUS_FAL_IDW_Prionotus_scitulus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_1997.tif
-SEUS_FAL_IDW_Prionotus_scitulus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_1998.tif
-SEUS_FAL_IDW_Prionotus_scitulus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_1999.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2000.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2001.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2002.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2003.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2004.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2005.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2006.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2007.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2008.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2009.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2010.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2011.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2012.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2013.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2014.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2015.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2016.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2017.tif
-SEUS_FAL_IDW_Prionotus_tribulus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_1989.tif
-SEUS_FAL_IDW_Prionotus_tribulus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_1990.tif
-SEUS_FAL_IDW_Prionotus_tribulus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_1991.tif
-SEUS_FAL_IDW_Prionotus_tribulus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_1992.tif
-SEUS_FAL_IDW_Prionotus_tribulus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_1993.tif
-SEUS_FAL_IDW_Prionotus_tribulus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_1994.tif
-SEUS_FAL_IDW_Prionotus_tribulus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_1995.tif
-SEUS_FAL_IDW_Prionotus_tribulus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_1996.tif
-SEUS_FAL_IDW_Prionotus_tribulus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_1997.tif
-SEUS_FAL_IDW_Prionotus_tribulus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_1998.tif
-SEUS_FAL_IDW_Prionotus_tribulus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_1999.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2000.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2001.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2002.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2003.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2004.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2005.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2006.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2007.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2008.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2009.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2010.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2011.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2012.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2013.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2014.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2015.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2016.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2017.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_1989.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_1990.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_1991.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_1992.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_1993.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_1994.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_1995.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_1996.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_1997.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_1998.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_1999.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2000.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2001.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2002.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2003.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2004.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:45:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2005.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2006.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2007.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2008.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2009.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2010.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2011.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2012.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2013.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2014.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2015.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2016.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2017.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1989.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1990.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1991.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1992.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1993.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1994.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1995.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1996.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1997.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1998.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1999.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2000.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2001.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2002.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2003.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2004.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2005.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2006.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2007.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2008.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2009.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2010.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2011.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2012.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2013.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2014.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2015.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2016.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2017.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_1989.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_1990.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_1991.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_1992.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_1993.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_1994.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_1995.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_1996.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_1997.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_1998.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_1999.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_2000.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_2001.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_2002.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_2003.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_2004.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_2005.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_2006.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_2007.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_2008.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_2009.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_2010.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_2011.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_2012.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_2013.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_2014.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_2015.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_2016.tif
-SEUS_FAL_IDW_Rostroraja_eglanteria_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Rostroraja eglanteria\SEUS_FAL_IDW_Rostroraja_eglanteria_2017.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_1989.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_1990.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_1991.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_1992.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_1993.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_1994.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_1995.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_1996.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_1997.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_1998.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_1999.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2000.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2001.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2002.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2003.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2004.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2005.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2006.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2007.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2008.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2009.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2010.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2011.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2012.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2013.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2014.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2015.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2016.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2017.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_1989.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_1990.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_1991.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_1992.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_1993.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_1994.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_1995.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_1996.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_1997.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_1998.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_1999.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2000.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2001.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2002.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2003.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2004.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2005.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2006.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2007.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2008.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2009.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2010.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2011.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2012.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2013.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2014.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2015.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2016.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2017.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_1989.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_1990.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_1991.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_1992.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_1993.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_1994.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_1995.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_1996.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_1997.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_1998.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_1999.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2000.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2001.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2002.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2003.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2004.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2005.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2006.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2007.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2008.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2009.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2010.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2011.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2012.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2013.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2014.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2015.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2016.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2017.tif
-SEUS_FAL_IDW_Selene_setapinnis_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_1989.tif
-SEUS_FAL_IDW_Selene_setapinnis_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_1990.tif
-SEUS_FAL_IDW_Selene_setapinnis_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_1991.tif
-SEUS_FAL_IDW_Selene_setapinnis_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_1992.tif
-SEUS_FAL_IDW_Selene_setapinnis_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_1993.tif
-SEUS_FAL_IDW_Selene_setapinnis_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_1994.tif
-SEUS_FAL_IDW_Selene_setapinnis_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_1995.tif
-SEUS_FAL_IDW_Selene_setapinnis_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_1996.tif
-SEUS_FAL_IDW_Selene_setapinnis_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_1997.tif
-SEUS_FAL_IDW_Selene_setapinnis_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_1998.tif
-SEUS_FAL_IDW_Selene_setapinnis_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_1999.tif
-SEUS_FAL_IDW_Selene_setapinnis_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2000.tif
-SEUS_FAL_IDW_Selene_setapinnis_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2001.tif
-SEUS_FAL_IDW_Selene_setapinnis_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2002.tif
-SEUS_FAL_IDW_Selene_setapinnis_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2003.tif
-SEUS_FAL_IDW_Selene_setapinnis_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2004.tif
-SEUS_FAL_IDW_Selene_setapinnis_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2005.tif
-SEUS_FAL_IDW_Selene_setapinnis_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2006.tif
-SEUS_FAL_IDW_Selene_setapinnis_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2007.tif
-SEUS_FAL_IDW_Selene_setapinnis_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2008.tif
-SEUS_FAL_IDW_Selene_setapinnis_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2009.tif
-SEUS_FAL_IDW_Selene_setapinnis_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2010.tif
-SEUS_FAL_IDW_Selene_setapinnis_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2011.tif
-SEUS_FAL_IDW_Selene_setapinnis_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2012.tif
-SEUS_FAL_IDW_Selene_setapinnis_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2013.tif
-SEUS_FAL_IDW_Selene_setapinnis_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2014.tif
-SEUS_FAL_IDW_Selene_setapinnis_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2015.tif
-SEUS_FAL_IDW_Selene_setapinnis_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2016.tif
-SEUS_FAL_IDW_Selene_setapinnis_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2017.tif
-SEUS_FAL_IDW_Selene_vomer_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_1989.tif
-SEUS_FAL_IDW_Selene_vomer_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_1990.tif
-SEUS_FAL_IDW_Selene_vomer_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_1991.tif
-SEUS_FAL_IDW_Selene_vomer_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_1992.tif
-SEUS_FAL_IDW_Selene_vomer_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_1993.tif
-SEUS_FAL_IDW_Selene_vomer_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_1994.tif
-SEUS_FAL_IDW_Selene_vomer_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_1995.tif
-SEUS_FAL_IDW_Selene_vomer_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_1996.tif
-SEUS_FAL_IDW_Selene_vomer_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_1997.tif
-SEUS_FAL_IDW_Selene_vomer_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_1998.tif
-SEUS_FAL_IDW_Selene_vomer_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_1999.tif
-SEUS_FAL_IDW_Selene_vomer_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2000.tif
-SEUS_FAL_IDW_Selene_vomer_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2001.tif
-SEUS_FAL_IDW_Selene_vomer_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2002.tif
-SEUS_FAL_IDW_Selene_vomer_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2003.tif
-SEUS_FAL_IDW_Selene_vomer_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2004.tif
-SEUS_FAL_IDW_Selene_vomer_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2005.tif
-SEUS_FAL_IDW_Selene_vomer_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2006.tif
-SEUS_FAL_IDW_Selene_vomer_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2007.tif
-SEUS_FAL_IDW_Selene_vomer_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2008.tif
-SEUS_FAL_IDW_Selene_vomer_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2009.tif
-SEUS_FAL_IDW_Selene_vomer_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2010.tif
-SEUS_FAL_IDW_Selene_vomer_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2011.tif
-SEUS_FAL_IDW_Selene_vomer_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2012.tif
-SEUS_FAL_IDW_Selene_vomer_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2013.tif
-SEUS_FAL_IDW_Selene_vomer_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2014.tif
-SEUS_FAL_IDW_Selene_vomer_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2015.tif
-SEUS_FAL_IDW_Selene_vomer_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2016.tif
-SEUS_FAL_IDW_Selene_vomer_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2017.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_1989.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_1990.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_1991.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_1992.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_1993.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_1994.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_1995.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_1996.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_1997.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_1998.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_1999.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2000.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2001.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2002.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2003.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2004.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2005.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2006.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2007.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2008.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2009.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2010.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2011.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2012.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2013.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2014.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2015.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2016.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2017.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_1989.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_1990.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_1991.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_1992.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_1993.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_1994.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_1995.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_1996.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_1997.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_1998.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_1999.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2000.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2001.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2002.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2003.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2004.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2005.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2006.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2007.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2008.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2009.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2010.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2011.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2012.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2013.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2014.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2015.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2016.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:46:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2017.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_1989.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_1990.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_1991.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_1992.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_1993.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_1994.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_1995.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_1996.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_1997.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_1998.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_1999.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2000.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2001.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2002.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2003.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2004.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2005.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2006.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2007.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2008.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2009.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2010.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2011.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2012.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2013.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2014.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2015.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2016.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2017.tif
-SEUS_FAL_IDW_Squilla_empusa_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_1989.tif
-SEUS_FAL_IDW_Squilla_empusa_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_1990.tif
-SEUS_FAL_IDW_Squilla_empusa_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_1991.tif
-SEUS_FAL_IDW_Squilla_empusa_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_1992.tif
-SEUS_FAL_IDW_Squilla_empusa_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_1993.tif
-SEUS_FAL_IDW_Squilla_empusa_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_1994.tif
-SEUS_FAL_IDW_Squilla_empusa_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_1995.tif
-SEUS_FAL_IDW_Squilla_empusa_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_1996.tif
-SEUS_FAL_IDW_Squilla_empusa_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_1997.tif
-SEUS_FAL_IDW_Squilla_empusa_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_1998.tif
-SEUS_FAL_IDW_Squilla_empusa_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_1999.tif
-SEUS_FAL_IDW_Squilla_empusa_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2000.tif
-SEUS_FAL_IDW_Squilla_empusa_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2001.tif
-SEUS_FAL_IDW_Squilla_empusa_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2002.tif
-SEUS_FAL_IDW_Squilla_empusa_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2003.tif
-SEUS_FAL_IDW_Squilla_empusa_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2004.tif
-SEUS_FAL_IDW_Squilla_empusa_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2005.tif
-SEUS_FAL_IDW_Squilla_empusa_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2006.tif
-SEUS_FAL_IDW_Squilla_empusa_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2007.tif
-SEUS_FAL_IDW_Squilla_empusa_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2008.tif
-SEUS_FAL_IDW_Squilla_empusa_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2009.tif
-SEUS_FAL_IDW_Squilla_empusa_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2010.tif
-SEUS_FAL_IDW_Squilla_empusa_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2011.tif
-SEUS_FAL_IDW_Squilla_empusa_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2012.tif
-SEUS_FAL_IDW_Squilla_empusa_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2013.tif
-SEUS_FAL_IDW_Squilla_empusa_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2014.tif
-SEUS_FAL_IDW_Squilla_empusa_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2015.tif
-SEUS_FAL_IDW_Squilla_empusa_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2016.tif
-SEUS_FAL_IDW_Squilla_empusa_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2017.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_1989.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_1990.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_1991.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_1992.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_1993.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_1994.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_1995.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_1996.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_1997.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_1998.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_1999.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2000.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2001.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2002.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2003.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2004.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2005.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2006.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2007.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2008.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2009.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2010.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2011.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2012.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2013.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2014.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2015.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2016.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2017.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_1989.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_1990.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_1991.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_1992.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_1993.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_1994.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_1995.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_1996.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_1997.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_1998.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_1999.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2000.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2001.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2002.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2003.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2004.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2005.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2006.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2007.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2008.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2009.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2010.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2011.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2012.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2013.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2014.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2015.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2016.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2017.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_1989.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_1990.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_1991.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_1992.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_1993.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_1994.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_1995.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_1996.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_1997.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_1998.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_1999.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2000.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2001.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2002.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2003.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2004.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2005.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2006.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2007.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2008.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2009.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2010.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2011.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2012.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2013.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2014.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2015.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2016.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2017.tif
-SEUS_FAL_IDW_Synodus_foetens_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_1989.tif
-SEUS_FAL_IDW_Synodus_foetens_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_1990.tif
-SEUS_FAL_IDW_Synodus_foetens_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_1991.tif
-SEUS_FAL_IDW_Synodus_foetens_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_1992.tif
-SEUS_FAL_IDW_Synodus_foetens_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_1993.tif
-SEUS_FAL_IDW_Synodus_foetens_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_1994.tif
-SEUS_FAL_IDW_Synodus_foetens_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_1995.tif
-SEUS_FAL_IDW_Synodus_foetens_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_1996.tif
-SEUS_FAL_IDW_Synodus_foetens_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_1997.tif
-SEUS_FAL_IDW_Synodus_foetens_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_1998.tif
-SEUS_FAL_IDW_Synodus_foetens_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_1999.tif
-SEUS_FAL_IDW_Synodus_foetens_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2000.tif
-SEUS_FAL_IDW_Synodus_foetens_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2001.tif
-SEUS_FAL_IDW_Synodus_foetens_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2002.tif
-SEUS_FAL_IDW_Synodus_foetens_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2003.tif
-SEUS_FAL_IDW_Synodus_foetens_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2004.tif
-SEUS_FAL_IDW_Synodus_foetens_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2005.tif
-SEUS_FAL_IDW_Synodus_foetens_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2006.tif
-SEUS_FAL_IDW_Synodus_foetens_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2007.tif
-SEUS_FAL_IDW_Synodus_foetens_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2008.tif
-SEUS_FAL_IDW_Synodus_foetens_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2009.tif
-SEUS_FAL_IDW_Synodus_foetens_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2010.tif
-SEUS_FAL_IDW_Synodus_foetens_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2011.tif
-SEUS_FAL_IDW_Synodus_foetens_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2012.tif
-SEUS_FAL_IDW_Synodus_foetens_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2013.tif
-SEUS_FAL_IDW_Synodus_foetens_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2014.tif
-SEUS_FAL_IDW_Synodus_foetens_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2015.tif
-SEUS_FAL_IDW_Synodus_foetens_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2016.tif
-SEUS_FAL_IDW_Synodus_foetens_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2017.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_1989.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_1990.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_1991.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_1992.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_1993.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_1994.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_1995.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_1996.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_1997.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_1998.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_1999.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2000.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2001.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2002.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2003.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2004.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2005.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2006.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2007.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2008.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2009.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2010.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2011.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2012.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2013.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2014.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2015.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2016.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2017.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_1989.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_1990.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_1991.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_1992.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_1993.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_1994.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_1995.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_1996.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_1997.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_1998.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_1999.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2000.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2001.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2002.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2003.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2004.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2005.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2006.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2007.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2008.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2009.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2010.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2011.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2012.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2013.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2014.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2015.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2016.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2017.tif
-SEUS_FAL_IDW_Trinectes_maculatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_1989.tif
-SEUS_FAL_IDW_Trinectes_maculatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_1990.tif
-SEUS_FAL_IDW_Trinectes_maculatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_1991.tif
-SEUS_FAL_IDW_Trinectes_maculatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_1992.tif
-SEUS_FAL_IDW_Trinectes_maculatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_1993.tif
-SEUS_FAL_IDW_Trinectes_maculatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_1994.tif
-SEUS_FAL_IDW_Trinectes_maculatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_1995.tif
-SEUS_FAL_IDW_Trinectes_maculatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_1996.tif
-SEUS_FAL_IDW_Trinectes_maculatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_1997.tif
-SEUS_FAL_IDW_Trinectes_maculatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_1998.tif
-SEUS_FAL_IDW_Trinectes_maculatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_1999.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2000.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2001.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2002.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2003.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2004.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2005.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2006.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2007.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2008.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2009.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2010.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2011.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2012.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2013.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2014.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2015.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2016.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2017.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1989.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1990.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1991.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1992.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1993.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:47:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1994.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1995.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1996.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1997.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1998.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1999.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2000.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2001.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2002.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2003.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2004.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2005.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2006.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2007.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2008.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2009.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2010.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2011.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2012.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2013.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2014.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2015.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2016.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2017.tif
-SEUS_FAL_IDW_Core_Species_Richness_1989.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_1989.tif
-SEUS_FAL_IDW_Core_Species_Richness_1990.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_1990.tif
-SEUS_FAL_IDW_Core_Species_Richness_1991.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_1991.tif
-SEUS_FAL_IDW_Core_Species_Richness_1992.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_1992.tif
-SEUS_FAL_IDW_Core_Species_Richness_1993.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_1993.tif
-SEUS_FAL_IDW_Core_Species_Richness_1994.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_1994.tif
-SEUS_FAL_IDW_Core_Species_Richness_1995.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_1995.tif
-SEUS_FAL_IDW_Core_Species_Richness_1996.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_1996.tif
-SEUS_FAL_IDW_Core_Species_Richness_1997.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_1997.tif
-SEUS_FAL_IDW_Core_Species_Richness_1998.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_1998.tif
-SEUS_FAL_IDW_Core_Species_Richness_1999.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_1999.tif
-SEUS_FAL_IDW_Core_Species_Richness_2000.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2000.tif
-SEUS_FAL_IDW_Core_Species_Richness_2001.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2001.tif
-SEUS_FAL_IDW_Core_Species_Richness_2002.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2002.tif
-SEUS_FAL_IDW_Core_Species_Richness_2003.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2003.tif
-SEUS_FAL_IDW_Core_Species_Richness_2004.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2004.tif
-SEUS_FAL_IDW_Core_Species_Richness_2005.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2005.tif
-SEUS_FAL_IDW_Core_Species_Richness_2006.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2006.tif
-SEUS_FAL_IDW_Core_Species_Richness_2007.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2007.tif
-SEUS_FAL_IDW_Core_Species_Richness_2008.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2008.tif
-SEUS_FAL_IDW_Core_Species_Richness_2009.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2009.tif
-SEUS_FAL_IDW_Core_Species_Richness_2010.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2010.tif
-SEUS_FAL_IDW_Core_Species_Richness_2011.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2011.tif
-SEUS_FAL_IDW_Core_Species_Richness_2012.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2012.tif
-SEUS_FAL_IDW_Core_Species_Richness_2013.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2013.tif
-SEUS_FAL_IDW_Core_Species_Richness_2014.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2014.tif
-SEUS_FAL_IDW_Core_Species_Richness_2015.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2015.tif
-SEUS_FAL_IDW_Core_Species_Richness_2016.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2016.tif
-SEUS_FAL_IDW_Core_Species_Richness_2017.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2017.tif
-SEUS_FAL_IDW_Species_Richness_1989.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_1989.tif
-SEUS_FAL_IDW_Species_Richness_1990.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_1990.tif
-SEUS_FAL_IDW_Species_Richness_1991.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_1991.tif
-SEUS_FAL_IDW_Species_Richness_1992.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_1992.tif
-SEUS_FAL_IDW_Species_Richness_1993.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_1993.tif
-SEUS_FAL_IDW_Species_Richness_1994.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_1994.tif
-SEUS_FAL_IDW_Species_Richness_1995.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_1995.tif
-SEUS_FAL_IDW_Species_Richness_1996.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_1996.tif
-SEUS_FAL_IDW_Species_Richness_1997.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_1997.tif
-SEUS_FAL_IDW_Species_Richness_1998.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_1998.tif
-SEUS_FAL_IDW_Species_Richness_1999.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_1999.tif
-SEUS_FAL_IDW_Species_Richness_2000.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2000.tif
-SEUS_FAL_IDW_Species_Richness_2001.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2001.tif
-SEUS_FAL_IDW_Species_Richness_2002.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2002.tif
-SEUS_FAL_IDW_Species_Richness_2003.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2003.tif
-SEUS_FAL_IDW_Species_Richness_2004.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2004.tif
-SEUS_FAL_IDW_Species_Richness_2005.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2005.tif
-SEUS_FAL_IDW_Species_Richness_2006.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2006.tif
-SEUS_FAL_IDW_Species_Richness_2007.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2007.tif
-SEUS_FAL_IDW_Species_Richness_2008.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2008.tif
-SEUS_FAL_IDW_Species_Richness_2009.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2009.tif
-SEUS_FAL_IDW_Species_Richness_2010.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2010.tif
-SEUS_FAL_IDW_Species_Richness_2011.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2011.tif
-SEUS_FAL_IDW_Species_Richness_2012.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2012.tif
-SEUS_FAL_IDW_Species_Richness_2013.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2013.tif
-SEUS_FAL_IDW_Species_Richness_2014.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2014.tif
-SEUS_FAL_IDW_Species_Richness_2015.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2015.tif
-SEUS_FAL_IDW_Species_Richness_2016.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2016.tif
-SEUS_FAL_IDW_Species_Richness_2017.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2017.tif
-SEUS_SPR_IDW_Achelous_gibbesii_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_1989.tif
-SEUS_SPR_IDW_Achelous_gibbesii_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_1990.tif
-SEUS_SPR_IDW_Achelous_gibbesii_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_1991.tif
-SEUS_SPR_IDW_Achelous_gibbesii_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_1992.tif
-SEUS_SPR_IDW_Achelous_gibbesii_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_1993.tif
-SEUS_SPR_IDW_Achelous_gibbesii_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_1994.tif
-SEUS_SPR_IDW_Achelous_gibbesii_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_1995.tif
-SEUS_SPR_IDW_Achelous_gibbesii_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_1996.tif
-SEUS_SPR_IDW_Achelous_gibbesii_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_1997.tif
-SEUS_SPR_IDW_Achelous_gibbesii_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_1998.tif
-SEUS_SPR_IDW_Achelous_gibbesii_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_1999.tif
-SEUS_SPR_IDW_Achelous_gibbesii_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_2000.tif
-SEUS_SPR_IDW_Achelous_gibbesii_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_2001.tif
-SEUS_SPR_IDW_Achelous_gibbesii_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_2002.tif
-SEUS_SPR_IDW_Achelous_gibbesii_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_2003.tif
-SEUS_SPR_IDW_Achelous_gibbesii_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_2004.tif
-SEUS_SPR_IDW_Achelous_gibbesii_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_2005.tif
-SEUS_SPR_IDW_Achelous_gibbesii_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_2006.tif
-SEUS_SPR_IDW_Achelous_gibbesii_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_2007.tif
-SEUS_SPR_IDW_Achelous_gibbesii_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_2008.tif
-SEUS_SPR_IDW_Achelous_gibbesii_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_2009.tif
-SEUS_SPR_IDW_Achelous_gibbesii_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_2010.tif
-SEUS_SPR_IDW_Achelous_gibbesii_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_2011.tif
-SEUS_SPR_IDW_Achelous_gibbesii_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_2012.tif
-SEUS_SPR_IDW_Achelous_gibbesii_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_2013.tif
-SEUS_SPR_IDW_Achelous_gibbesii_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_2014.tif
-SEUS_SPR_IDW_Achelous_gibbesii_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_2015.tif
-SEUS_SPR_IDW_Achelous_gibbesii_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_2016.tif
-SEUS_SPR_IDW_Achelous_gibbesii_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_2017.tif
-SEUS_SPR_IDW_Achelous_gibbesii_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_2018.tif
-SEUS_SPR_IDW_Achelous_gibbesii_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous gibbesii\SEUS_SPR_IDW_Achelous_gibbesii_2019.tif
-SEUS_SPR_IDW_Achelous_spinimanus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_1989.tif
-SEUS_SPR_IDW_Achelous_spinimanus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_1990.tif
-SEUS_SPR_IDW_Achelous_spinimanus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_1991.tif
-SEUS_SPR_IDW_Achelous_spinimanus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_1992.tif
-SEUS_SPR_IDW_Achelous_spinimanus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_1993.tif
-SEUS_SPR_IDW_Achelous_spinimanus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_1994.tif
-SEUS_SPR_IDW_Achelous_spinimanus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_1995.tif
-SEUS_SPR_IDW_Achelous_spinimanus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_1996.tif
-SEUS_SPR_IDW_Achelous_spinimanus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_1997.tif
-SEUS_SPR_IDW_Achelous_spinimanus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_1998.tif
-SEUS_SPR_IDW_Achelous_spinimanus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_1999.tif
-SEUS_SPR_IDW_Achelous_spinimanus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_2000.tif
-SEUS_SPR_IDW_Achelous_spinimanus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_2001.tif
-SEUS_SPR_IDW_Achelous_spinimanus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_2002.tif
-SEUS_SPR_IDW_Achelous_spinimanus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_2003.tif
-SEUS_SPR_IDW_Achelous_spinimanus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_2004.tif
-SEUS_SPR_IDW_Achelous_spinimanus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_2005.tif
-SEUS_SPR_IDW_Achelous_spinimanus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_2006.tif
-SEUS_SPR_IDW_Achelous_spinimanus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_2007.tif
-SEUS_SPR_IDW_Achelous_spinimanus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_2008.tif
-SEUS_SPR_IDW_Achelous_spinimanus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_2009.tif
-SEUS_SPR_IDW_Achelous_spinimanus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_2010.tif
-SEUS_SPR_IDW_Achelous_spinimanus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_2011.tif
-SEUS_SPR_IDW_Achelous_spinimanus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_2012.tif
-SEUS_SPR_IDW_Achelous_spinimanus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_2013.tif
-SEUS_SPR_IDW_Achelous_spinimanus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_2014.tif
-SEUS_SPR_IDW_Achelous_spinimanus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_2015.tif
-SEUS_SPR_IDW_Achelous_spinimanus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_2016.tif
-SEUS_SPR_IDW_Achelous_spinimanus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_2017.tif
-SEUS_SPR_IDW_Achelous_spinimanus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_2018.tif
-SEUS_SPR_IDW_Achelous_spinimanus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Achelous spinimanus\SEUS_SPR_IDW_Achelous_spinimanus_2019.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1989.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1990.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1991.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1992.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1993.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1994.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1995.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1996.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1997.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1998.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1999.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2000.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2001.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2002.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2003.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2004.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2005.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2006.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2007.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2008.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2009.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2010.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2011.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2012.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2013.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2014.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2015.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2016.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2017.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2018.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2019.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_1989.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_1990.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_1991.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_1992.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_1993.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_1994.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_1995.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_1996.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_1997.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_1998.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_1999.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2000.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2001.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2002.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2003.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2004.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2005.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2006.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2007.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2008.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2009.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2010.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2011.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2012.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2013.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2014.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2015.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2016.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2017.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2018.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2019.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_1989.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_1990.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_1991.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_1992.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_1993.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_1994.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_1995.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_1996.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_1997.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_1998.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_1999.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2000.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2001.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2002.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2003.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2004.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2005.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2006.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2007.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2008.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2009.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2010.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2011.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2012.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2013.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2014.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2015.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2016.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2017.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2018.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2019.tif
-SEUS_SPR_IDW_Callinectes_similis_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_1989.tif
-SEUS_SPR_IDW_Callinectes_similis_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_1990.tif
-SEUS_SPR_IDW_Callinectes_similis_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_1991.tif
-SEUS_SPR_IDW_Callinectes_similis_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_1992.tif
-SEUS_SPR_IDW_Callinectes_similis_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_1993.tif
-SEUS_SPR_IDW_Callinectes_similis_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_1994.tif
-SEUS_SPR_IDW_Callinectes_similis_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_1995.tif
-SEUS_SPR_IDW_Callinectes_similis_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_1996.tif
-SEUS_SPR_IDW_Callinectes_similis_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_1997.tif
-SEUS_SPR_IDW_Callinectes_similis_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:48:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_1998.tif
-SEUS_SPR_IDW_Callinectes_similis_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_1999.tif
-SEUS_SPR_IDW_Callinectes_similis_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2000.tif
-SEUS_SPR_IDW_Callinectes_similis_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2001.tif
-SEUS_SPR_IDW_Callinectes_similis_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2002.tif
-SEUS_SPR_IDW_Callinectes_similis_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2003.tif
-SEUS_SPR_IDW_Callinectes_similis_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2004.tif
-SEUS_SPR_IDW_Callinectes_similis_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2005.tif
-SEUS_SPR_IDW_Callinectes_similis_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2006.tif
-SEUS_SPR_IDW_Callinectes_similis_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2007.tif
-SEUS_SPR_IDW_Callinectes_similis_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2008.tif
-SEUS_SPR_IDW_Callinectes_similis_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2009.tif
-SEUS_SPR_IDW_Callinectes_similis_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2010.tif
-SEUS_SPR_IDW_Callinectes_similis_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2011.tif
-SEUS_SPR_IDW_Callinectes_similis_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2012.tif
-SEUS_SPR_IDW_Callinectes_similis_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2013.tif
-SEUS_SPR_IDW_Callinectes_similis_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2014.tif
-SEUS_SPR_IDW_Callinectes_similis_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2015.tif
-SEUS_SPR_IDW_Callinectes_similis_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2016.tif
-SEUS_SPR_IDW_Callinectes_similis_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2017.tif
-SEUS_SPR_IDW_Callinectes_similis_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2018.tif
-SEUS_SPR_IDW_Callinectes_similis_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2019.tif
-SEUS_SPR_IDW_Centropristis_striata_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_1989.tif
-SEUS_SPR_IDW_Centropristis_striata_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_1990.tif
-SEUS_SPR_IDW_Centropristis_striata_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_1991.tif
-SEUS_SPR_IDW_Centropristis_striata_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_1992.tif
-SEUS_SPR_IDW_Centropristis_striata_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_1993.tif
-SEUS_SPR_IDW_Centropristis_striata_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_1994.tif
-SEUS_SPR_IDW_Centropristis_striata_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_1995.tif
-SEUS_SPR_IDW_Centropristis_striata_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_1996.tif
-SEUS_SPR_IDW_Centropristis_striata_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_1997.tif
-SEUS_SPR_IDW_Centropristis_striata_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_1998.tif
-SEUS_SPR_IDW_Centropristis_striata_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_1999.tif
-SEUS_SPR_IDW_Centropristis_striata_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2000.tif
-SEUS_SPR_IDW_Centropristis_striata_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2001.tif
-SEUS_SPR_IDW_Centropristis_striata_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2002.tif
-SEUS_SPR_IDW_Centropristis_striata_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2003.tif
-SEUS_SPR_IDW_Centropristis_striata_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2004.tif
-SEUS_SPR_IDW_Centropristis_striata_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2005.tif
-SEUS_SPR_IDW_Centropristis_striata_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2006.tif
-SEUS_SPR_IDW_Centropristis_striata_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2007.tif
-SEUS_SPR_IDW_Centropristis_striata_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2008.tif
-SEUS_SPR_IDW_Centropristis_striata_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2009.tif
-SEUS_SPR_IDW_Centropristis_striata_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2010.tif
-SEUS_SPR_IDW_Centropristis_striata_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2011.tif
-SEUS_SPR_IDW_Centropristis_striata_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2012.tif
-SEUS_SPR_IDW_Centropristis_striata_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2013.tif
-SEUS_SPR_IDW_Centropristis_striata_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2014.tif
-SEUS_SPR_IDW_Centropristis_striata_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2015.tif
-SEUS_SPR_IDW_Centropristis_striata_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2016.tif
-SEUS_SPR_IDW_Centropristis_striata_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2017.tif
-SEUS_SPR_IDW_Centropristis_striata_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2018.tif
-SEUS_SPR_IDW_Centropristis_striata_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2019.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_1989.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_1990.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_1991.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_1992.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_1993.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_1994.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_1995.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_1996.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_1997.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_1998.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_1999.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2000.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2001.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2002.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2003.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2004.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2005.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2006.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2007.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2008.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2009.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2010.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2011.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2012.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2013.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2014.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2015.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2016.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2017.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2018.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2019.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_1989.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_1990.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_1991.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_1992.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_1993.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_1994.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_1995.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_1996.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_1997.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_1998.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_1999.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2000.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2001.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2002.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2003.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2004.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2005.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2006.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2007.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2008.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2009.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2010.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2011.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2012.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2013.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2014.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2015.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2016.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2017.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2018.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2019.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_1989.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_1990.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_1991.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_1992.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_1993.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_1994.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_1995.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_1996.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_1997.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_1998.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_1999.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2000.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2001.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2002.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2003.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2004.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2005.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2006.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2007.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2008.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2009.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2010.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2011.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2012.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2013.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2014.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2015.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2016.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2017.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2018.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2019.tif
-SEUS_SPR_IDW_Citharichthys_macrops_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_1989.tif
-SEUS_SPR_IDW_Citharichthys_macrops_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_1990.tif
-SEUS_SPR_IDW_Citharichthys_macrops_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_1991.tif
-SEUS_SPR_IDW_Citharichthys_macrops_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_1992.tif
-SEUS_SPR_IDW_Citharichthys_macrops_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_1993.tif
-SEUS_SPR_IDW_Citharichthys_macrops_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_1994.tif
-SEUS_SPR_IDW_Citharichthys_macrops_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_1995.tif
-SEUS_SPR_IDW_Citharichthys_macrops_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_1996.tif
-SEUS_SPR_IDW_Citharichthys_macrops_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_1997.tif
-SEUS_SPR_IDW_Citharichthys_macrops_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_1998.tif
-SEUS_SPR_IDW_Citharichthys_macrops_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_1999.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2000.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2001.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2002.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2003.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2004.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2005.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2006.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2007.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2008.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2009.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2010.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2011.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2012.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2013.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2014.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2015.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2016.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2017.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2018.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2019.tif
-SEUS_SPR_IDW_Cynoscion_nothus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_1989.tif
-SEUS_SPR_IDW_Cynoscion_nothus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_1990.tif
-SEUS_SPR_IDW_Cynoscion_nothus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_1991.tif
-SEUS_SPR_IDW_Cynoscion_nothus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_1992.tif
-SEUS_SPR_IDW_Cynoscion_nothus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_1993.tif
-SEUS_SPR_IDW_Cynoscion_nothus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_1994.tif
-SEUS_SPR_IDW_Cynoscion_nothus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_1995.tif
-SEUS_SPR_IDW_Cynoscion_nothus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_1996.tif
-SEUS_SPR_IDW_Cynoscion_nothus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_1997.tif
-SEUS_SPR_IDW_Cynoscion_nothus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_1998.tif
-SEUS_SPR_IDW_Cynoscion_nothus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_1999.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2000.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2001.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2002.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2003.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2004.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2005.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2006.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2007.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2008.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2009.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2010.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2011.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2012.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2013.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2014.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2015.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2016.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2017.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2018.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2019.tif
-SEUS_SPR_IDW_Cynoscion_regalis_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_1989.tif
-SEUS_SPR_IDW_Cynoscion_regalis_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_1990.tif
-SEUS_SPR_IDW_Cynoscion_regalis_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_1991.tif
-SEUS_SPR_IDW_Cynoscion_regalis_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_1992.tif
-SEUS_SPR_IDW_Cynoscion_regalis_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_1993.tif
-SEUS_SPR_IDW_Cynoscion_regalis_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_1994.tif
-SEUS_SPR_IDW_Cynoscion_regalis_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_1995.tif
-SEUS_SPR_IDW_Cynoscion_regalis_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_1996.tif
-SEUS_SPR_IDW_Cynoscion_regalis_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_1997.tif
-SEUS_SPR_IDW_Cynoscion_regalis_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_1998.tif
-SEUS_SPR_IDW_Cynoscion_regalis_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_1999.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2000.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2001.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2002.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2003.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2004.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2005.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2006.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2007.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2008.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2009.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2010.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2011.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2012.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2013.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2014.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2015.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2016.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2017.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2018.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2019.tif
-SEUS_SPR_IDW_Etropus_crossotus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_1989.tif
-SEUS_SPR_IDW_Etropus_crossotus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_1990.tif
-SEUS_SPR_IDW_Etropus_crossotus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_1991.tif
-SEUS_SPR_IDW_Etropus_crossotus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_1992.tif
-SEUS_SPR_IDW_Etropus_crossotus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_1993.tif
-SEUS_SPR_IDW_Etropus_crossotus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_1994.tif
-SEUS_SPR_IDW_Etropus_crossotus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_1995.tif
-SEUS_SPR_IDW_Etropus_crossotus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:49:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_1996.tif
-SEUS_SPR_IDW_Etropus_crossotus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_1997.tif
-SEUS_SPR_IDW_Etropus_crossotus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_1998.tif
-SEUS_SPR_IDW_Etropus_crossotus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_1999.tif
-SEUS_SPR_IDW_Etropus_crossotus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2000.tif
-SEUS_SPR_IDW_Etropus_crossotus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2001.tif
-SEUS_SPR_IDW_Etropus_crossotus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2002.tif
-SEUS_SPR_IDW_Etropus_crossotus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2003.tif
-SEUS_SPR_IDW_Etropus_crossotus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2004.tif
-SEUS_SPR_IDW_Etropus_crossotus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2005.tif
-SEUS_SPR_IDW_Etropus_crossotus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2006.tif
-SEUS_SPR_IDW_Etropus_crossotus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2007.tif
-SEUS_SPR_IDW_Etropus_crossotus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2008.tif
-SEUS_SPR_IDW_Etropus_crossotus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2009.tif
-SEUS_SPR_IDW_Etropus_crossotus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2010.tif
-SEUS_SPR_IDW_Etropus_crossotus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2011.tif
-SEUS_SPR_IDW_Etropus_crossotus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2012.tif
-SEUS_SPR_IDW_Etropus_crossotus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2013.tif
-SEUS_SPR_IDW_Etropus_crossotus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2014.tif
-SEUS_SPR_IDW_Etropus_crossotus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2015.tif
-SEUS_SPR_IDW_Etropus_crossotus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2016.tif
-SEUS_SPR_IDW_Etropus_crossotus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2017.tif
-SEUS_SPR_IDW_Etropus_crossotus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2018.tif
-SEUS_SPR_IDW_Etropus_crossotus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2019.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_1989.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_1990.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_1991.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_1992.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_1993.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_1994.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_1995.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_1996.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_1997.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_1998.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_1999.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2000.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2001.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2002.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2003.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2004.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2005.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2006.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2007.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2008.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2009.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2010.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2011.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2012.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2013.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2014.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2015.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2016.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2017.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2018.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2019.tif
-SEUS_SPR_IDW_Gymnura_micrura_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_1989.tif
-SEUS_SPR_IDW_Gymnura_micrura_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_1990.tif
-SEUS_SPR_IDW_Gymnura_micrura_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_1991.tif
-SEUS_SPR_IDW_Gymnura_micrura_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_1992.tif
-SEUS_SPR_IDW_Gymnura_micrura_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_1993.tif
-SEUS_SPR_IDW_Gymnura_micrura_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_1994.tif
-SEUS_SPR_IDW_Gymnura_micrura_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_1995.tif
-SEUS_SPR_IDW_Gymnura_micrura_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_1996.tif
-SEUS_SPR_IDW_Gymnura_micrura_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_1997.tif
-SEUS_SPR_IDW_Gymnura_micrura_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_1998.tif
-SEUS_SPR_IDW_Gymnura_micrura_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_1999.tif
-SEUS_SPR_IDW_Gymnura_micrura_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2000.tif
-SEUS_SPR_IDW_Gymnura_micrura_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2001.tif
-SEUS_SPR_IDW_Gymnura_micrura_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2002.tif
-SEUS_SPR_IDW_Gymnura_micrura_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2003.tif
-SEUS_SPR_IDW_Gymnura_micrura_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2004.tif
-SEUS_SPR_IDW_Gymnura_micrura_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2005.tif
-SEUS_SPR_IDW_Gymnura_micrura_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2006.tif
-SEUS_SPR_IDW_Gymnura_micrura_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2007.tif
-SEUS_SPR_IDW_Gymnura_micrura_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2008.tif
-SEUS_SPR_IDW_Gymnura_micrura_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2009.tif
-SEUS_SPR_IDW_Gymnura_micrura_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2010.tif
-SEUS_SPR_IDW_Gymnura_micrura_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2011.tif
-SEUS_SPR_IDW_Gymnura_micrura_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2012.tif
-SEUS_SPR_IDW_Gymnura_micrura_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2013.tif
-SEUS_SPR_IDW_Gymnura_micrura_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2014.tif
-SEUS_SPR_IDW_Gymnura_micrura_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2015.tif
-SEUS_SPR_IDW_Gymnura_micrura_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2016.tif
-SEUS_SPR_IDW_Gymnura_micrura_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2017.tif
-SEUS_SPR_IDW_Gymnura_micrura_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2018.tif
-SEUS_SPR_IDW_Gymnura_micrura_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2019.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_1989.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_1990.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_1991.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_1992.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_1993.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_1994.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_1995.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_1996.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_1997.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_1998.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_1999.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2000.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2001.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2002.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2003.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2004.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2005.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2006.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2007.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2008.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2009.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2010.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2011.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2012.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2013.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2014.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2015.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2016.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2017.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2018.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2019.tif
-SEUS_SPR_IDW_Hypanus_say_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_1989.tif
-SEUS_SPR_IDW_Hypanus_say_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_1990.tif
-SEUS_SPR_IDW_Hypanus_say_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_1991.tif
-SEUS_SPR_IDW_Hypanus_say_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_1992.tif
-SEUS_SPR_IDW_Hypanus_say_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_1993.tif
-SEUS_SPR_IDW_Hypanus_say_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_1994.tif
-SEUS_SPR_IDW_Hypanus_say_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_1995.tif
-SEUS_SPR_IDW_Hypanus_say_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_1996.tif
-SEUS_SPR_IDW_Hypanus_say_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_1997.tif
-SEUS_SPR_IDW_Hypanus_say_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_1998.tif
-SEUS_SPR_IDW_Hypanus_say_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_1999.tif
-SEUS_SPR_IDW_Hypanus_say_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_2000.tif
-SEUS_SPR_IDW_Hypanus_say_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_2001.tif
-SEUS_SPR_IDW_Hypanus_say_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_2002.tif
-SEUS_SPR_IDW_Hypanus_say_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_2003.tif
-SEUS_SPR_IDW_Hypanus_say_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_2004.tif
-SEUS_SPR_IDW_Hypanus_say_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_2005.tif
-SEUS_SPR_IDW_Hypanus_say_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_2006.tif
-SEUS_SPR_IDW_Hypanus_say_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_2007.tif
-SEUS_SPR_IDW_Hypanus_say_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_2008.tif
-SEUS_SPR_IDW_Hypanus_say_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_2009.tif
-SEUS_SPR_IDW_Hypanus_say_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_2010.tif
-SEUS_SPR_IDW_Hypanus_say_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_2011.tif
-SEUS_SPR_IDW_Hypanus_say_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_2012.tif
-SEUS_SPR_IDW_Hypanus_say_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_2013.tif
-SEUS_SPR_IDW_Hypanus_say_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_2014.tif
-SEUS_SPR_IDW_Hypanus_say_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_2015.tif
-SEUS_SPR_IDW_Hypanus_say_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_2016.tif
-SEUS_SPR_IDW_Hypanus_say_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_2017.tif
-SEUS_SPR_IDW_Hypanus_say_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_2018.tif
-SEUS_SPR_IDW_Hypanus_say_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Hypanus say\SEUS_SPR_IDW_Hypanus_say_2019.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_1989.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_1990.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_1991.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_1992.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_1993.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_1994.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_1995.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_1996.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_1997.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_1998.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_1999.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2000.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2001.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2002.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2003.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2004.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2005.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2006.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2007.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2008.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2009.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2010.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2011.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2012.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2013.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2014.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2015.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2016.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2017.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2018.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2019.tif
-SEUS_SPR_IDW_Larimus_fasciatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_1989.tif
-SEUS_SPR_IDW_Larimus_fasciatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_1990.tif
-SEUS_SPR_IDW_Larimus_fasciatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_1991.tif
-SEUS_SPR_IDW_Larimus_fasciatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_1992.tif
-SEUS_SPR_IDW_Larimus_fasciatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_1993.tif
-SEUS_SPR_IDW_Larimus_fasciatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_1994.tif
-SEUS_SPR_IDW_Larimus_fasciatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_1995.tif
-SEUS_SPR_IDW_Larimus_fasciatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_1996.tif
-SEUS_SPR_IDW_Larimus_fasciatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_1997.tif
-SEUS_SPR_IDW_Larimus_fasciatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_1998.tif
-SEUS_SPR_IDW_Larimus_fasciatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_1999.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2000.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2001.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2002.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2003.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2004.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2005.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2006.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2007.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2008.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2009.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2010.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2011.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2012.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2013.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2014.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2015.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2016.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2017.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2018.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2019.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_1989.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_1990.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_1991.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_1992.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_1993.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_1994.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_1995.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_1996.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_1997.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_1998.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_1999.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2000.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2001.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2002.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2003.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2004.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2005.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2006.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2007.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2008.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2009.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2010.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2011.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2012.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2013.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2014.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2015.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2016.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2017.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2018.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2019.tif
-SEUS_SPR_IDW_Loligo_spp_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_1989.tif
-SEUS_SPR_IDW_Loligo_spp_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_1990.tif
-SEUS_SPR_IDW_Loligo_spp_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_1991.tif
-SEUS_SPR_IDW_Loligo_spp_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_1992.tif
-SEUS_SPR_IDW_Loligo_spp_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_1993.tif
-SEUS_SPR_IDW_Loligo_spp_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:50:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_1994.tif
-SEUS_SPR_IDW_Loligo_spp_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_1995.tif
-SEUS_SPR_IDW_Loligo_spp_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_1996.tif
-SEUS_SPR_IDW_Loligo_spp_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_1997.tif
-SEUS_SPR_IDW_Loligo_spp_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_1998.tif
-SEUS_SPR_IDW_Loligo_spp_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_1999.tif
-SEUS_SPR_IDW_Loligo_spp_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_2000.tif
-SEUS_SPR_IDW_Loligo_spp_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_2001.tif
-SEUS_SPR_IDW_Loligo_spp_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_2002.tif
-SEUS_SPR_IDW_Loligo_spp_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_2003.tif
-SEUS_SPR_IDW_Loligo_spp_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_2004.tif
-SEUS_SPR_IDW_Loligo_spp_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_2005.tif
-SEUS_SPR_IDW_Loligo_spp_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_2006.tif
-SEUS_SPR_IDW_Loligo_spp_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_2007.tif
-SEUS_SPR_IDW_Loligo_spp_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_2008.tif
-SEUS_SPR_IDW_Loligo_spp_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_2009.tif
-SEUS_SPR_IDW_Loligo_spp_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_2010.tif
-SEUS_SPR_IDW_Loligo_spp_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_2011.tif
-SEUS_SPR_IDW_Loligo_spp_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_2012.tif
-SEUS_SPR_IDW_Loligo_spp_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_2013.tif
-SEUS_SPR_IDW_Loligo_spp_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_2014.tif
-SEUS_SPR_IDW_Loligo_spp_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_2015.tif
-SEUS_SPR_IDW_Loligo_spp_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_2016.tif
-SEUS_SPR_IDW_Loligo_spp_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_2017.tif
-SEUS_SPR_IDW_Loligo_spp_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_2018.tif
-SEUS_SPR_IDW_Loligo_spp_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Loligo spp\SEUS_SPR_IDW_Loligo_spp_2019.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_1989.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_1990.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_1991.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_1992.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_1993.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_1994.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_1995.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_1996.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_1997.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_1998.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_1999.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2000.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2001.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2002.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2003.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2004.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2005.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2006.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2007.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2008.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2009.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2010.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2011.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2012.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2013.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2014.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2015.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2016.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2017.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2018.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2019.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_1989.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_1990.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_1991.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_1992.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_1993.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_1994.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_1995.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_1996.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_1997.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_1998.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_1999.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2000.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2001.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2002.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2003.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2004.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2005.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2006.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2007.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2008.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2009.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2010.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2011.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2012.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2013.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2014.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2015.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2016.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2017.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2018.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2019.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_1989.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_1990.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_1991.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_1992.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_1993.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_1994.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_1995.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_1996.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_1997.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_1998.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_1999.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2000.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2001.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2002.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2003.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2004.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2005.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2006.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2007.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2008.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2009.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2010.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2011.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2012.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2013.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2014.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2015.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2016.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2017.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2018.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2019.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_1989.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_1990.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_1991.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_1992.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_1993.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_1994.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_1995.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_1996.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_1997.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_1998.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_1999.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2000.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2001.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2002.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2003.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2004.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2005.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2006.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2007.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2008.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2009.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2010.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2011.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2012.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2013.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2014.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2015.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2016.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2017.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2018.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2019.tif
-SEUS_SPR_IDW_Mustelus_canis_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_1989.tif
-SEUS_SPR_IDW_Mustelus_canis_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_1990.tif
-SEUS_SPR_IDW_Mustelus_canis_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_1991.tif
-SEUS_SPR_IDW_Mustelus_canis_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_1992.tif
-SEUS_SPR_IDW_Mustelus_canis_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_1993.tif
-SEUS_SPR_IDW_Mustelus_canis_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_1994.tif
-SEUS_SPR_IDW_Mustelus_canis_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_1995.tif
-SEUS_SPR_IDW_Mustelus_canis_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_1996.tif
-SEUS_SPR_IDW_Mustelus_canis_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_1997.tif
-SEUS_SPR_IDW_Mustelus_canis_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_1998.tif
-SEUS_SPR_IDW_Mustelus_canis_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_1999.tif
-SEUS_SPR_IDW_Mustelus_canis_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_2000.tif
-SEUS_SPR_IDW_Mustelus_canis_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_2001.tif
-SEUS_SPR_IDW_Mustelus_canis_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_2002.tif
-SEUS_SPR_IDW_Mustelus_canis_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_2003.tif
-SEUS_SPR_IDW_Mustelus_canis_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_2004.tif
-SEUS_SPR_IDW_Mustelus_canis_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_2005.tif
-SEUS_SPR_IDW_Mustelus_canis_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_2006.tif
-SEUS_SPR_IDW_Mustelus_canis_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_2007.tif
-SEUS_SPR_IDW_Mustelus_canis_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_2008.tif
-SEUS_SPR_IDW_Mustelus_canis_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_2009.tif
-SEUS_SPR_IDW_Mustelus_canis_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_2010.tif
-SEUS_SPR_IDW_Mustelus_canis_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_2011.tif
-SEUS_SPR_IDW_Mustelus_canis_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_2012.tif
-SEUS_SPR_IDW_Mustelus_canis_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_2013.tif
-SEUS_SPR_IDW_Mustelus_canis_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_2014.tif
-SEUS_SPR_IDW_Mustelus_canis_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_2015.tif
-SEUS_SPR_IDW_Mustelus_canis_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_2016.tif
-SEUS_SPR_IDW_Mustelus_canis_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_2017.tif
-SEUS_SPR_IDW_Mustelus_canis_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_2018.tif
-SEUS_SPR_IDW_Mustelus_canis_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Mustelus canis\SEUS_SPR_IDW_Mustelus_canis_2019.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_1989.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_1990.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_1991.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_1992.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_1993.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_1994.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_1995.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_1996.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_1997.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_1998.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_1999.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2000.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2001.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2002.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2003.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2004.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2005.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2006.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2007.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2008.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2009.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2010.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2011.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2012.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2013.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2014.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2015.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2016.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2017.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2018.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2019.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_1989.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_1990.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_1991.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_1992.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_1993.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_1994.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_1995.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_1996.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_1997.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_1998.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_1999.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2000.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2001.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2002.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2003.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2004.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2005.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2006.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2007.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2008.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2009.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2010.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2011.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2012.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2013.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2014.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2015.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2016.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2017.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2018.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2019.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_1989.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_1990.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_1991.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_1992.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_1993.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_1994.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_1995.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_1996.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_1997.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_1998.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_1999.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2000.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2001.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2002.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2003.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2004.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2005.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2006.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:51:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2007.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2008.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2009.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2010.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2011.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2012.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2013.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2014.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2015.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2016.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2017.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2018.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2019.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_1989.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_1990.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_1991.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_1992.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_1993.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_1994.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_1995.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_1996.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_1997.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_1998.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_1999.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2000.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2001.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2002.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2003.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2004.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2005.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2006.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2007.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2008.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2009.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2010.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2011.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2012.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2013.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2014.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2015.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2016.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2017.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2018.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2019.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_1989.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_1990.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_1991.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_1992.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_1993.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_1994.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_1995.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_1996.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_1997.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_1998.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_1999.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2000.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2001.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2002.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2003.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2004.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2005.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2006.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2007.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2008.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2009.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2010.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2011.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2012.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2013.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2014.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2015.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2016.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2017.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2018.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2019.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_1989.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_1990.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_1991.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_1992.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_1993.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_1994.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_1995.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_1996.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_1997.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_1998.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_1999.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2000.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2001.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2002.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2003.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2004.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2005.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2006.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2007.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2008.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2009.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2010.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2011.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2012.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2013.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2014.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2015.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2016.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2017.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2018.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2019.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_1989.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_1990.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_1991.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_1992.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_1993.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_1994.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_1995.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_1996.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_1997.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_1998.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_1999.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2000.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2001.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2002.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2003.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2004.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2005.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2006.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2007.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2008.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2009.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2010.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2011.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2012.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2013.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2014.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2015.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2016.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2017.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2018.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2019.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_1989.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_1990.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_1991.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_1992.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_1993.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_1994.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_1995.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_1996.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_1997.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_1998.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_1999.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2000.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2001.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2002.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2003.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2004.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2005.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2006.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2007.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2008.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2009.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2010.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2011.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2012.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2013.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2014.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2015.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2016.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2017.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2018.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2019.tif
-SEUS_SPR_IDW_Penaeus_aztecus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_1989.tif
-SEUS_SPR_IDW_Penaeus_aztecus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_1990.tif
-SEUS_SPR_IDW_Penaeus_aztecus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_1991.tif
-SEUS_SPR_IDW_Penaeus_aztecus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_1992.tif
-SEUS_SPR_IDW_Penaeus_aztecus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_1993.tif
-SEUS_SPR_IDW_Penaeus_aztecus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_1994.tif
-SEUS_SPR_IDW_Penaeus_aztecus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_1995.tif
-SEUS_SPR_IDW_Penaeus_aztecus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_1996.tif
-SEUS_SPR_IDW_Penaeus_aztecus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_1997.tif
-SEUS_SPR_IDW_Penaeus_aztecus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_1998.tif
-SEUS_SPR_IDW_Penaeus_aztecus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_1999.tif
-SEUS_SPR_IDW_Penaeus_aztecus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_2000.tif
-SEUS_SPR_IDW_Penaeus_aztecus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_2001.tif
-SEUS_SPR_IDW_Penaeus_aztecus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_2002.tif
-SEUS_SPR_IDW_Penaeus_aztecus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_2003.tif
-SEUS_SPR_IDW_Penaeus_aztecus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_2004.tif
-SEUS_SPR_IDW_Penaeus_aztecus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_2005.tif
-SEUS_SPR_IDW_Penaeus_aztecus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_2006.tif
-SEUS_SPR_IDW_Penaeus_aztecus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_2007.tif
-SEUS_SPR_IDW_Penaeus_aztecus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_2008.tif
-SEUS_SPR_IDW_Penaeus_aztecus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_2009.tif
-SEUS_SPR_IDW_Penaeus_aztecus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_2010.tif
-SEUS_SPR_IDW_Penaeus_aztecus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_2011.tif
-SEUS_SPR_IDW_Penaeus_aztecus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_2012.tif
-SEUS_SPR_IDW_Penaeus_aztecus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_2013.tif
-SEUS_SPR_IDW_Penaeus_aztecus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_2014.tif
-SEUS_SPR_IDW_Penaeus_aztecus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_2015.tif
-SEUS_SPR_IDW_Penaeus_aztecus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_2016.tif
-SEUS_SPR_IDW_Penaeus_aztecus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_2017.tif
-SEUS_SPR_IDW_Penaeus_aztecus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_2018.tif
-SEUS_SPR_IDW_Penaeus_aztecus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus aztecus\SEUS_SPR_IDW_Penaeus_aztecus_2019.tif
-SEUS_SPR_IDW_Penaeus_duorarum_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_1989.tif
-SEUS_SPR_IDW_Penaeus_duorarum_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_1990.tif
-SEUS_SPR_IDW_Penaeus_duorarum_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_1991.tif
-SEUS_SPR_IDW_Penaeus_duorarum_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_1992.tif
-SEUS_SPR_IDW_Penaeus_duorarum_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_1993.tif
-SEUS_SPR_IDW_Penaeus_duorarum_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_1994.tif
-SEUS_SPR_IDW_Penaeus_duorarum_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_1995.tif
-SEUS_SPR_IDW_Penaeus_duorarum_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_1996.tif
-SEUS_SPR_IDW_Penaeus_duorarum_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_1997.tif
-SEUS_SPR_IDW_Penaeus_duorarum_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_1998.tif
-SEUS_SPR_IDW_Penaeus_duorarum_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_1999.tif
-SEUS_SPR_IDW_Penaeus_duorarum_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_2000.tif
-SEUS_SPR_IDW_Penaeus_duorarum_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_2001.tif
-SEUS_SPR_IDW_Penaeus_duorarum_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_2002.tif
-SEUS_SPR_IDW_Penaeus_duorarum_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_2003.tif
-SEUS_SPR_IDW_Penaeus_duorarum_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_2004.tif
-SEUS_SPR_IDW_Penaeus_duorarum_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_2005.tif
-SEUS_SPR_IDW_Penaeus_duorarum_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_2006.tif
-SEUS_SPR_IDW_Penaeus_duorarum_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_2007.tif
-SEUS_SPR_IDW_Penaeus_duorarum_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_2008.tif
-SEUS_SPR_IDW_Penaeus_duorarum_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_2009.tif
-SEUS_SPR_IDW_Penaeus_duorarum_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_2010.tif
-SEUS_SPR_IDW_Penaeus_duorarum_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_2011.tif
-SEUS_SPR_IDW_Penaeus_duorarum_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_2012.tif
-SEUS_SPR_IDW_Penaeus_duorarum_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_2013.tif
-SEUS_SPR_IDW_Penaeus_duorarum_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_2014.tif
-SEUS_SPR_IDW_Penaeus_duorarum_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_2015.tif
-SEUS_SPR_IDW_Penaeus_duorarum_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_2016.tif
-SEUS_SPR_IDW_Penaeus_duorarum_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_2017.tif
-SEUS_SPR_IDW_Penaeus_duorarum_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_2018.tif
-SEUS_SPR_IDW_Penaeus_duorarum_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus duorarum\SEUS_SPR_IDW_Penaeus_duorarum_2019.tif
-SEUS_SPR_IDW_Penaeus_setiferus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_1989.tif
-SEUS_SPR_IDW_Penaeus_setiferus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_1990.tif
-SEUS_SPR_IDW_Penaeus_setiferus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_1991.tif
-SEUS_SPR_IDW_Penaeus_setiferus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_1992.tif
-SEUS_SPR_IDW_Penaeus_setiferus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_1993.tif
-SEUS_SPR_IDW_Penaeus_setiferus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_1994.tif
-SEUS_SPR_IDW_Penaeus_setiferus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_1995.tif
-SEUS_SPR_IDW_Penaeus_setiferus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_1996.tif
-SEUS_SPR_IDW_Penaeus_setiferus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_1997.tif
-SEUS_SPR_IDW_Penaeus_setiferus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_1998.tif
-SEUS_SPR_IDW_Penaeus_setiferus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_1999.tif
-SEUS_SPR_IDW_Penaeus_setiferus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_2000.tif
-SEUS_SPR_IDW_Penaeus_setiferus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_2001.tif
-SEUS_SPR_IDW_Penaeus_setiferus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_2002.tif
-SEUS_SPR_IDW_Penaeus_setiferus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_2003.tif
-SEUS_SPR_IDW_Penaeus_setiferus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_2004.tif
-SEUS_SPR_IDW_Penaeus_setiferus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_2005.tif
-SEUS_SPR_IDW_Penaeus_setiferus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_2006.tif
-SEUS_SPR_IDW_Penaeus_setiferus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_2007.tif
-SEUS_SPR_IDW_Penaeus_setiferus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_2008.tif
-SEUS_SPR_IDW_Penaeus_setiferus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_2009.tif
-SEUS_SPR_IDW_Penaeus_setiferus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_2010.tif
-SEUS_SPR_IDW_Penaeus_setiferus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_2011.tif
-SEUS_SPR_IDW_Penaeus_setiferus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_2012.tif
-SEUS_SPR_IDW_Penaeus_setiferus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_2013.tif
-SEUS_SPR_IDW_Penaeus_setiferus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_2014.tif
-SEUS_SPR_IDW_Penaeus_setiferus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_2015.tif
-SEUS_SPR_IDW_Penaeus_setiferus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_2016.tif
-SEUS_SPR_IDW_Penaeus_setiferus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_2017.tif
-SEUS_SPR_IDW_Penaeus_setiferus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_2018.tif
-SEUS_SPR_IDW_Penaeus_setiferus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Penaeus setiferus\SEUS_SPR_IDW_Penaeus_setiferus_2019.tif
-SEUS_SPR_IDW_Peprilus_paru_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_1989.tif
-SEUS_SPR_IDW_Peprilus_paru_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_1990.tif
-SEUS_SPR_IDW_Peprilus_paru_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_1991.tif
-SEUS_SPR_IDW_Peprilus_paru_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_1992.tif
-SEUS_SPR_IDW_Peprilus_paru_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_1993.tif
-SEUS_SPR_IDW_Peprilus_paru_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_1994.tif
-SEUS_SPR_IDW_Peprilus_paru_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_1995.tif
-SEUS_SPR_IDW_Peprilus_paru_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_1996.tif
-SEUS_SPR_IDW_Peprilus_paru_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_1997.tif
-SEUS_SPR_IDW_Peprilus_paru_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_1998.tif
-SEUS_SPR_IDW_Peprilus_paru_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_1999.tif
-SEUS_SPR_IDW_Peprilus_paru_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2000.tif
-SEUS_SPR_IDW_Peprilus_paru_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2001.tif
-SEUS_SPR_IDW_Peprilus_paru_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:52:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2002.tif
-SEUS_SPR_IDW_Peprilus_paru_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2003.tif
-SEUS_SPR_IDW_Peprilus_paru_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2004.tif
-SEUS_SPR_IDW_Peprilus_paru_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2005.tif
-SEUS_SPR_IDW_Peprilus_paru_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2006.tif
-SEUS_SPR_IDW_Peprilus_paru_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2007.tif
-SEUS_SPR_IDW_Peprilus_paru_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2008.tif
-SEUS_SPR_IDW_Peprilus_paru_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2009.tif
-SEUS_SPR_IDW_Peprilus_paru_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2010.tif
-SEUS_SPR_IDW_Peprilus_paru_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2011.tif
-SEUS_SPR_IDW_Peprilus_paru_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2012.tif
-SEUS_SPR_IDW_Peprilus_paru_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2013.tif
-SEUS_SPR_IDW_Peprilus_paru_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2014.tif
-SEUS_SPR_IDW_Peprilus_paru_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2015.tif
-SEUS_SPR_IDW_Peprilus_paru_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2016.tif
-SEUS_SPR_IDW_Peprilus_paru_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2017.tif
-SEUS_SPR_IDW_Peprilus_paru_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2018.tif
-SEUS_SPR_IDW_Peprilus_paru_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2019.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_1989.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_1990.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_1991.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_1992.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_1993.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_1994.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_1995.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_1996.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_1997.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_1998.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_1999.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2000.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2001.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2002.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2003.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2004.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2005.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2006.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2007.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2008.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2009.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2010.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2011.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2012.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2013.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2014.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2015.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2016.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2017.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2018.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2019.tif
-SEUS_SPR_IDW_Persephona_mediterranea_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_1989.tif
-SEUS_SPR_IDW_Persephona_mediterranea_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_1990.tif
-SEUS_SPR_IDW_Persephona_mediterranea_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_1991.tif
-SEUS_SPR_IDW_Persephona_mediterranea_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_1992.tif
-SEUS_SPR_IDW_Persephona_mediterranea_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_1993.tif
-SEUS_SPR_IDW_Persephona_mediterranea_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_1994.tif
-SEUS_SPR_IDW_Persephona_mediterranea_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_1995.tif
-SEUS_SPR_IDW_Persephona_mediterranea_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_1996.tif
-SEUS_SPR_IDW_Persephona_mediterranea_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_1997.tif
-SEUS_SPR_IDW_Persephona_mediterranea_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_1998.tif
-SEUS_SPR_IDW_Persephona_mediterranea_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_1999.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2000.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2001.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2002.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2003.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2004.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2005.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2006.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2007.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2008.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2009.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2010.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2011.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2012.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2013.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2014.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2015.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2016.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2017.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2018.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2019.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_1989.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_1990.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_1991.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_1992.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_1993.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_1994.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_1995.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_1996.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_1997.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_1998.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_1999.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2000.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2001.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2002.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2003.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2004.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2005.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2006.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2007.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2008.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2009.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2010.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2011.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2012.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2013.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2014.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2015.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2016.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2017.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2018.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2019.tif
-SEUS_SPR_IDW_Prionotus_carolinus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_1989.tif
-SEUS_SPR_IDW_Prionotus_carolinus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_1990.tif
-SEUS_SPR_IDW_Prionotus_carolinus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_1991.tif
-SEUS_SPR_IDW_Prionotus_carolinus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_1992.tif
-SEUS_SPR_IDW_Prionotus_carolinus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_1993.tif
-SEUS_SPR_IDW_Prionotus_carolinus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_1994.tif
-SEUS_SPR_IDW_Prionotus_carolinus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_1995.tif
-SEUS_SPR_IDW_Prionotus_carolinus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_1996.tif
-SEUS_SPR_IDW_Prionotus_carolinus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_1997.tif
-SEUS_SPR_IDW_Prionotus_carolinus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_1998.tif
-SEUS_SPR_IDW_Prionotus_carolinus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_1999.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2000.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2001.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2002.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2003.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2004.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2005.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2006.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2007.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2008.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2009.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2010.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2011.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2012.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2013.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2014.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2015.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2016.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2017.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2018.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2019.tif
-SEUS_SPR_IDW_Prionotus_scitulus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_1989.tif
-SEUS_SPR_IDW_Prionotus_scitulus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_1990.tif
-SEUS_SPR_IDW_Prionotus_scitulus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_1991.tif
-SEUS_SPR_IDW_Prionotus_scitulus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_1992.tif
-SEUS_SPR_IDW_Prionotus_scitulus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_1993.tif
-SEUS_SPR_IDW_Prionotus_scitulus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_1994.tif
-SEUS_SPR_IDW_Prionotus_scitulus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_1995.tif
-SEUS_SPR_IDW_Prionotus_scitulus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_1996.tif
-SEUS_SPR_IDW_Prionotus_scitulus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_1997.tif
-SEUS_SPR_IDW_Prionotus_scitulus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_1998.tif
-SEUS_SPR_IDW_Prionotus_scitulus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_1999.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2000.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2001.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2002.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2003.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2004.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2005.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2006.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2007.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2008.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2009.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2010.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2011.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2012.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2013.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2014.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2015.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2016.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2017.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2018.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2019.tif
-SEUS_SPR_IDW_Prionotus_tribulus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_1989.tif
-SEUS_SPR_IDW_Prionotus_tribulus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_1990.tif
-SEUS_SPR_IDW_Prionotus_tribulus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_1991.tif
-SEUS_SPR_IDW_Prionotus_tribulus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_1992.tif
-SEUS_SPR_IDW_Prionotus_tribulus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_1993.tif
-SEUS_SPR_IDW_Prionotus_tribulus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_1994.tif
-SEUS_SPR_IDW_Prionotus_tribulus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_1995.tif
-SEUS_SPR_IDW_Prionotus_tribulus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_1996.tif
-SEUS_SPR_IDW_Prionotus_tribulus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_1997.tif
-SEUS_SPR_IDW_Prionotus_tribulus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_1998.tif
-SEUS_SPR_IDW_Prionotus_tribulus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_1999.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2000.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2001.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2002.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2003.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2004.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2005.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2006.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2007.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2008.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2009.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2010.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2011.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2012.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2013.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2014.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2015.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2016.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2017.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2018.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2019.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_1989.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_1990.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_1991.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_1992.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_1993.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_1994.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_1995.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_1996.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_1997.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_1998.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_1999.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2000.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2001.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2002.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2003.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2004.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2005.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2006.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2007.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2008.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2009.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2010.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2011.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2012.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2013.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2014.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2015.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2016.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2017.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2018.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2019.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1989.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1990.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1991.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1992.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1993.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1994.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1995.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1996.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1997.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1998.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1999.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2000.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2001.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2002.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2003.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2004.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2005.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:53:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2006.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2007.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2008.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2009.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2010.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2011.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2012.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2013.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2014.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2015.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2016.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2017.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2018.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2019.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_1989.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_1990.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_1991.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_1992.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_1993.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_1994.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_1995.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_1996.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_1997.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_1998.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_1999.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_2000.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_2001.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_2002.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_2003.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_2004.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_2005.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_2006.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_2007.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_2008.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_2009.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_2010.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_2011.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_2012.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_2013.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_2014.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_2015.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_2016.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_2017.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_2018.tif
-SEUS_SPR_IDW_Rostroraja_eglanteria_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Rostroraja eglanteria\SEUS_SPR_IDW_Rostroraja_eglanteria_2019.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_1989.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_1990.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_1991.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_1992.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_1993.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_1994.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_1995.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_1996.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_1997.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_1998.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_1999.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2000.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2001.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2002.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2003.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2004.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2005.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2006.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2007.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2008.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2009.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2010.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2011.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2012.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2013.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2014.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2015.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2016.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2017.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2018.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2019.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_1989.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_1990.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_1991.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_1992.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_1993.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_1994.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_1995.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_1996.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_1997.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_1998.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_1999.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2000.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2001.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2002.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2003.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2004.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2005.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2006.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2007.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2008.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2009.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2010.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2011.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2012.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2013.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2014.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2015.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2016.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2017.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2018.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2019.tif
-SEUS_SPR_IDW_Selene_setapinnis_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_1989.tif
-SEUS_SPR_IDW_Selene_setapinnis_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_1990.tif
-SEUS_SPR_IDW_Selene_setapinnis_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_1991.tif
-SEUS_SPR_IDW_Selene_setapinnis_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_1992.tif
-SEUS_SPR_IDW_Selene_setapinnis_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_1993.tif
-SEUS_SPR_IDW_Selene_setapinnis_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_1994.tif
-SEUS_SPR_IDW_Selene_setapinnis_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_1995.tif
-SEUS_SPR_IDW_Selene_setapinnis_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_1996.tif
-SEUS_SPR_IDW_Selene_setapinnis_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_1997.tif
-SEUS_SPR_IDW_Selene_setapinnis_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_1998.tif
-SEUS_SPR_IDW_Selene_setapinnis_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_1999.tif
-SEUS_SPR_IDW_Selene_setapinnis_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2000.tif
-SEUS_SPR_IDW_Selene_setapinnis_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2001.tif
-SEUS_SPR_IDW_Selene_setapinnis_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2002.tif
-SEUS_SPR_IDW_Selene_setapinnis_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2003.tif
-SEUS_SPR_IDW_Selene_setapinnis_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2004.tif
-SEUS_SPR_IDW_Selene_setapinnis_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2005.tif
-SEUS_SPR_IDW_Selene_setapinnis_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2006.tif
-SEUS_SPR_IDW_Selene_setapinnis_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2007.tif
-SEUS_SPR_IDW_Selene_setapinnis_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2008.tif
-SEUS_SPR_IDW_Selene_setapinnis_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2009.tif
-SEUS_SPR_IDW_Selene_setapinnis_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2010.tif
-SEUS_SPR_IDW_Selene_setapinnis_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2011.tif
-SEUS_SPR_IDW_Selene_setapinnis_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2012.tif
-SEUS_SPR_IDW_Selene_setapinnis_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2013.tif
-SEUS_SPR_IDW_Selene_setapinnis_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2014.tif
-SEUS_SPR_IDW_Selene_setapinnis_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2015.tif
-SEUS_SPR_IDW_Selene_setapinnis_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2016.tif
-SEUS_SPR_IDW_Selene_setapinnis_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2017.tif
-SEUS_SPR_IDW_Selene_setapinnis_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2018.tif
-SEUS_SPR_IDW_Selene_setapinnis_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2019.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_1989.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_1990.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_1991.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_1992.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_1993.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_1994.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_1995.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_1996.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_1997.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_1998.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_1999.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2000.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2001.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2002.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2003.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2004.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2005.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2006.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2007.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2008.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2009.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2010.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2011.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2012.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2013.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2014.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2015.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2016.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2017.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2018.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2019.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_1989.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_1990.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_1991.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_1992.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_1993.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_1994.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_1995.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_1996.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_1997.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_1998.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_1999.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2000.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2001.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2002.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2003.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2004.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2005.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2006.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2007.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2008.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2009.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2010.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2011.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2012.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2013.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2014.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2015.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2016.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2017.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2018.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2019.tif
-SEUS_SPR_IDW_Squilla_empusa_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_1989.tif
-SEUS_SPR_IDW_Squilla_empusa_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_1990.tif
-SEUS_SPR_IDW_Squilla_empusa_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_1991.tif
-SEUS_SPR_IDW_Squilla_empusa_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_1992.tif
-SEUS_SPR_IDW_Squilla_empusa_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_1993.tif
-SEUS_SPR_IDW_Squilla_empusa_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_1994.tif
-SEUS_SPR_IDW_Squilla_empusa_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_1995.tif
-SEUS_SPR_IDW_Squilla_empusa_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_1996.tif
-SEUS_SPR_IDW_Squilla_empusa_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_1997.tif
-SEUS_SPR_IDW_Squilla_empusa_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_1998.tif
-SEUS_SPR_IDW_Squilla_empusa_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_1999.tif
-SEUS_SPR_IDW_Squilla_empusa_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2000.tif
-SEUS_SPR_IDW_Squilla_empusa_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2001.tif
-SEUS_SPR_IDW_Squilla_empusa_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2002.tif
-SEUS_SPR_IDW_Squilla_empusa_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2003.tif
-SEUS_SPR_IDW_Squilla_empusa_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2004.tif
-SEUS_SPR_IDW_Squilla_empusa_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2005.tif
-SEUS_SPR_IDW_Squilla_empusa_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2006.tif
-SEUS_SPR_IDW_Squilla_empusa_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2007.tif
-SEUS_SPR_IDW_Squilla_empusa_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2008.tif
-SEUS_SPR_IDW_Squilla_empusa_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2009.tif
-SEUS_SPR_IDW_Squilla_empusa_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2010.tif
-SEUS_SPR_IDW_Squilla_empusa_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2011.tif
-SEUS_SPR_IDW_Squilla_empusa_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2012.tif
-SEUS_SPR_IDW_Squilla_empusa_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2013.tif
-SEUS_SPR_IDW_Squilla_empusa_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2014.tif
-SEUS_SPR_IDW_Squilla_empusa_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2015.tif
-SEUS_SPR_IDW_Squilla_empusa_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2016.tif
-SEUS_SPR_IDW_Squilla_empusa_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2017.tif
-SEUS_SPR_IDW_Squilla_empusa_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2018.tif
-SEUS_SPR_IDW_Squilla_empusa_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2019.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_1989.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_1990.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_1991.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_1992.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_1993.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_1994.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_1995.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_1996.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_1997.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_1998.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_1999.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2000.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2001.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2002.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2003.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:54:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2004.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2005.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2006.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2007.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2008.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2009.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2010.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2011.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2012.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2013.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2014.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2015.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2016.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2017.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2018.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2019.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_1989.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_1990.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_1991.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_1992.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_1993.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_1994.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_1995.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_1996.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_1997.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_1998.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_1999.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2000.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2001.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2002.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2003.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2004.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2005.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2006.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2007.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2008.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2009.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2010.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2011.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2012.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2013.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2014.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2015.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2016.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2017.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2018.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2019.tif
-SEUS_SPR_IDW_Synodus_foetens_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_1989.tif
-SEUS_SPR_IDW_Synodus_foetens_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_1990.tif
-SEUS_SPR_IDW_Synodus_foetens_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_1991.tif
-SEUS_SPR_IDW_Synodus_foetens_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_1992.tif
-SEUS_SPR_IDW_Synodus_foetens_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_1993.tif
-SEUS_SPR_IDW_Synodus_foetens_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_1994.tif
-SEUS_SPR_IDW_Synodus_foetens_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_1995.tif
-SEUS_SPR_IDW_Synodus_foetens_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_1996.tif
-SEUS_SPR_IDW_Synodus_foetens_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_1997.tif
-SEUS_SPR_IDW_Synodus_foetens_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_1998.tif
-SEUS_SPR_IDW_Synodus_foetens_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_1999.tif
-SEUS_SPR_IDW_Synodus_foetens_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2000.tif
-SEUS_SPR_IDW_Synodus_foetens_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2001.tif
-SEUS_SPR_IDW_Synodus_foetens_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2002.tif
-SEUS_SPR_IDW_Synodus_foetens_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2003.tif
-SEUS_SPR_IDW_Synodus_foetens_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2004.tif
-SEUS_SPR_IDW_Synodus_foetens_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2005.tif
-SEUS_SPR_IDW_Synodus_foetens_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2006.tif
-SEUS_SPR_IDW_Synodus_foetens_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2007.tif
-SEUS_SPR_IDW_Synodus_foetens_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2008.tif
-SEUS_SPR_IDW_Synodus_foetens_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2009.tif
-SEUS_SPR_IDW_Synodus_foetens_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2010.tif
-SEUS_SPR_IDW_Synodus_foetens_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2011.tif
-SEUS_SPR_IDW_Synodus_foetens_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2012.tif
-SEUS_SPR_IDW_Synodus_foetens_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2013.tif
-SEUS_SPR_IDW_Synodus_foetens_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2014.tif
-SEUS_SPR_IDW_Synodus_foetens_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2015.tif
-SEUS_SPR_IDW_Synodus_foetens_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2016.tif
-SEUS_SPR_IDW_Synodus_foetens_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2017.tif
-SEUS_SPR_IDW_Synodus_foetens_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2018.tif
-SEUS_SPR_IDW_Synodus_foetens_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2019.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_1989.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_1990.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_1991.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_1992.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_1993.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_1994.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_1995.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_1996.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_1997.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_1998.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_1999.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2000.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2001.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2002.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2003.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2004.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2005.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2006.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2007.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2008.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2009.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2010.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2011.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2012.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2013.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2014.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2015.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2016.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2017.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2018.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2019.tif
-SEUS_SPR_IDW_Trinectes_maculatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_1989.tif
-SEUS_SPR_IDW_Trinectes_maculatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_1990.tif
-SEUS_SPR_IDW_Trinectes_maculatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_1991.tif
-SEUS_SPR_IDW_Trinectes_maculatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_1992.tif
-SEUS_SPR_IDW_Trinectes_maculatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_1993.tif
-SEUS_SPR_IDW_Trinectes_maculatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_1994.tif
-SEUS_SPR_IDW_Trinectes_maculatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_1995.tif
-SEUS_SPR_IDW_Trinectes_maculatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_1996.tif
-SEUS_SPR_IDW_Trinectes_maculatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_1997.tif
-SEUS_SPR_IDW_Trinectes_maculatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_1998.tif
-SEUS_SPR_IDW_Trinectes_maculatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_1999.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2000.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2001.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2002.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2003.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2004.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2005.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2006.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2007.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2008.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2009.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2010.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2011.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2012.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2013.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2014.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2015.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2016.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2017.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2018.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2019.tif
-SEUS_SPR_IDW_Urophycis_regia_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_1989.tif
-SEUS_SPR_IDW_Urophycis_regia_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_1990.tif
-SEUS_SPR_IDW_Urophycis_regia_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_1991.tif
-SEUS_SPR_IDW_Urophycis_regia_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_1992.tif
-SEUS_SPR_IDW_Urophycis_regia_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_1993.tif
-SEUS_SPR_IDW_Urophycis_regia_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_1994.tif
-SEUS_SPR_IDW_Urophycis_regia_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_1995.tif
-SEUS_SPR_IDW_Urophycis_regia_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_1996.tif
-SEUS_SPR_IDW_Urophycis_regia_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_1997.tif
-SEUS_SPR_IDW_Urophycis_regia_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_1998.tif
-SEUS_SPR_IDW_Urophycis_regia_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_1999.tif
-SEUS_SPR_IDW_Urophycis_regia_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2000.tif
-SEUS_SPR_IDW_Urophycis_regia_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2001.tif
-SEUS_SPR_IDW_Urophycis_regia_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2002.tif
-SEUS_SPR_IDW_Urophycis_regia_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2003.tif
-SEUS_SPR_IDW_Urophycis_regia_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2004.tif
-SEUS_SPR_IDW_Urophycis_regia_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2005.tif
-SEUS_SPR_IDW_Urophycis_regia_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2006.tif
-SEUS_SPR_IDW_Urophycis_regia_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2007.tif
-SEUS_SPR_IDW_Urophycis_regia_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2008.tif
-SEUS_SPR_IDW_Urophycis_regia_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2009.tif
-SEUS_SPR_IDW_Urophycis_regia_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2010.tif
-SEUS_SPR_IDW_Urophycis_regia_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2011.tif
-SEUS_SPR_IDW_Urophycis_regia_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2012.tif
-SEUS_SPR_IDW_Urophycis_regia_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2013.tif
-SEUS_SPR_IDW_Urophycis_regia_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2014.tif
-SEUS_SPR_IDW_Urophycis_regia_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2015.tif
-SEUS_SPR_IDW_Urophycis_regia_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2016.tif
-SEUS_SPR_IDW_Urophycis_regia_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2017.tif
-SEUS_SPR_IDW_Urophycis_regia_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2018.tif
-SEUS_SPR_IDW_Urophycis_regia_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2019.tif
-SEUS_SPR_IDW_Core_Species_Richness_1989.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_1989.tif
-SEUS_SPR_IDW_Core_Species_Richness_1990.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_1990.tif
-SEUS_SPR_IDW_Core_Species_Richness_1991.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_1991.tif
-SEUS_SPR_IDW_Core_Species_Richness_1992.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_1992.tif
-SEUS_SPR_IDW_Core_Species_Richness_1993.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_1993.tif
-SEUS_SPR_IDW_Core_Species_Richness_1994.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_1994.tif
-SEUS_SPR_IDW_Core_Species_Richness_1995.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_1995.tif
-SEUS_SPR_IDW_Core_Species_Richness_1996.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_1996.tif
-SEUS_SPR_IDW_Core_Species_Richness_1997.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_1997.tif
-SEUS_SPR_IDW_Core_Species_Richness_1998.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_1998.tif
-SEUS_SPR_IDW_Core_Species_Richness_1999.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_1999.tif
-SEUS_SPR_IDW_Core_Species_Richness_2000.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2000.tif
-SEUS_SPR_IDW_Core_Species_Richness_2001.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2001.tif
-SEUS_SPR_IDW_Core_Species_Richness_2002.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2002.tif
-SEUS_SPR_IDW_Core_Species_Richness_2003.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2003.tif
-SEUS_SPR_IDW_Core_Species_Richness_2004.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2004.tif
-SEUS_SPR_IDW_Core_Species_Richness_2005.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2005.tif
-SEUS_SPR_IDW_Core_Species_Richness_2006.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2006.tif
-SEUS_SPR_IDW_Core_Species_Richness_2007.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2007.tif
-SEUS_SPR_IDW_Core_Species_Richness_2008.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2008.tif
-SEUS_SPR_IDW_Core_Species_Richness_2009.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2009.tif
-SEUS_SPR_IDW_Core_Species_Richness_2010.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2010.tif
-SEUS_SPR_IDW_Core_Species_Richness_2011.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2011.tif
-SEUS_SPR_IDW_Core_Species_Richness_2012.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2012.tif
-SEUS_SPR_IDW_Core_Species_Richness_2013.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2013.tif
-SEUS_SPR_IDW_Core_Species_Richness_2014.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2014.tif
-SEUS_SPR_IDW_Core_Species_Richness_2015.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2015.tif
-SEUS_SPR_IDW_Core_Species_Richness_2016.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2016.tif
-SEUS_SPR_IDW_Core_Species_Richness_2017.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2017.tif
-SEUS_SPR_IDW_Core_Species_Richness_2018.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2018.tif
-SEUS_SPR_IDW_Core_Species_Richness_2019.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2019.tif
-SEUS_SPR_IDW_Species_Richness_1989.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_1989.tif
-SEUS_SPR_IDW_Species_Richness_1990.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_1990.tif
-SEUS_SPR_IDW_Species_Richness_1991.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_1991.tif
-SEUS_SPR_IDW_Species_Richness_1992.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_1992.tif
-SEUS_SPR_IDW_Species_Richness_1993.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_1993.tif
-SEUS_SPR_IDW_Species_Richness_1994.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_1994.tif
-SEUS_SPR_IDW_Species_Richness_1995.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_1995.tif
-SEUS_SPR_IDW_Species_Richness_1996.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_1996.tif
-SEUS_SPR_IDW_Species_Richness_1997.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_1997.tif
-SEUS_SPR_IDW_Species_Richness_1998.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_1998.tif
-SEUS_SPR_IDW_Species_Richness_1999.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_1999.tif
-SEUS_SPR_IDW_Species_Richness_2000.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2000.tif
-SEUS_SPR_IDW_Species_Richness_2001.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2001.tif
-SEUS_SPR_IDW_Species_Richness_2002.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2002.tif
-SEUS_SPR_IDW_Species_Richness_2003.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2003.tif
-SEUS_SPR_IDW_Species_Richness_2004.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2004.tif
-SEUS_SPR_IDW_Species_Richness_2005.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2005.tif
-SEUS_SPR_IDW_Species_Richness_2006.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2006.tif
-SEUS_SPR_IDW_Species_Richness_2007.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2007.tif
-SEUS_SPR_IDW_Species_Richness_2008.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2008.tif
-SEUS_SPR_IDW_Species_Richness_2009.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2009.tif
-SEUS_SPR_IDW_Species_Richness_2010.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2010.tif
-SEUS_SPR_IDW_Species_Richness_2011.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2011.tif
-SEUS_SPR_IDW_Species_Richness_2012.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2012.tif
-SEUS_SPR_IDW_Species_Richness_2013.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2013.tif
-SEUS_SPR_IDW_Species_Richness_2014.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2014.tif
-SEUS_SPR_IDW_Species_Richness_2015.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2015.tif
-SEUS_SPR_IDW_Species_Richness_2016.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2016.tif
-SEUS_SPR_IDW_Species_Richness_2017.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2017.tif
-SEUS_SPR_IDW_Species_Richness_2018.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2018.tif
-SEUS_SPR_IDW_Species_Richness_2019.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2019.tif
-SEUS_SUM_IDW_Achelous_gibbesii_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_1989.tif
-SEUS_SUM_IDW_Achelous_gibbesii_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_1990.tif
-SEUS_SUM_IDW_Achelous_gibbesii_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_1991.tif
-SEUS_SUM_IDW_Achelous_gibbesii_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_1992.tif
-SEUS_SUM_IDW_Achelous_gibbesii_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_1993.tif
-SEUS_SUM_IDW_Achelous_gibbesii_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_1994.tif
-SEUS_SUM_IDW_Achelous_gibbesii_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_1995.tif
-SEUS_SUM_IDW_Achelous_gibbesii_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_1996.tif
-SEUS_SUM_IDW_Achelous_gibbesii_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_1997.tif
-SEUS_SUM_IDW_Achelous_gibbesii_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_1998.tif
-SEUS_SUM_IDW_Achelous_gibbesii_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_1999.tif
-SEUS_SUM_IDW_Achelous_gibbesii_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_2000.tif
-SEUS_SUM_IDW_Achelous_gibbesii_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_2001.tif
-SEUS_SUM_IDW_Achelous_gibbesii_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:55:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_2002.tif
-SEUS_SUM_IDW_Achelous_gibbesii_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_2003.tif
-SEUS_SUM_IDW_Achelous_gibbesii_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_2004.tif
-SEUS_SUM_IDW_Achelous_gibbesii_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_2005.tif
-SEUS_SUM_IDW_Achelous_gibbesii_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_2006.tif
-SEUS_SUM_IDW_Achelous_gibbesii_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_2007.tif
-SEUS_SUM_IDW_Achelous_gibbesii_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_2008.tif
-SEUS_SUM_IDW_Achelous_gibbesii_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_2009.tif
-SEUS_SUM_IDW_Achelous_gibbesii_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_2010.tif
-SEUS_SUM_IDW_Achelous_gibbesii_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_2011.tif
-SEUS_SUM_IDW_Achelous_gibbesii_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_2012.tif
-SEUS_SUM_IDW_Achelous_gibbesii_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_2013.tif
-SEUS_SUM_IDW_Achelous_gibbesii_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_2014.tif
-SEUS_SUM_IDW_Achelous_gibbesii_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_2015.tif
-SEUS_SUM_IDW_Achelous_gibbesii_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_2016.tif
-SEUS_SUM_IDW_Achelous_gibbesii_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_2017.tif
-SEUS_SUM_IDW_Achelous_gibbesii_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_2018.tif
-SEUS_SUM_IDW_Achelous_gibbesii_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous gibbesii\SEUS_SUM_IDW_Achelous_gibbesii_2019.tif
-SEUS_SUM_IDW_Achelous_spinimanus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_1989.tif
-SEUS_SUM_IDW_Achelous_spinimanus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_1990.tif
-SEUS_SUM_IDW_Achelous_spinimanus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_1991.tif
-SEUS_SUM_IDW_Achelous_spinimanus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_1992.tif
-SEUS_SUM_IDW_Achelous_spinimanus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_1993.tif
-SEUS_SUM_IDW_Achelous_spinimanus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_1994.tif
-SEUS_SUM_IDW_Achelous_spinimanus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_1995.tif
-SEUS_SUM_IDW_Achelous_spinimanus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_1996.tif
-SEUS_SUM_IDW_Achelous_spinimanus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_1997.tif
-SEUS_SUM_IDW_Achelous_spinimanus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_1998.tif
-SEUS_SUM_IDW_Achelous_spinimanus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_1999.tif
-SEUS_SUM_IDW_Achelous_spinimanus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_2000.tif
-SEUS_SUM_IDW_Achelous_spinimanus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_2001.tif
-SEUS_SUM_IDW_Achelous_spinimanus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_2002.tif
-SEUS_SUM_IDW_Achelous_spinimanus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_2003.tif
-SEUS_SUM_IDW_Achelous_spinimanus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_2004.tif
-SEUS_SUM_IDW_Achelous_spinimanus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_2005.tif
-SEUS_SUM_IDW_Achelous_spinimanus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_2006.tif
-SEUS_SUM_IDW_Achelous_spinimanus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_2007.tif
-SEUS_SUM_IDW_Achelous_spinimanus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_2008.tif
-SEUS_SUM_IDW_Achelous_spinimanus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_2009.tif
-SEUS_SUM_IDW_Achelous_spinimanus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_2010.tif
-SEUS_SUM_IDW_Achelous_spinimanus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_2011.tif
-SEUS_SUM_IDW_Achelous_spinimanus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_2012.tif
-SEUS_SUM_IDW_Achelous_spinimanus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_2013.tif
-SEUS_SUM_IDW_Achelous_spinimanus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_2014.tif
-SEUS_SUM_IDW_Achelous_spinimanus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_2015.tif
-SEUS_SUM_IDW_Achelous_spinimanus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_2016.tif
-SEUS_SUM_IDW_Achelous_spinimanus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_2017.tif
-SEUS_SUM_IDW_Achelous_spinimanus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_2018.tif
-SEUS_SUM_IDW_Achelous_spinimanus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Achelous spinimanus\SEUS_SUM_IDW_Achelous_spinimanus_2019.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1989.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1990.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1991.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1992.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1993.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1994.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1995.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1996.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1997.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1998.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1999.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2000.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2001.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2002.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2003.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2004.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2005.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2006.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2007.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2008.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2009.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2010.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2011.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2012.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2013.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2014.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2015.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2016.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2017.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2018.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2019.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_1989.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_1990.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_1991.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_1992.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_1993.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_1994.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_1995.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_1996.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_1997.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_1998.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_1999.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2000.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2001.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2002.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2003.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2004.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2005.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2006.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2007.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2008.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2009.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2010.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2011.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2012.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2013.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2014.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2015.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2016.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2017.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2018.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2019.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_1989.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_1990.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_1991.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_1992.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_1993.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_1994.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_1995.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_1996.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_1997.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_1998.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_1999.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2000.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2001.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2002.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2003.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2004.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2005.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2006.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2007.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2008.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2009.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2010.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2011.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2012.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2013.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2014.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2015.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2016.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2017.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2018.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2019.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_1989.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_1990.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_1991.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_1992.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_1993.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_1994.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_1995.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_1996.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_1997.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_1998.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_1999.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2000.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2001.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2002.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2003.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2004.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2005.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2006.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2007.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2008.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2009.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2010.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2011.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2012.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2013.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2014.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2015.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2016.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2017.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2018.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2019.tif
-SEUS_SUM_IDW_Callinectes_ornatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_1989.tif
-SEUS_SUM_IDW_Callinectes_ornatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_1990.tif
-SEUS_SUM_IDW_Callinectes_ornatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_1991.tif
-SEUS_SUM_IDW_Callinectes_ornatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_1992.tif
-SEUS_SUM_IDW_Callinectes_ornatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_1993.tif
-SEUS_SUM_IDW_Callinectes_ornatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_1994.tif
-SEUS_SUM_IDW_Callinectes_ornatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_1995.tif
-SEUS_SUM_IDW_Callinectes_ornatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_1996.tif
-SEUS_SUM_IDW_Callinectes_ornatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_1997.tif
-SEUS_SUM_IDW_Callinectes_ornatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_1998.tif
-SEUS_SUM_IDW_Callinectes_ornatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_1999.tif
-SEUS_SUM_IDW_Callinectes_ornatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_2000.tif
-SEUS_SUM_IDW_Callinectes_ornatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_2001.tif
-SEUS_SUM_IDW_Callinectes_ornatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_2002.tif
-SEUS_SUM_IDW_Callinectes_ornatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_2003.tif
-SEUS_SUM_IDW_Callinectes_ornatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_2004.tif
-SEUS_SUM_IDW_Callinectes_ornatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_2005.tif
-SEUS_SUM_IDW_Callinectes_ornatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_2006.tif
-SEUS_SUM_IDW_Callinectes_ornatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_2007.tif
-SEUS_SUM_IDW_Callinectes_ornatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_2008.tif
-SEUS_SUM_IDW_Callinectes_ornatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_2009.tif
-SEUS_SUM_IDW_Callinectes_ornatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_2010.tif
-SEUS_SUM_IDW_Callinectes_ornatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_2011.tif
-SEUS_SUM_IDW_Callinectes_ornatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_2012.tif
-SEUS_SUM_IDW_Callinectes_ornatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_2013.tif
-SEUS_SUM_IDW_Callinectes_ornatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_2014.tif
-SEUS_SUM_IDW_Callinectes_ornatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_2015.tif
-SEUS_SUM_IDW_Callinectes_ornatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_2016.tif
-SEUS_SUM_IDW_Callinectes_ornatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_2017.tif
-SEUS_SUM_IDW_Callinectes_ornatus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_2018.tif
-SEUS_SUM_IDW_Callinectes_ornatus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes ornatus\SEUS_SUM_IDW_Callinectes_ornatus_2019.tif
-SEUS_SUM_IDW_Callinectes_sapidus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_1989.tif
-SEUS_SUM_IDW_Callinectes_sapidus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_1990.tif
-SEUS_SUM_IDW_Callinectes_sapidus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_1991.tif
-SEUS_SUM_IDW_Callinectes_sapidus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_1992.tif
-SEUS_SUM_IDW_Callinectes_sapidus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_1993.tif
-SEUS_SUM_IDW_Callinectes_sapidus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_1994.tif
-SEUS_SUM_IDW_Callinectes_sapidus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_1995.tif
-SEUS_SUM_IDW_Callinectes_sapidus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_1996.tif
-SEUS_SUM_IDW_Callinectes_sapidus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_1997.tif
-SEUS_SUM_IDW_Callinectes_sapidus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_1998.tif
-SEUS_SUM_IDW_Callinectes_sapidus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_1999.tif
-SEUS_SUM_IDW_Callinectes_sapidus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_2000.tif
-SEUS_SUM_IDW_Callinectes_sapidus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_2001.tif
-SEUS_SUM_IDW_Callinectes_sapidus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_2002.tif
-SEUS_SUM_IDW_Callinectes_sapidus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_2003.tif
-SEUS_SUM_IDW_Callinectes_sapidus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_2004.tif
-SEUS_SUM_IDW_Callinectes_sapidus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_2005.tif
-SEUS_SUM_IDW_Callinectes_sapidus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_2006.tif
-SEUS_SUM_IDW_Callinectes_sapidus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_2007.tif
-SEUS_SUM_IDW_Callinectes_sapidus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_2008.tif
-SEUS_SUM_IDW_Callinectes_sapidus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_2009.tif
-SEUS_SUM_IDW_Callinectes_sapidus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_2010.tif
-SEUS_SUM_IDW_Callinectes_sapidus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_2011.tif
-SEUS_SUM_IDW_Callinectes_sapidus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_2012.tif
-SEUS_SUM_IDW_Callinectes_sapidus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_2013.tif
-SEUS_SUM_IDW_Callinectes_sapidus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_2014.tif
-SEUS_SUM_IDW_Callinectes_sapidus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_2015.tif
-SEUS_SUM_IDW_Callinectes_sapidus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_2016.tif
-SEUS_SUM_IDW_Callinectes_sapidus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_2017.tif
-SEUS_SUM_IDW_Callinectes_sapidus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_2018.tif
-SEUS_SUM_IDW_Callinectes_sapidus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes sapidus\SEUS_SUM_IDW_Callinectes_sapidus_2019.tif
-SEUS_SUM_IDW_Callinectes_similis_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_1989.tif
-SEUS_SUM_IDW_Callinectes_similis_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_1990.tif
-SEUS_SUM_IDW_Callinectes_similis_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_1991.tif
-SEUS_SUM_IDW_Callinectes_similis_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_1992.tif
-SEUS_SUM_IDW_Callinectes_similis_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_1993.tif
-SEUS_SUM_IDW_Callinectes_similis_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_1994.tif
-SEUS_SUM_IDW_Callinectes_similis_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_1995.tif
-SEUS_SUM_IDW_Callinectes_similis_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_1996.tif
-SEUS_SUM_IDW_Callinectes_similis_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_1997.tif
-SEUS_SUM_IDW_Callinectes_similis_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_1998.tif
-SEUS_SUM_IDW_Callinectes_similis_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_1999.tif
-SEUS_SUM_IDW_Callinectes_similis_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_2000.tif
-SEUS_SUM_IDW_Callinectes_similis_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_2001.tif
-SEUS_SUM_IDW_Callinectes_similis_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_2002.tif
-SEUS_SUM_IDW_Callinectes_similis_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_2003.tif
-SEUS_SUM_IDW_Callinectes_similis_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_2004.tif
-SEUS_SUM_IDW_Callinectes_similis_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_2005.tif
-SEUS_SUM_IDW_Callinectes_similis_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_2006.tif
-SEUS_SUM_IDW_Callinectes_similis_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_2007.tif
-SEUS_SUM_IDW_Callinectes_similis_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_2008.tif
-SEUS_SUM_IDW_Callinectes_similis_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_2009.tif
-SEUS_SUM_IDW_Callinectes_similis_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_2010.tif
-SEUS_SUM_IDW_Callinectes_similis_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_2011.tif
-SEUS_SUM_IDW_Callinectes_similis_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_2012.tif
-SEUS_SUM_IDW_Callinectes_similis_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_2013.tif
-SEUS_SUM_IDW_Callinectes_similis_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_2014.tif
-SEUS_SUM_IDW_Callinectes_similis_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_2015.tif
-SEUS_SUM_IDW_Callinectes_similis_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_2016.tif
-SEUS_SUM_IDW_Callinectes_similis_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_2017.tif
-SEUS_SUM_IDW_Callinectes_similis_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_2018.tif
-SEUS_SUM_IDW_Callinectes_similis_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Callinectes similis\SEUS_SUM_IDW_Callinectes_similis_2019.tif
-SEUS_SUM_IDW_Caranx_crysos_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_1989.tif
-SEUS_SUM_IDW_Caranx_crysos_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_1990.tif
-SEUS_SUM_IDW_Caranx_crysos_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_1991.tif
-SEUS_SUM_IDW_Caranx_crysos_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_1992.tif
-SEUS_SUM_IDW_Caranx_crysos_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_1993.tif
-SEUS_SUM_IDW_Caranx_crysos_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_1994.tif
-SEUS_SUM_IDW_Caranx_crysos_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_1995.tif
-SEUS_SUM_IDW_Caranx_crysos_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_1996.tif
-SEUS_SUM_IDW_Caranx_crysos_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_1997.tif
-SEUS_SUM_IDW_Caranx_crysos_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_1998.tif
-SEUS_SUM_IDW_Caranx_crysos_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_1999.tif
-SEUS_SUM_IDW_Caranx_crysos_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_2000.tif
-SEUS_SUM_IDW_Caranx_crysos_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_2001.tif
-SEUS_SUM_IDW_Caranx_crysos_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_2002.tif
-SEUS_SUM_IDW_Caranx_crysos_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_2003.tif
-SEUS_SUM_IDW_Caranx_crysos_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:56:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_2004.tif
-SEUS_SUM_IDW_Caranx_crysos_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_2005.tif
-SEUS_SUM_IDW_Caranx_crysos_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_2006.tif
-SEUS_SUM_IDW_Caranx_crysos_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_2007.tif
-SEUS_SUM_IDW_Caranx_crysos_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_2008.tif
-SEUS_SUM_IDW_Caranx_crysos_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_2009.tif
-SEUS_SUM_IDW_Caranx_crysos_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_2010.tif
-SEUS_SUM_IDW_Caranx_crysos_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_2011.tif
-SEUS_SUM_IDW_Caranx_crysos_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_2012.tif
-SEUS_SUM_IDW_Caranx_crysos_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_2013.tif
-SEUS_SUM_IDW_Caranx_crysos_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_2014.tif
-SEUS_SUM_IDW_Caranx_crysos_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_2015.tif
-SEUS_SUM_IDW_Caranx_crysos_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_2016.tif
-SEUS_SUM_IDW_Caranx_crysos_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_2017.tif
-SEUS_SUM_IDW_Caranx_crysos_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_2018.tif
-SEUS_SUM_IDW_Caranx_crysos_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Caranx crysos\SEUS_SUM_IDW_Caranx_crysos_2019.tif
-SEUS_SUM_IDW_Centropristis_striata_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_1989.tif
-SEUS_SUM_IDW_Centropristis_striata_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_1990.tif
-SEUS_SUM_IDW_Centropristis_striata_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_1991.tif
-SEUS_SUM_IDW_Centropristis_striata_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_1992.tif
-SEUS_SUM_IDW_Centropristis_striata_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_1993.tif
-SEUS_SUM_IDW_Centropristis_striata_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_1994.tif
-SEUS_SUM_IDW_Centropristis_striata_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_1995.tif
-SEUS_SUM_IDW_Centropristis_striata_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_1996.tif
-SEUS_SUM_IDW_Centropristis_striata_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_1997.tif
-SEUS_SUM_IDW_Centropristis_striata_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_1998.tif
-SEUS_SUM_IDW_Centropristis_striata_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_1999.tif
-SEUS_SUM_IDW_Centropristis_striata_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_2000.tif
-SEUS_SUM_IDW_Centropristis_striata_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_2001.tif
-SEUS_SUM_IDW_Centropristis_striata_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_2002.tif
-SEUS_SUM_IDW_Centropristis_striata_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_2003.tif
-SEUS_SUM_IDW_Centropristis_striata_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_2004.tif
-SEUS_SUM_IDW_Centropristis_striata_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_2005.tif
-SEUS_SUM_IDW_Centropristis_striata_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_2006.tif
-SEUS_SUM_IDW_Centropristis_striata_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_2007.tif
-SEUS_SUM_IDW_Centropristis_striata_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_2008.tif
-SEUS_SUM_IDW_Centropristis_striata_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_2009.tif
-SEUS_SUM_IDW_Centropristis_striata_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_2010.tif
-SEUS_SUM_IDW_Centropristis_striata_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_2011.tif
-SEUS_SUM_IDW_Centropristis_striata_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_2012.tif
-SEUS_SUM_IDW_Centropristis_striata_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_2013.tif
-SEUS_SUM_IDW_Centropristis_striata_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_2014.tif
-SEUS_SUM_IDW_Centropristis_striata_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_2015.tif
-SEUS_SUM_IDW_Centropristis_striata_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_2016.tif
-SEUS_SUM_IDW_Centropristis_striata_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_2017.tif
-SEUS_SUM_IDW_Centropristis_striata_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_2018.tif
-SEUS_SUM_IDW_Centropristis_striata_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Centropristis striata\SEUS_SUM_IDW_Centropristis_striata_2019.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_1989.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_1990.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_1991.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_1992.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_1993.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_1994.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_1995.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_1996.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_1997.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_1998.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_1999.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_2000.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_2001.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_2002.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_2003.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_2004.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_2005.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_2006.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_2007.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_2008.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_2009.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_2010.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_2011.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_2012.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_2013.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_2014.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_2015.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_2016.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_2017.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_2018.tif
-SEUS_SUM_IDW_Chaetodipterus_faber_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chaetodipterus faber\SEUS_SUM_IDW_Chaetodipterus_faber_2019.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_1989.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_1990.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_1991.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_1992.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_1993.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_1994.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_1995.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_1996.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_1997.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_1998.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_1999.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_2000.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_2001.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_2002.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_2003.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_2004.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_2005.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_2006.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_2007.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_2008.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_2009.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_2010.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_2011.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_2012.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_2013.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_2014.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_2015.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_2016.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_2017.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_2018.tif
-SEUS_SUM_IDW_Chilomycterus_schoepfii_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chilomycterus schoepfii\SEUS_SUM_IDW_Chilomycterus_schoepfii_2019.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_1989.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_1990.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_1991.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_1992.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_1993.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_1994.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_1995.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_1996.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_1997.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_1998.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_1999.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_2000.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_2001.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_2002.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_2003.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_2004.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_2005.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_2006.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_2007.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_2008.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_2009.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_2010.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_2011.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_2012.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_2013.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_2014.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_2015.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_2016.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_2017.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_2018.tif
-SEUS_SUM_IDW_Chloroscombrus_chrysurus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Chloroscombrus chrysurus\SEUS_SUM_IDW_Chloroscombrus_chrysurus_2019.tif
-SEUS_SUM_IDW_Citharichthys_macrops_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_1989.tif
-SEUS_SUM_IDW_Citharichthys_macrops_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_1990.tif
-SEUS_SUM_IDW_Citharichthys_macrops_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_1991.tif
-SEUS_SUM_IDW_Citharichthys_macrops_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_1992.tif
-SEUS_SUM_IDW_Citharichthys_macrops_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_1993.tif
-SEUS_SUM_IDW_Citharichthys_macrops_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_1994.tif
-SEUS_SUM_IDW_Citharichthys_macrops_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_1995.tif
-SEUS_SUM_IDW_Citharichthys_macrops_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_1996.tif
-SEUS_SUM_IDW_Citharichthys_macrops_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_1997.tif
-SEUS_SUM_IDW_Citharichthys_macrops_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_1998.tif
-SEUS_SUM_IDW_Citharichthys_macrops_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_1999.tif
-SEUS_SUM_IDW_Citharichthys_macrops_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_2000.tif
-SEUS_SUM_IDW_Citharichthys_macrops_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_2001.tif
-SEUS_SUM_IDW_Citharichthys_macrops_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_2002.tif
-SEUS_SUM_IDW_Citharichthys_macrops_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_2003.tif
-SEUS_SUM_IDW_Citharichthys_macrops_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_2004.tif
-SEUS_SUM_IDW_Citharichthys_macrops_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_2005.tif
-SEUS_SUM_IDW_Citharichthys_macrops_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_2006.tif
-SEUS_SUM_IDW_Citharichthys_macrops_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_2007.tif
-SEUS_SUM_IDW_Citharichthys_macrops_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_2008.tif
-SEUS_SUM_IDW_Citharichthys_macrops_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_2009.tif
-SEUS_SUM_IDW_Citharichthys_macrops_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_2010.tif
-SEUS_SUM_IDW_Citharichthys_macrops_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_2011.tif
-SEUS_SUM_IDW_Citharichthys_macrops_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_2012.tif
-SEUS_SUM_IDW_Citharichthys_macrops_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_2013.tif
-SEUS_SUM_IDW_Citharichthys_macrops_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_2014.tif
-SEUS_SUM_IDW_Citharichthys_macrops_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_2015.tif
-SEUS_SUM_IDW_Citharichthys_macrops_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_2016.tif
-SEUS_SUM_IDW_Citharichthys_macrops_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_2017.tif
-SEUS_SUM_IDW_Citharichthys_macrops_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_2018.tif
-SEUS_SUM_IDW_Citharichthys_macrops_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Citharichthys macrops\SEUS_SUM_IDW_Citharichthys_macrops_2019.tif
-SEUS_SUM_IDW_Cynoscion_nothus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_1989.tif
-SEUS_SUM_IDW_Cynoscion_nothus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_1990.tif
-SEUS_SUM_IDW_Cynoscion_nothus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_1991.tif
-SEUS_SUM_IDW_Cynoscion_nothus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_1992.tif
-SEUS_SUM_IDW_Cynoscion_nothus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_1993.tif
-SEUS_SUM_IDW_Cynoscion_nothus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_1994.tif
-SEUS_SUM_IDW_Cynoscion_nothus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_1995.tif
-SEUS_SUM_IDW_Cynoscion_nothus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_1996.tif
-SEUS_SUM_IDW_Cynoscion_nothus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_1997.tif
-SEUS_SUM_IDW_Cynoscion_nothus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_1998.tif
-SEUS_SUM_IDW_Cynoscion_nothus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_1999.tif
-SEUS_SUM_IDW_Cynoscion_nothus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_2000.tif
-SEUS_SUM_IDW_Cynoscion_nothus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_2001.tif
-SEUS_SUM_IDW_Cynoscion_nothus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_2002.tif
-SEUS_SUM_IDW_Cynoscion_nothus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_2003.tif
-SEUS_SUM_IDW_Cynoscion_nothus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_2004.tif
-SEUS_SUM_IDW_Cynoscion_nothus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_2005.tif
-SEUS_SUM_IDW_Cynoscion_nothus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_2006.tif
-SEUS_SUM_IDW_Cynoscion_nothus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_2007.tif
-SEUS_SUM_IDW_Cynoscion_nothus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_2008.tif
-SEUS_SUM_IDW_Cynoscion_nothus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_2009.tif
-SEUS_SUM_IDW_Cynoscion_nothus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_2010.tif
-SEUS_SUM_IDW_Cynoscion_nothus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_2011.tif
-SEUS_SUM_IDW_Cynoscion_nothus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_2012.tif
-SEUS_SUM_IDW_Cynoscion_nothus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_2013.tif
-SEUS_SUM_IDW_Cynoscion_nothus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_2014.tif
-SEUS_SUM_IDW_Cynoscion_nothus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_2015.tif
-SEUS_SUM_IDW_Cynoscion_nothus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_2016.tif
-SEUS_SUM_IDW_Cynoscion_nothus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_2017.tif
-SEUS_SUM_IDW_Cynoscion_nothus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_2018.tif
-SEUS_SUM_IDW_Cynoscion_nothus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion nothus\SEUS_SUM_IDW_Cynoscion_nothus_2019.tif
-SEUS_SUM_IDW_Cynoscion_regalis_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_1989.tif
-SEUS_SUM_IDW_Cynoscion_regalis_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_1990.tif
-SEUS_SUM_IDW_Cynoscion_regalis_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_1991.tif
-SEUS_SUM_IDW_Cynoscion_regalis_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_1992.tif
-SEUS_SUM_IDW_Cynoscion_regalis_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_1993.tif
-SEUS_SUM_IDW_Cynoscion_regalis_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_1994.tif
-SEUS_SUM_IDW_Cynoscion_regalis_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_1995.tif
-SEUS_SUM_IDW_Cynoscion_regalis_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_1996.tif
-SEUS_SUM_IDW_Cynoscion_regalis_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_1997.tif
-SEUS_SUM_IDW_Cynoscion_regalis_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_1998.tif
-SEUS_SUM_IDW_Cynoscion_regalis_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_1999.tif
-SEUS_SUM_IDW_Cynoscion_regalis_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_2000.tif
-SEUS_SUM_IDW_Cynoscion_regalis_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_2001.tif
-SEUS_SUM_IDW_Cynoscion_regalis_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_2002.tif
-SEUS_SUM_IDW_Cynoscion_regalis_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_2003.tif
-SEUS_SUM_IDW_Cynoscion_regalis_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_2004.tif
-SEUS_SUM_IDW_Cynoscion_regalis_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_2005.tif
-SEUS_SUM_IDW_Cynoscion_regalis_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_2006.tif
-SEUS_SUM_IDW_Cynoscion_regalis_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_2007.tif
-SEUS_SUM_IDW_Cynoscion_regalis_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_2008.tif
-SEUS_SUM_IDW_Cynoscion_regalis_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_2009.tif
-SEUS_SUM_IDW_Cynoscion_regalis_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_2010.tif
-SEUS_SUM_IDW_Cynoscion_regalis_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_2011.tif
-SEUS_SUM_IDW_Cynoscion_regalis_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_2012.tif
-SEUS_SUM_IDW_Cynoscion_regalis_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_2013.tif
-SEUS_SUM_IDW_Cynoscion_regalis_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_2014.tif
-SEUS_SUM_IDW_Cynoscion_regalis_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_2015.tif
-SEUS_SUM_IDW_Cynoscion_regalis_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_2016.tif
-SEUS_SUM_IDW_Cynoscion_regalis_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_2017.tif
-SEUS_SUM_IDW_Cynoscion_regalis_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_2018.tif
-SEUS_SUM_IDW_Cynoscion_regalis_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Cynoscion regalis\SEUS_SUM_IDW_Cynoscion_regalis_2019.tif
-SEUS_SUM_IDW_Etropus_crossotus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_1989.tif
-SEUS_SUM_IDW_Etropus_crossotus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_1990.tif
-SEUS_SUM_IDW_Etropus_crossotus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_1991.tif
-SEUS_SUM_IDW_Etropus_crossotus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_1992.tif
-SEUS_SUM_IDW_Etropus_crossotus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_1993.tif
-SEUS_SUM_IDW_Etropus_crossotus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_1994.tif
-SEUS_SUM_IDW_Etropus_crossotus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_1995.tif
-SEUS_SUM_IDW_Etropus_crossotus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_1996.tif
-SEUS_SUM_IDW_Etropus_crossotus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_1997.tif
-SEUS_SUM_IDW_Etropus_crossotus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_1998.tif
-SEUS_SUM_IDW_Etropus_crossotus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_1999.tif
-SEUS_SUM_IDW_Etropus_crossotus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_2000.tif
-SEUS_SUM_IDW_Etropus_crossotus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_2001.tif
-SEUS_SUM_IDW_Etropus_crossotus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_2002.tif
-SEUS_SUM_IDW_Etropus_crossotus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_2003.tif
-SEUS_SUM_IDW_Etropus_crossotus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_2004.tif
-SEUS_SUM_IDW_Etropus_crossotus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_2005.tif
-SEUS_SUM_IDW_Etropus_crossotus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_2006.tif
-SEUS_SUM_IDW_Etropus_crossotus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_2007.tif
-SEUS_SUM_IDW_Etropus_crossotus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_2008.tif
-SEUS_SUM_IDW_Etropus_crossotus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_2009.tif
-SEUS_SUM_IDW_Etropus_crossotus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_2010.tif
-SEUS_SUM_IDW_Etropus_crossotus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_2011.tif
-SEUS_SUM_IDW_Etropus_crossotus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_2012.tif
-SEUS_SUM_IDW_Etropus_crossotus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_2013.tif
-SEUS_SUM_IDW_Etropus_crossotus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_2014.tif
-SEUS_SUM_IDW_Etropus_crossotus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_2015.tif
-SEUS_SUM_IDW_Etropus_crossotus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:57:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_2016.tif
-SEUS_SUM_IDW_Etropus_crossotus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_2017.tif
-SEUS_SUM_IDW_Etropus_crossotus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_2018.tif
-SEUS_SUM_IDW_Etropus_crossotus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus crossotus\SEUS_SUM_IDW_Etropus_crossotus_2019.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_1989.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_1990.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_1991.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_1992.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_1993.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_1994.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_1995.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_1996.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_1997.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_1998.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_1999.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_2000.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_2001.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_2002.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_2003.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_2004.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_2005.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_2006.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_2007.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_2008.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_2009.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_2010.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_2011.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_2012.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_2013.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_2014.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_2015.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_2016.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_2017.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_2018.tif
-SEUS_SUM_IDW_Etropus_cyclosquamus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Etropus cyclosquamus\SEUS_SUM_IDW_Etropus_cyclosquamus_2019.tif
-SEUS_SUM_IDW_Eucinostomus_spp_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_1989.tif
-SEUS_SUM_IDW_Eucinostomus_spp_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_1990.tif
-SEUS_SUM_IDW_Eucinostomus_spp_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_1991.tif
-SEUS_SUM_IDW_Eucinostomus_spp_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_1992.tif
-SEUS_SUM_IDW_Eucinostomus_spp_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_1993.tif
-SEUS_SUM_IDW_Eucinostomus_spp_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_1994.tif
-SEUS_SUM_IDW_Eucinostomus_spp_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_1995.tif
-SEUS_SUM_IDW_Eucinostomus_spp_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_1996.tif
-SEUS_SUM_IDW_Eucinostomus_spp_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_1997.tif
-SEUS_SUM_IDW_Eucinostomus_spp_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_1998.tif
-SEUS_SUM_IDW_Eucinostomus_spp_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_1999.tif
-SEUS_SUM_IDW_Eucinostomus_spp_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_2000.tif
-SEUS_SUM_IDW_Eucinostomus_spp_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_2001.tif
-SEUS_SUM_IDW_Eucinostomus_spp_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_2002.tif
-SEUS_SUM_IDW_Eucinostomus_spp_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_2003.tif
-SEUS_SUM_IDW_Eucinostomus_spp_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_2004.tif
-SEUS_SUM_IDW_Eucinostomus_spp_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_2005.tif
-SEUS_SUM_IDW_Eucinostomus_spp_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_2006.tif
-SEUS_SUM_IDW_Eucinostomus_spp_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_2007.tif
-SEUS_SUM_IDW_Eucinostomus_spp_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_2008.tif
-SEUS_SUM_IDW_Eucinostomus_spp_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_2009.tif
-SEUS_SUM_IDW_Eucinostomus_spp_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_2010.tif
-SEUS_SUM_IDW_Eucinostomus_spp_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_2011.tif
-SEUS_SUM_IDW_Eucinostomus_spp_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_2012.tif
-SEUS_SUM_IDW_Eucinostomus_spp_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_2013.tif
-SEUS_SUM_IDW_Eucinostomus_spp_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_2014.tif
-SEUS_SUM_IDW_Eucinostomus_spp_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_2015.tif
-SEUS_SUM_IDW_Eucinostomus_spp_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_2016.tif
-SEUS_SUM_IDW_Eucinostomus_spp_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_2017.tif
-SEUS_SUM_IDW_Eucinostomus_spp_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_2018.tif
-SEUS_SUM_IDW_Eucinostomus_spp_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Eucinostomus spp\SEUS_SUM_IDW_Eucinostomus_spp_2019.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_1989.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_1990.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_1991.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_1992.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_1993.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_1994.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_1995.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_1996.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_1997.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_1998.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_1999.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_2000.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_2001.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_2002.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_2003.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_2004.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_2005.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_2006.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_2007.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_2008.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_2009.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_2010.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_2011.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_2012.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_2013.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_2014.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_2015.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_2016.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_2017.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_2018.tif
-SEUS_SUM_IDW_Gibbesia_neglecta_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gibbesia neglecta\SEUS_SUM_IDW_Gibbesia_neglecta_2019.tif
-SEUS_SUM_IDW_Gymnura_micrura_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_1989.tif
-SEUS_SUM_IDW_Gymnura_micrura_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_1990.tif
-SEUS_SUM_IDW_Gymnura_micrura_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_1991.tif
-SEUS_SUM_IDW_Gymnura_micrura_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_1992.tif
-SEUS_SUM_IDW_Gymnura_micrura_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_1993.tif
-SEUS_SUM_IDW_Gymnura_micrura_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_1994.tif
-SEUS_SUM_IDW_Gymnura_micrura_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_1995.tif
-SEUS_SUM_IDW_Gymnura_micrura_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_1996.tif
-SEUS_SUM_IDW_Gymnura_micrura_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_1997.tif
-SEUS_SUM_IDW_Gymnura_micrura_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_1998.tif
-SEUS_SUM_IDW_Gymnura_micrura_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_1999.tif
-SEUS_SUM_IDW_Gymnura_micrura_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_2000.tif
-SEUS_SUM_IDW_Gymnura_micrura_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_2001.tif
-SEUS_SUM_IDW_Gymnura_micrura_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_2002.tif
-SEUS_SUM_IDW_Gymnura_micrura_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_2003.tif
-SEUS_SUM_IDW_Gymnura_micrura_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_2004.tif
-SEUS_SUM_IDW_Gymnura_micrura_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_2005.tif
-SEUS_SUM_IDW_Gymnura_micrura_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_2006.tif
-SEUS_SUM_IDW_Gymnura_micrura_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_2007.tif
-SEUS_SUM_IDW_Gymnura_micrura_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_2008.tif
-SEUS_SUM_IDW_Gymnura_micrura_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_2009.tif
-SEUS_SUM_IDW_Gymnura_micrura_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_2010.tif
-SEUS_SUM_IDW_Gymnura_micrura_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_2011.tif
-SEUS_SUM_IDW_Gymnura_micrura_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_2012.tif
-SEUS_SUM_IDW_Gymnura_micrura_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_2013.tif
-SEUS_SUM_IDW_Gymnura_micrura_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_2014.tif
-SEUS_SUM_IDW_Gymnura_micrura_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_2015.tif
-SEUS_SUM_IDW_Gymnura_micrura_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_2016.tif
-SEUS_SUM_IDW_Gymnura_micrura_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_2017.tif
-SEUS_SUM_IDW_Gymnura_micrura_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_2018.tif
-SEUS_SUM_IDW_Gymnura_micrura_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Gymnura micrura\SEUS_SUM_IDW_Gymnura_micrura_2019.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_1989.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_1990.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_1991.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_1992.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_1993.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_1994.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_1995.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_1996.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_1997.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_1998.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_1999.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_2000.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_2001.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_2002.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_2003.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_2004.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_2005.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_2006.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_2007.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_2008.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_2009.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_2010.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_2011.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_2012.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_2013.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_2014.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_2015.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_2016.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_2017.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_2018.tif
-SEUS_SUM_IDW_Hepatus_epheliticus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hepatus epheliticus\SEUS_SUM_IDW_Hepatus_epheliticus_2019.tif
-SEUS_SUM_IDW_Hypanus_americanus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_1989.tif
-SEUS_SUM_IDW_Hypanus_americanus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_1990.tif
-SEUS_SUM_IDW_Hypanus_americanus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_1991.tif
-SEUS_SUM_IDW_Hypanus_americanus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_1992.tif
-SEUS_SUM_IDW_Hypanus_americanus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_1993.tif
-SEUS_SUM_IDW_Hypanus_americanus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_1994.tif
-SEUS_SUM_IDW_Hypanus_americanus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_1995.tif
-SEUS_SUM_IDW_Hypanus_americanus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_1996.tif
-SEUS_SUM_IDW_Hypanus_americanus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_1997.tif
-SEUS_SUM_IDW_Hypanus_americanus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_1998.tif
-SEUS_SUM_IDW_Hypanus_americanus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_1999.tif
-SEUS_SUM_IDW_Hypanus_americanus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_2000.tif
-SEUS_SUM_IDW_Hypanus_americanus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_2001.tif
-SEUS_SUM_IDW_Hypanus_americanus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_2002.tif
-SEUS_SUM_IDW_Hypanus_americanus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_2003.tif
-SEUS_SUM_IDW_Hypanus_americanus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_2004.tif
-SEUS_SUM_IDW_Hypanus_americanus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_2005.tif
-SEUS_SUM_IDW_Hypanus_americanus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_2006.tif
-SEUS_SUM_IDW_Hypanus_americanus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_2007.tif
-SEUS_SUM_IDW_Hypanus_americanus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_2008.tif
-SEUS_SUM_IDW_Hypanus_americanus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_2009.tif
-SEUS_SUM_IDW_Hypanus_americanus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_2010.tif
-SEUS_SUM_IDW_Hypanus_americanus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_2011.tif
-SEUS_SUM_IDW_Hypanus_americanus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_2012.tif
-SEUS_SUM_IDW_Hypanus_americanus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_2013.tif
-SEUS_SUM_IDW_Hypanus_americanus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_2014.tif
-SEUS_SUM_IDW_Hypanus_americanus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_2015.tif
-SEUS_SUM_IDW_Hypanus_americanus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_2016.tif
-SEUS_SUM_IDW_Hypanus_americanus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_2017.tif
-SEUS_SUM_IDW_Hypanus_americanus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_2018.tif
-SEUS_SUM_IDW_Hypanus_americanus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus americanus\SEUS_SUM_IDW_Hypanus_americanus_2019.tif
-SEUS_SUM_IDW_Hypanus_say_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_1989.tif
-SEUS_SUM_IDW_Hypanus_say_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_1990.tif
-SEUS_SUM_IDW_Hypanus_say_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_1991.tif
-SEUS_SUM_IDW_Hypanus_say_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_1992.tif
-SEUS_SUM_IDW_Hypanus_say_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_1993.tif
-SEUS_SUM_IDW_Hypanus_say_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_1994.tif
-SEUS_SUM_IDW_Hypanus_say_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_1995.tif
-SEUS_SUM_IDW_Hypanus_say_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_1996.tif
-SEUS_SUM_IDW_Hypanus_say_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_1997.tif
-SEUS_SUM_IDW_Hypanus_say_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_1998.tif
-SEUS_SUM_IDW_Hypanus_say_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_1999.tif
-SEUS_SUM_IDW_Hypanus_say_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_2000.tif
-SEUS_SUM_IDW_Hypanus_say_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_2001.tif
-SEUS_SUM_IDW_Hypanus_say_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_2002.tif
-SEUS_SUM_IDW_Hypanus_say_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_2003.tif
-SEUS_SUM_IDW_Hypanus_say_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_2004.tif
-SEUS_SUM_IDW_Hypanus_say_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_2005.tif
-SEUS_SUM_IDW_Hypanus_say_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_2006.tif
-SEUS_SUM_IDW_Hypanus_say_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_2007.tif
-SEUS_SUM_IDW_Hypanus_say_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_2008.tif
-SEUS_SUM_IDW_Hypanus_say_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_2009.tif
-SEUS_SUM_IDW_Hypanus_say_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_2010.tif
-SEUS_SUM_IDW_Hypanus_say_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_2011.tif
-SEUS_SUM_IDW_Hypanus_say_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_2012.tif
-SEUS_SUM_IDW_Hypanus_say_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_2013.tif
-SEUS_SUM_IDW_Hypanus_say_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_2014.tif
-SEUS_SUM_IDW_Hypanus_say_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_2015.tif
-SEUS_SUM_IDW_Hypanus_say_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_2016.tif
-SEUS_SUM_IDW_Hypanus_say_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_2017.tif
-SEUS_SUM_IDW_Hypanus_say_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_2018.tif
-SEUS_SUM_IDW_Hypanus_say_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Hypanus say\SEUS_SUM_IDW_Hypanus_say_2019.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_1989.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_1990.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_1991.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_1992.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_1993.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_1994.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_1995.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_1996.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_1997.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_1998.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_1999.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_2000.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_2001.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_2002.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_2003.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_2004.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_2005.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_2006.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_2007.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_2008.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_2009.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_2010.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_2011.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_2012.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_2013.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:58:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_2014.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_2015.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_2016.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_2017.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_2018.tif
-SEUS_SUM_IDW_Lagodon_rhomboides_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lagodon rhomboides\SEUS_SUM_IDW_Lagodon_rhomboides_2019.tif
-SEUS_SUM_IDW_Larimus_fasciatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_1989.tif
-SEUS_SUM_IDW_Larimus_fasciatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_1990.tif
-SEUS_SUM_IDW_Larimus_fasciatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_1991.tif
-SEUS_SUM_IDW_Larimus_fasciatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_1992.tif
-SEUS_SUM_IDW_Larimus_fasciatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_1993.tif
-SEUS_SUM_IDW_Larimus_fasciatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_1994.tif
-SEUS_SUM_IDW_Larimus_fasciatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_1995.tif
-SEUS_SUM_IDW_Larimus_fasciatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_1996.tif
-SEUS_SUM_IDW_Larimus_fasciatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_1997.tif
-SEUS_SUM_IDW_Larimus_fasciatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_1998.tif
-SEUS_SUM_IDW_Larimus_fasciatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_1999.tif
-SEUS_SUM_IDW_Larimus_fasciatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_2000.tif
-SEUS_SUM_IDW_Larimus_fasciatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_2001.tif
-SEUS_SUM_IDW_Larimus_fasciatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_2002.tif
-SEUS_SUM_IDW_Larimus_fasciatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_2003.tif
-SEUS_SUM_IDW_Larimus_fasciatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_2004.tif
-SEUS_SUM_IDW_Larimus_fasciatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_2005.tif
-SEUS_SUM_IDW_Larimus_fasciatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_2006.tif
-SEUS_SUM_IDW_Larimus_fasciatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_2007.tif
-SEUS_SUM_IDW_Larimus_fasciatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_2008.tif
-SEUS_SUM_IDW_Larimus_fasciatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_2009.tif
-SEUS_SUM_IDW_Larimus_fasciatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_2010.tif
-SEUS_SUM_IDW_Larimus_fasciatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_2011.tif
-SEUS_SUM_IDW_Larimus_fasciatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_2012.tif
-SEUS_SUM_IDW_Larimus_fasciatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_2013.tif
-SEUS_SUM_IDW_Larimus_fasciatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_2014.tif
-SEUS_SUM_IDW_Larimus_fasciatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_2015.tif
-SEUS_SUM_IDW_Larimus_fasciatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_2016.tif
-SEUS_SUM_IDW_Larimus_fasciatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_2017.tif
-SEUS_SUM_IDW_Larimus_fasciatus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_2018.tif
-SEUS_SUM_IDW_Larimus_fasciatus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Larimus fasciatus\SEUS_SUM_IDW_Larimus_fasciatus_2019.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_1989.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_1990.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_1991.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_1992.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_1993.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_1994.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_1995.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_1996.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_1997.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_1998.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_1999.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_2000.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_2001.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_2002.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_2003.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_2004.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_2005.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_2006.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_2007.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_2008.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_2009.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_2010.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_2011.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_2012.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_2013.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_2014.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_2015.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_2016.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_2017.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_2018.tif
-SEUS_SUM_IDW_Leiostomus_xanthurus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Leiostomus xanthurus\SEUS_SUM_IDW_Leiostomus_xanthurus_2019.tif
-SEUS_SUM_IDW_Loligo_spp_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_1989.tif
-SEUS_SUM_IDW_Loligo_spp_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_1990.tif
-SEUS_SUM_IDW_Loligo_spp_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_1991.tif
-SEUS_SUM_IDW_Loligo_spp_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_1992.tif
-SEUS_SUM_IDW_Loligo_spp_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_1993.tif
-SEUS_SUM_IDW_Loligo_spp_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_1994.tif
-SEUS_SUM_IDW_Loligo_spp_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_1995.tif
-SEUS_SUM_IDW_Loligo_spp_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_1996.tif
-SEUS_SUM_IDW_Loligo_spp_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_1997.tif
-SEUS_SUM_IDW_Loligo_spp_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_1998.tif
-SEUS_SUM_IDW_Loligo_spp_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_1999.tif
-SEUS_SUM_IDW_Loligo_spp_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_2000.tif
-SEUS_SUM_IDW_Loligo_spp_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_2001.tif
-SEUS_SUM_IDW_Loligo_spp_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_2002.tif
-SEUS_SUM_IDW_Loligo_spp_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_2003.tif
-SEUS_SUM_IDW_Loligo_spp_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_2004.tif
-SEUS_SUM_IDW_Loligo_spp_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_2005.tif
-SEUS_SUM_IDW_Loligo_spp_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_2006.tif
-SEUS_SUM_IDW_Loligo_spp_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_2007.tif
-SEUS_SUM_IDW_Loligo_spp_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_2008.tif
-SEUS_SUM_IDW_Loligo_spp_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_2009.tif
-SEUS_SUM_IDW_Loligo_spp_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_2010.tif
-SEUS_SUM_IDW_Loligo_spp_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_2011.tif
-SEUS_SUM_IDW_Loligo_spp_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_2012.tif
-SEUS_SUM_IDW_Loligo_spp_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_2013.tif
-SEUS_SUM_IDW_Loligo_spp_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_2014.tif
-SEUS_SUM_IDW_Loligo_spp_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_2015.tif
-SEUS_SUM_IDW_Loligo_spp_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_2016.tif
-SEUS_SUM_IDW_Loligo_spp_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_2017.tif
-SEUS_SUM_IDW_Loligo_spp_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_2018.tif
-SEUS_SUM_IDW_Loligo_spp_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Loligo spp\SEUS_SUM_IDW_Loligo_spp_2019.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_1989.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_1990.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_1991.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_1992.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_1993.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_1994.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_1995.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_1996.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_1997.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_1998.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_1999.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_2000.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_2001.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_2002.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_2003.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_2004.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_2005.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_2006.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_2007.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_2008.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_2009.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_2010.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_2011.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_2012.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_2013.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_2014.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_2015.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_2016.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_2017.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_2018.tif
-SEUS_SUM_IDW_Lolliguncula_brevis_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Lolliguncula brevis\SEUS_SUM_IDW_Lolliguncula_brevis_2019.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_1989.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_1990.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_1991.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_1992.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_1993.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_1994.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_1995.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_1996.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_1997.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_1998.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_1999.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_2000.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_2001.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_2002.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_2003.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_2004.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_2005.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_2006.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_2007.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_2008.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_2009.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_2010.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_2011.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_2012.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_2013.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_2014.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_2015.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_2016.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_2017.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_2018.tif
-SEUS_SUM_IDW_Menticirrhus_americanus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus americanus\SEUS_SUM_IDW_Menticirrhus_americanus_2019.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_1989.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_1990.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_1991.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_1992.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_1993.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_1994.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_1995.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_1996.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_1997.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_1998.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_1999.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_2000.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_2001.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_2002.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_2003.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_2004.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_2005.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_2006.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_2007.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_2008.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_2009.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_2010.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_2011.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_2012.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_2013.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_2014.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_2015.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_2016.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_2017.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_2018.tif
-SEUS_SUM_IDW_Menticirrhus_littoralis_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Menticirrhus littoralis\SEUS_SUM_IDW_Menticirrhus_littoralis_2019.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_1989.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_1990.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_1991.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_1992.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_1993.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_1994.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_1995.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_1996.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_1997.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_1998.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_1999.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_2000.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_2001.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_2002.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_2003.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_2004.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 14:59:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_2005.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_2006.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_2007.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_2008.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_2009.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_2010.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_2011.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_2012.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_2013.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_2014.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_2015.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_2016.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_2017.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_2018.tif
-SEUS_SUM_IDW_Micropogonias_undulatus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Micropogonias undulatus\SEUS_SUM_IDW_Micropogonias_undulatus_2019.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_1989.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_1990.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_1991.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_1992.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_1993.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_1994.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_1995.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_1996.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_1997.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_1998.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_1999.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_2000.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_2001.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_2002.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_2003.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_2004.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_2005.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_2006.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_2007.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_2008.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_2009.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_2010.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_2011.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_2012.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_2013.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_2014.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_2015.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_2016.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_2017.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_2018.tif
-SEUS_SUM_IDW_Opisthonema_oglinum_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Opisthonema oglinum\SEUS_SUM_IDW_Opisthonema_oglinum_2019.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_1989.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_1990.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_1991.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_1992.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_1993.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_1994.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_1995.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_1996.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_1997.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_1998.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_1999.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_2000.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_2001.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_2002.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_2003.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_2004.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_2005.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_2006.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_2007.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_2008.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_2009.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_2010.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_2011.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_2012.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_2013.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_2014.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_2015.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_2016.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_2017.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_2018.tif
-SEUS_SUM_IDW_Orthopristis_chrysoptera_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Orthopristis chrysoptera\SEUS_SUM_IDW_Orthopristis_chrysoptera_2019.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_1989.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_1990.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_1991.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_1992.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_1993.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_1994.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_1995.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_1996.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_1997.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_1998.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_1999.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_2000.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_2001.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_2002.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_2003.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_2004.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_2005.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_2006.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_2007.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_2008.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_2009.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_2010.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_2011.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_2012.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_2013.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_2014.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_2015.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_2016.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_2017.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_2018.tif
-SEUS_SUM_IDW_Ovalipes_ocellatus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes ocellatus\SEUS_SUM_IDW_Ovalipes_ocellatus_2019.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_1989.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_1990.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_1991.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_1992.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_1993.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_1994.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_1995.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_1996.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_1997.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_1998.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_1999.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_2000.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_2001.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_2002.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_2003.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_2004.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_2005.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_2006.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_2007.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_2008.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_2009.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_2010.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_2011.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_2012.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_2013.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_2014.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_2015.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_2016.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_2017.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_2018.tif
-SEUS_SUM_IDW_Ovalipes_stephensoni_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Ovalipes stephensoni\SEUS_SUM_IDW_Ovalipes_stephensoni_2019.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_1989.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_1990.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_1991.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_1992.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_1993.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_1994.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_1995.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_1996.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_1997.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_1998.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_1999.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_2000.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_2001.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_2002.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_2003.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_2004.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_2005.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_2006.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_2007.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_2008.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_2009.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_2010.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_2011.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_2012.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_2013.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_2014.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_2015.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_2016.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_2017.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_2018.tif
-SEUS_SUM_IDW_Pagurus_pollicaris_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pagurus pollicaris\SEUS_SUM_IDW_Pagurus_pollicaris_2019.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_1989.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_1990.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_1991.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_1992.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_1993.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_1994.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_1995.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_1996.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_1997.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_1998.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_1999.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_2000.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_2001.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_2002.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_2003.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_2004.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_2005.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_2006.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_2007.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_2008.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_2009.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_2010.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_2011.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_2012.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_2013.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_2014.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_2015.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_2016.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_2017.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_2018.tif
-SEUS_SUM_IDW_Paralichthys_dentatus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys dentatus\SEUS_SUM_IDW_Paralichthys_dentatus_2019.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_1989.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_1990.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_1991.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_1992.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_1993.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_1994.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_1995.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_1996.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_1997.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_1998.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_1999.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_2000.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_2001.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_2002.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_2003.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_2004.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_2005.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_2006.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_2007.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_2008.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_2009.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_2010.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_2011.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_2012.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_2013.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_2014.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_2015.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_2016.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_2017.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_2018.tif
-SEUS_SUM_IDW_Paralichthys_lethostigma_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Paralichthys lethostigma\SEUS_SUM_IDW_Paralichthys_lethostigma_2019.tif
-SEUS_SUM_IDW_Penaeus_aztecus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_1989.tif
-SEUS_SUM_IDW_Penaeus_aztecus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_1990.tif
-SEUS_SUM_IDW_Penaeus_aztecus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_1991.tif
-SEUS_SUM_IDW_Penaeus_aztecus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_1992.tif
-SEUS_SUM_IDW_Penaeus_aztecus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_1993.tif
-SEUS_SUM_IDW_Penaeus_aztecus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_1994.tif
-SEUS_SUM_IDW_Penaeus_aztecus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_1995.tif
-SEUS_SUM_IDW_Penaeus_aztecus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_1996.tif
-SEUS_SUM_IDW_Penaeus_aztecus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_1997.tif
-SEUS_SUM_IDW_Penaeus_aztecus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_1998.tif
-SEUS_SUM_IDW_Penaeus_aztecus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_1999.tif
-SEUS_SUM_IDW_Penaeus_aztecus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_2000.tif
-SEUS_SUM_IDW_Penaeus_aztecus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_2001.tif
-SEUS_SUM_IDW_Penaeus_aztecus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_2002.tif
-SEUS_SUM_IDW_Penaeus_aztecus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_2003.tif
-SEUS_SUM_IDW_Penaeus_aztecus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_2004.tif
-SEUS_SUM_IDW_Penaeus_aztecus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_2005.tif
-SEUS_SUM_IDW_Penaeus_aztecus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_2006.tif
-SEUS_SUM_IDW_Penaeus_aztecus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_2007.tif
-SEUS_SUM_IDW_Penaeus_aztecus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_2008.tif
-SEUS_SUM_IDW_Penaeus_aztecus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_2009.tif
-SEUS_SUM_IDW_Penaeus_aztecus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_2010.tif
-SEUS_SUM_IDW_Penaeus_aztecus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_2011.tif
-SEUS_SUM_IDW_Penaeus_aztecus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_2012.tif
-SEUS_SUM_IDW_Penaeus_aztecus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_2013.tif
-SEUS_SUM_IDW_Penaeus_aztecus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_2014.tif
-SEUS_SUM_IDW_Penaeus_aztecus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_2015.tif
-SEUS_SUM_IDW_Penaeus_aztecus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_2016.tif
-SEUS_SUM_IDW_Penaeus_aztecus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_2017.tif
-SEUS_SUM_IDW_Penaeus_aztecus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_2018.tif
-SEUS_SUM_IDW_Penaeus_aztecus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus aztecus\SEUS_SUM_IDW_Penaeus_aztecus_2019.tif
-SEUS_SUM_IDW_Penaeus_setiferus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_1989.tif
-SEUS_SUM_IDW_Penaeus_setiferus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_1990.tif
-SEUS_SUM_IDW_Penaeus_setiferus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_1991.tif
-SEUS_SUM_IDW_Penaeus_setiferus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_1992.tif
-SEUS_SUM_IDW_Penaeus_setiferus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_1993.tif
-SEUS_SUM_IDW_Penaeus_setiferus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_1994.tif
-SEUS_SUM_IDW_Penaeus_setiferus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_1995.tif
-SEUS_SUM_IDW_Penaeus_setiferus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_1996.tif
-SEUS_SUM_IDW_Penaeus_setiferus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_1997.tif
-SEUS_SUM_IDW_Penaeus_setiferus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_1998.tif
-SEUS_SUM_IDW_Penaeus_setiferus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_1999.tif
-SEUS_SUM_IDW_Penaeus_setiferus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_2000.tif
-SEUS_SUM_IDW_Penaeus_setiferus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_2001.tif
-SEUS_SUM_IDW_Penaeus_setiferus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_2002.tif
-SEUS_SUM_IDW_Penaeus_setiferus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_2003.tif
-SEUS_SUM_IDW_Penaeus_setiferus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_2004.tif
-SEUS_SUM_IDW_Penaeus_setiferus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_2005.tif
-SEUS_SUM_IDW_Penaeus_setiferus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_2006.tif
-SEUS_SUM_IDW_Penaeus_setiferus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_2007.tif
-SEUS_SUM_IDW_Penaeus_setiferus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_2008.tif
-SEUS_SUM_IDW_Penaeus_setiferus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_2009.tif
-SEUS_SUM_IDW_Penaeus_setiferus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_2010.tif
-SEUS_SUM_IDW_Penaeus_setiferus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_2011.tif
-SEUS_SUM_IDW_Penaeus_setiferus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_2012.tif
-SEUS_SUM_IDW_Penaeus_setiferus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_2013.tif
-SEUS_SUM_IDW_Penaeus_setiferus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_2014.tif
-SEUS_SUM_IDW_Penaeus_setiferus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_2015.tif
-SEUS_SUM_IDW_Penaeus_setiferus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_2016.tif
-SEUS_SUM_IDW_Penaeus_setiferus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_2017.tif
-SEUS_SUM_IDW_Penaeus_setiferus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_2018.tif
-SEUS_SUM_IDW_Penaeus_setiferus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:21:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Penaeus setiferus\SEUS_SUM_IDW_Penaeus_setiferus_2019.tif
-SEUS_SUM_IDW_Peprilus_paru_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_1989.tif
-SEUS_SUM_IDW_Peprilus_paru_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_1990.tif
-SEUS_SUM_IDW_Peprilus_paru_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_1991.tif
-SEUS_SUM_IDW_Peprilus_paru_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_1992.tif
-SEUS_SUM_IDW_Peprilus_paru_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_1993.tif
-SEUS_SUM_IDW_Peprilus_paru_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_1994.tif
-SEUS_SUM_IDW_Peprilus_paru_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_1995.tif
-SEUS_SUM_IDW_Peprilus_paru_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_1996.tif
-SEUS_SUM_IDW_Peprilus_paru_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_1997.tif
-SEUS_SUM_IDW_Peprilus_paru_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_1998.tif
-SEUS_SUM_IDW_Peprilus_paru_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_1999.tif
-SEUS_SUM_IDW_Peprilus_paru_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_2000.tif
-SEUS_SUM_IDW_Peprilus_paru_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_2001.tif
-SEUS_SUM_IDW_Peprilus_paru_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_2002.tif
-SEUS_SUM_IDW_Peprilus_paru_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_2003.tif
-SEUS_SUM_IDW_Peprilus_paru_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_2004.tif
-SEUS_SUM_IDW_Peprilus_paru_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_2005.tif
-SEUS_SUM_IDW_Peprilus_paru_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_2006.tif
-SEUS_SUM_IDW_Peprilus_paru_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_2007.tif
-SEUS_SUM_IDW_Peprilus_paru_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_2008.tif
-SEUS_SUM_IDW_Peprilus_paru_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_2009.tif
-SEUS_SUM_IDW_Peprilus_paru_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_2010.tif
-SEUS_SUM_IDW_Peprilus_paru_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_2011.tif
-SEUS_SUM_IDW_Peprilus_paru_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_2012.tif
-SEUS_SUM_IDW_Peprilus_paru_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_2013.tif
-SEUS_SUM_IDW_Peprilus_paru_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_2014.tif
-SEUS_SUM_IDW_Peprilus_paru_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_2015.tif
-SEUS_SUM_IDW_Peprilus_paru_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_2016.tif
-SEUS_SUM_IDW_Peprilus_paru_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_2017.tif
-SEUS_SUM_IDW_Peprilus_paru_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_2018.tif
-SEUS_SUM_IDW_Peprilus_paru_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus paru\SEUS_SUM_IDW_Peprilus_paru_2019.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_1989.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_1990.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_1991.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_1992.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_1993.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_1994.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_1995.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_1996.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_1997.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_1998.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:00:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_1999.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_2000.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_2001.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_2002.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_2003.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_2004.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_2005.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_2006.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_2007.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_2008.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_2009.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_2010.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_2011.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_2012.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_2013.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_2014.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_2015.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_2016.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_2017.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_2018.tif
-SEUS_SUM_IDW_Peprilus_triacanthus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Peprilus triacanthus\SEUS_SUM_IDW_Peprilus_triacanthus_2019.tif
-SEUS_SUM_IDW_Persephona_mediterranea_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_1989.tif
-SEUS_SUM_IDW_Persephona_mediterranea_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_1990.tif
-SEUS_SUM_IDW_Persephona_mediterranea_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_1991.tif
-SEUS_SUM_IDW_Persephona_mediterranea_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_1992.tif
-SEUS_SUM_IDW_Persephona_mediterranea_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_1993.tif
-SEUS_SUM_IDW_Persephona_mediterranea_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_1994.tif
-SEUS_SUM_IDW_Persephona_mediterranea_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_1995.tif
-SEUS_SUM_IDW_Persephona_mediterranea_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_1996.tif
-SEUS_SUM_IDW_Persephona_mediterranea_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_1997.tif
-SEUS_SUM_IDW_Persephona_mediterranea_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_1998.tif
-SEUS_SUM_IDW_Persephona_mediterranea_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_1999.tif
-SEUS_SUM_IDW_Persephona_mediterranea_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_2000.tif
-SEUS_SUM_IDW_Persephona_mediterranea_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_2001.tif
-SEUS_SUM_IDW_Persephona_mediterranea_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_2002.tif
-SEUS_SUM_IDW_Persephona_mediterranea_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_2003.tif
-SEUS_SUM_IDW_Persephona_mediterranea_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_2004.tif
-SEUS_SUM_IDW_Persephona_mediterranea_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_2005.tif
-SEUS_SUM_IDW_Persephona_mediterranea_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_2006.tif
-SEUS_SUM_IDW_Persephona_mediterranea_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_2007.tif
-SEUS_SUM_IDW_Persephona_mediterranea_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_2008.tif
-SEUS_SUM_IDW_Persephona_mediterranea_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_2009.tif
-SEUS_SUM_IDW_Persephona_mediterranea_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_2010.tif
-SEUS_SUM_IDW_Persephona_mediterranea_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_2011.tif
-SEUS_SUM_IDW_Persephona_mediterranea_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_2012.tif
-SEUS_SUM_IDW_Persephona_mediterranea_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_2013.tif
-SEUS_SUM_IDW_Persephona_mediterranea_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_2014.tif
-SEUS_SUM_IDW_Persephona_mediterranea_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_2015.tif
-SEUS_SUM_IDW_Persephona_mediterranea_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_2016.tif
-SEUS_SUM_IDW_Persephona_mediterranea_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_2017.tif
-SEUS_SUM_IDW_Persephona_mediterranea_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_2018.tif
-SEUS_SUM_IDW_Persephona_mediterranea_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Persephona mediterranea\SEUS_SUM_IDW_Persephona_mediterranea_2019.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_1989.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_1990.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_1991.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_1992.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_1993.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_1994.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_1995.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_1996.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_1997.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_1998.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_1999.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_2000.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_2001.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_2002.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_2003.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_2004.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_2005.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_2006.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_2007.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_2008.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_2009.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_2010.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_2011.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_2012.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_2013.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_2014.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_2015.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_2016.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_2017.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_2018.tif
-SEUS_SUM_IDW_Pomatomus_saltatrix_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Pomatomus saltatrix\SEUS_SUM_IDW_Pomatomus_saltatrix_2019.tif
-SEUS_SUM_IDW_Prionotus_carolinus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_1989.tif
-SEUS_SUM_IDW_Prionotus_carolinus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_1990.tif
-SEUS_SUM_IDW_Prionotus_carolinus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_1991.tif
-SEUS_SUM_IDW_Prionotus_carolinus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_1992.tif
-SEUS_SUM_IDW_Prionotus_carolinus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_1993.tif
-SEUS_SUM_IDW_Prionotus_carolinus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_1994.tif
-SEUS_SUM_IDW_Prionotus_carolinus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_1995.tif
-SEUS_SUM_IDW_Prionotus_carolinus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_1996.tif
-SEUS_SUM_IDW_Prionotus_carolinus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_1997.tif
-SEUS_SUM_IDW_Prionotus_carolinus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_1998.tif
-SEUS_SUM_IDW_Prionotus_carolinus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_1999.tif
-SEUS_SUM_IDW_Prionotus_carolinus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_2000.tif
-SEUS_SUM_IDW_Prionotus_carolinus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_2001.tif
-SEUS_SUM_IDW_Prionotus_carolinus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_2002.tif
-SEUS_SUM_IDW_Prionotus_carolinus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_2003.tif
-SEUS_SUM_IDW_Prionotus_carolinus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_2004.tif
-SEUS_SUM_IDW_Prionotus_carolinus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_2005.tif
-SEUS_SUM_IDW_Prionotus_carolinus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_2006.tif
-SEUS_SUM_IDW_Prionotus_carolinus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_2007.tif
-SEUS_SUM_IDW_Prionotus_carolinus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_2008.tif
-SEUS_SUM_IDW_Prionotus_carolinus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_2009.tif
-SEUS_SUM_IDW_Prionotus_carolinus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_2010.tif
-SEUS_SUM_IDW_Prionotus_carolinus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_2011.tif
-SEUS_SUM_IDW_Prionotus_carolinus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_2012.tif
-SEUS_SUM_IDW_Prionotus_carolinus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_2013.tif
-SEUS_SUM_IDW_Prionotus_carolinus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_2014.tif
-SEUS_SUM_IDW_Prionotus_carolinus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_2015.tif
-SEUS_SUM_IDW_Prionotus_carolinus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_2016.tif
-SEUS_SUM_IDW_Prionotus_carolinus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_2017.tif
-SEUS_SUM_IDW_Prionotus_carolinus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_2018.tif
-SEUS_SUM_IDW_Prionotus_carolinus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus carolinus\SEUS_SUM_IDW_Prionotus_carolinus_2019.tif
-SEUS_SUM_IDW_Prionotus_evolans_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_1989.tif
-SEUS_SUM_IDW_Prionotus_evolans_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_1990.tif
-SEUS_SUM_IDW_Prionotus_evolans_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_1991.tif
-SEUS_SUM_IDW_Prionotus_evolans_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_1992.tif
-SEUS_SUM_IDW_Prionotus_evolans_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_1993.tif
-SEUS_SUM_IDW_Prionotus_evolans_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_1994.tif
-SEUS_SUM_IDW_Prionotus_evolans_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_1995.tif
-SEUS_SUM_IDW_Prionotus_evolans_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_1996.tif
-SEUS_SUM_IDW_Prionotus_evolans_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_1997.tif
-SEUS_SUM_IDW_Prionotus_evolans_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_1998.tif
-SEUS_SUM_IDW_Prionotus_evolans_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_1999.tif
-SEUS_SUM_IDW_Prionotus_evolans_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_2000.tif
-SEUS_SUM_IDW_Prionotus_evolans_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_2001.tif
-SEUS_SUM_IDW_Prionotus_evolans_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_2002.tif
-SEUS_SUM_IDW_Prionotus_evolans_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_2003.tif
-SEUS_SUM_IDW_Prionotus_evolans_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_2004.tif
-SEUS_SUM_IDW_Prionotus_evolans_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_2005.tif
-SEUS_SUM_IDW_Prionotus_evolans_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_2006.tif
-SEUS_SUM_IDW_Prionotus_evolans_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_2007.tif
-SEUS_SUM_IDW_Prionotus_evolans_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_2008.tif
-SEUS_SUM_IDW_Prionotus_evolans_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_2009.tif
-SEUS_SUM_IDW_Prionotus_evolans_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_2010.tif
-SEUS_SUM_IDW_Prionotus_evolans_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_2011.tif
-SEUS_SUM_IDW_Prionotus_evolans_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_2012.tif
-SEUS_SUM_IDW_Prionotus_evolans_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_2013.tif
-SEUS_SUM_IDW_Prionotus_evolans_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_2014.tif
-SEUS_SUM_IDW_Prionotus_evolans_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_2015.tif
-SEUS_SUM_IDW_Prionotus_evolans_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_2016.tif
-SEUS_SUM_IDW_Prionotus_evolans_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_2017.tif
-SEUS_SUM_IDW_Prionotus_evolans_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_2018.tif
-SEUS_SUM_IDW_Prionotus_evolans_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus evolans\SEUS_SUM_IDW_Prionotus_evolans_2019.tif
-SEUS_SUM_IDW_Prionotus_rubio_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_1989.tif
-SEUS_SUM_IDW_Prionotus_rubio_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_1990.tif
-SEUS_SUM_IDW_Prionotus_rubio_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_1991.tif
-SEUS_SUM_IDW_Prionotus_rubio_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_1992.tif
-SEUS_SUM_IDW_Prionotus_rubio_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_1993.tif
-SEUS_SUM_IDW_Prionotus_rubio_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_1994.tif
-SEUS_SUM_IDW_Prionotus_rubio_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_1995.tif
-SEUS_SUM_IDW_Prionotus_rubio_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_1996.tif
-SEUS_SUM_IDW_Prionotus_rubio_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_1997.tif
-SEUS_SUM_IDW_Prionotus_rubio_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_1998.tif
-SEUS_SUM_IDW_Prionotus_rubio_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_1999.tif
-SEUS_SUM_IDW_Prionotus_rubio_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_2000.tif
-SEUS_SUM_IDW_Prionotus_rubio_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_2001.tif
-SEUS_SUM_IDW_Prionotus_rubio_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_2002.tif
-SEUS_SUM_IDW_Prionotus_rubio_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_2003.tif
-SEUS_SUM_IDW_Prionotus_rubio_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_2004.tif
-SEUS_SUM_IDW_Prionotus_rubio_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_2005.tif
-SEUS_SUM_IDW_Prionotus_rubio_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_2006.tif
-SEUS_SUM_IDW_Prionotus_rubio_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_2007.tif
-SEUS_SUM_IDW_Prionotus_rubio_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_2008.tif
-SEUS_SUM_IDW_Prionotus_rubio_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_2009.tif
-SEUS_SUM_IDW_Prionotus_rubio_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_2010.tif
-SEUS_SUM_IDW_Prionotus_rubio_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_2011.tif
-SEUS_SUM_IDW_Prionotus_rubio_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_2012.tif
-SEUS_SUM_IDW_Prionotus_rubio_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_2013.tif
-SEUS_SUM_IDW_Prionotus_rubio_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_2014.tif
-SEUS_SUM_IDW_Prionotus_rubio_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_2015.tif
-SEUS_SUM_IDW_Prionotus_rubio_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_2016.tif
-SEUS_SUM_IDW_Prionotus_rubio_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_2017.tif
-SEUS_SUM_IDW_Prionotus_rubio_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_2018.tif
-SEUS_SUM_IDW_Prionotus_rubio_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus rubio\SEUS_SUM_IDW_Prionotus_rubio_2019.tif
-SEUS_SUM_IDW_Prionotus_scitulus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_1989.tif
-SEUS_SUM_IDW_Prionotus_scitulus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_1990.tif
-SEUS_SUM_IDW_Prionotus_scitulus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_1991.tif
-SEUS_SUM_IDW_Prionotus_scitulus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_1992.tif
-SEUS_SUM_IDW_Prionotus_scitulus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_1993.tif
-SEUS_SUM_IDW_Prionotus_scitulus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_1994.tif
-SEUS_SUM_IDW_Prionotus_scitulus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_1995.tif
-SEUS_SUM_IDW_Prionotus_scitulus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_1996.tif
-SEUS_SUM_IDW_Prionotus_scitulus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_1997.tif
-SEUS_SUM_IDW_Prionotus_scitulus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_1998.tif
-SEUS_SUM_IDW_Prionotus_scitulus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_1999.tif
-SEUS_SUM_IDW_Prionotus_scitulus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_2000.tif
-SEUS_SUM_IDW_Prionotus_scitulus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_2001.tif
-SEUS_SUM_IDW_Prionotus_scitulus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_2002.tif
-SEUS_SUM_IDW_Prionotus_scitulus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_2003.tif
-SEUS_SUM_IDW_Prionotus_scitulus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_2004.tif
-SEUS_SUM_IDW_Prionotus_scitulus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_2005.tif
-SEUS_SUM_IDW_Prionotus_scitulus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_2006.tif
-SEUS_SUM_IDW_Prionotus_scitulus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_2007.tif
-SEUS_SUM_IDW_Prionotus_scitulus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_2008.tif
-SEUS_SUM_IDW_Prionotus_scitulus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_2009.tif
-SEUS_SUM_IDW_Prionotus_scitulus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_2010.tif
-SEUS_SUM_IDW_Prionotus_scitulus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_2011.tif
-SEUS_SUM_IDW_Prionotus_scitulus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_2012.tif
-SEUS_SUM_IDW_Prionotus_scitulus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_2013.tif
-SEUS_SUM_IDW_Prionotus_scitulus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_2014.tif
-SEUS_SUM_IDW_Prionotus_scitulus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_2015.tif
-SEUS_SUM_IDW_Prionotus_scitulus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_2016.tif
-SEUS_SUM_IDW_Prionotus_scitulus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_2017.tif
-SEUS_SUM_IDW_Prionotus_scitulus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_2018.tif
-SEUS_SUM_IDW_Prionotus_scitulus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus scitulus\SEUS_SUM_IDW_Prionotus_scitulus_2019.tif
-SEUS_SUM_IDW_Prionotus_tribulus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_1989.tif
-SEUS_SUM_IDW_Prionotus_tribulus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_1990.tif
-SEUS_SUM_IDW_Prionotus_tribulus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_1991.tif
-SEUS_SUM_IDW_Prionotus_tribulus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_1992.tif
-SEUS_SUM_IDW_Prionotus_tribulus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_1993.tif
-SEUS_SUM_IDW_Prionotus_tribulus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_1994.tif
-SEUS_SUM_IDW_Prionotus_tribulus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_1995.tif
-SEUS_SUM_IDW_Prionotus_tribulus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_1996.tif
-SEUS_SUM_IDW_Prionotus_tribulus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_1997.tif
-SEUS_SUM_IDW_Prionotus_tribulus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_1998.tif
-SEUS_SUM_IDW_Prionotus_tribulus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_1999.tif
-SEUS_SUM_IDW_Prionotus_tribulus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_2000.tif
-SEUS_SUM_IDW_Prionotus_tribulus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_2001.tif
-SEUS_SUM_IDW_Prionotus_tribulus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_2002.tif
-SEUS_SUM_IDW_Prionotus_tribulus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_2003.tif
-SEUS_SUM_IDW_Prionotus_tribulus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_2004.tif
-SEUS_SUM_IDW_Prionotus_tribulus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_2005.tif
-SEUS_SUM_IDW_Prionotus_tribulus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_2006.tif
-SEUS_SUM_IDW_Prionotus_tribulus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_2007.tif
-SEUS_SUM_IDW_Prionotus_tribulus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_2008.tif
-SEUS_SUM_IDW_Prionotus_tribulus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_2009.tif
-SEUS_SUM_IDW_Prionotus_tribulus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_2010.tif
-SEUS_SUM_IDW_Prionotus_tribulus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_2011.tif
-SEUS_SUM_IDW_Prionotus_tribulus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_2012.tif
-SEUS_SUM_IDW_Prionotus_tribulus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_2013.tif
-SEUS_SUM_IDW_Prionotus_tribulus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_2014.tif
-SEUS_SUM_IDW_Prionotus_tribulus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_2015.tif
-SEUS_SUM_IDW_Prionotus_tribulus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_2016.tif
-SEUS_SUM_IDW_Prionotus_tribulus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_2017.tif
-SEUS_SUM_IDW_Prionotus_tribulus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_2018.tif
-SEUS_SUM_IDW_Prionotus_tribulus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Prionotus tribulus\SEUS_SUM_IDW_Prionotus_tribulus_2019.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_1989.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_1990.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_1991.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_1992.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_1993.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_1994.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_1995.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_1996.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_1997.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_1998.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_1999.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2000.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2001.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2002.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2003.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2004.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2005.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2006.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2007.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:01:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2008.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2009.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2010.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2011.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2012.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2013.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2014.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2015.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2016.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2017.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2018.tif
-SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Rhizoprionodon terraenovae\SEUS_SUM_IDW_Rhizoprionodon_terraenovae_2019.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_1989.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_1990.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_1991.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_1992.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_1993.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_1994.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_1995.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_1996.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_1997.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_1998.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_1999.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_2000.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_2001.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_2002.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_2003.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_2004.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_2005.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_2006.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_2007.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_2008.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_2009.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_2010.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_2011.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_2012.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_2013.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_2014.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_2015.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_2016.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_2017.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_2018.tif
-SEUS_SUM_IDW_Scomberomorus_cavalla_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus cavalla\SEUS_SUM_IDW_Scomberomorus_cavalla_2019.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_1989.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_1990.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_1991.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_1992.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_1993.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_1994.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_1995.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_1996.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_1997.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_1998.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_1999.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_2000.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_2001.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_2002.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_2003.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_2004.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_2005.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_2006.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_2007.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_2008.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_2009.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_2010.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_2011.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_2012.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_2013.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_2014.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_2015.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_2016.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_2017.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_2018.tif
-SEUS_SUM_IDW_Scomberomorus_maculatus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scomberomorus maculatus\SEUS_SUM_IDW_Scomberomorus_maculatus_2019.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_1989.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_1990.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_1991.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_1992.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_1993.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_1994.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_1995.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_1996.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_1997.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_1998.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_1999.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_2000.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_2001.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_2002.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_2003.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_2004.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_2005.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_2006.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_2007.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_2008.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_2009.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_2010.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_2011.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_2012.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_2013.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_2014.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_2015.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_2016.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_2017.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_2018.tif
-SEUS_SUM_IDW_Scophthalmus_aquosus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Scophthalmus aquosus\SEUS_SUM_IDW_Scophthalmus_aquosus_2019.tif
-SEUS_SUM_IDW_Selene_setapinnis_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_1989.tif
-SEUS_SUM_IDW_Selene_setapinnis_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_1990.tif
-SEUS_SUM_IDW_Selene_setapinnis_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_1991.tif
-SEUS_SUM_IDW_Selene_setapinnis_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_1992.tif
-SEUS_SUM_IDW_Selene_setapinnis_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_1993.tif
-SEUS_SUM_IDW_Selene_setapinnis_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_1994.tif
-SEUS_SUM_IDW_Selene_setapinnis_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_1995.tif
-SEUS_SUM_IDW_Selene_setapinnis_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_1996.tif
-SEUS_SUM_IDW_Selene_setapinnis_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_1997.tif
-SEUS_SUM_IDW_Selene_setapinnis_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_1998.tif
-SEUS_SUM_IDW_Selene_setapinnis_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_1999.tif
-SEUS_SUM_IDW_Selene_setapinnis_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_2000.tif
-SEUS_SUM_IDW_Selene_setapinnis_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_2001.tif
-SEUS_SUM_IDW_Selene_setapinnis_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_2002.tif
-SEUS_SUM_IDW_Selene_setapinnis_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_2003.tif
-SEUS_SUM_IDW_Selene_setapinnis_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_2004.tif
-SEUS_SUM_IDW_Selene_setapinnis_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_2005.tif
-SEUS_SUM_IDW_Selene_setapinnis_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_2006.tif
-SEUS_SUM_IDW_Selene_setapinnis_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_2007.tif
-SEUS_SUM_IDW_Selene_setapinnis_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_2008.tif
-SEUS_SUM_IDW_Selene_setapinnis_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_2009.tif
-SEUS_SUM_IDW_Selene_setapinnis_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_2010.tif
-SEUS_SUM_IDW_Selene_setapinnis_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_2011.tif
-SEUS_SUM_IDW_Selene_setapinnis_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_2012.tif
-SEUS_SUM_IDW_Selene_setapinnis_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_2013.tif
-SEUS_SUM_IDW_Selene_setapinnis_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_2014.tif
-SEUS_SUM_IDW_Selene_setapinnis_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_2015.tif
-SEUS_SUM_IDW_Selene_setapinnis_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_2016.tif
-SEUS_SUM_IDW_Selene_setapinnis_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_2017.tif
-SEUS_SUM_IDW_Selene_setapinnis_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_2018.tif
-SEUS_SUM_IDW_Selene_setapinnis_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene setapinnis\SEUS_SUM_IDW_Selene_setapinnis_2019.tif
-SEUS_SUM_IDW_Selene_vomer_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_1989.tif
-SEUS_SUM_IDW_Selene_vomer_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_1990.tif
-SEUS_SUM_IDW_Selene_vomer_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_1991.tif
-SEUS_SUM_IDW_Selene_vomer_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_1992.tif
-SEUS_SUM_IDW_Selene_vomer_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_1993.tif
-SEUS_SUM_IDW_Selene_vomer_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_1994.tif
-SEUS_SUM_IDW_Selene_vomer_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_1995.tif
-SEUS_SUM_IDW_Selene_vomer_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_1996.tif
-SEUS_SUM_IDW_Selene_vomer_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_1997.tif
-SEUS_SUM_IDW_Selene_vomer_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_1998.tif
-SEUS_SUM_IDW_Selene_vomer_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_1999.tif
-SEUS_SUM_IDW_Selene_vomer_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_2000.tif
-SEUS_SUM_IDW_Selene_vomer_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_2001.tif
-SEUS_SUM_IDW_Selene_vomer_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_2002.tif
-SEUS_SUM_IDW_Selene_vomer_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_2003.tif
-SEUS_SUM_IDW_Selene_vomer_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_2004.tif
-SEUS_SUM_IDW_Selene_vomer_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_2005.tif
-SEUS_SUM_IDW_Selene_vomer_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_2006.tif
-SEUS_SUM_IDW_Selene_vomer_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_2007.tif
-SEUS_SUM_IDW_Selene_vomer_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_2008.tif
-SEUS_SUM_IDW_Selene_vomer_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_2009.tif
-SEUS_SUM_IDW_Selene_vomer_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_2010.tif
-SEUS_SUM_IDW_Selene_vomer_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_2011.tif
-SEUS_SUM_IDW_Selene_vomer_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_2012.tif
-SEUS_SUM_IDW_Selene_vomer_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_2013.tif
-SEUS_SUM_IDW_Selene_vomer_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_2014.tif
-SEUS_SUM_IDW_Selene_vomer_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_2015.tif
-SEUS_SUM_IDW_Selene_vomer_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_2016.tif
-SEUS_SUM_IDW_Selene_vomer_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_2017.tif
-SEUS_SUM_IDW_Selene_vomer_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_2018.tif
-SEUS_SUM_IDW_Selene_vomer_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Selene vomer\SEUS_SUM_IDW_Selene_vomer_2019.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_1989.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_1990.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_1991.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_1992.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_1993.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_1994.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_1995.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_1996.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_1997.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_1998.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_1999.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_2000.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_2001.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_2002.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_2003.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_2004.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_2005.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_2006.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_2007.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_2008.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_2009.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_2010.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_2011.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_2012.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_2013.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_2014.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_2015.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_2016.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_2017.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_2018.tif
-SEUS_SUM_IDW_Sphoeroides_maculatus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphoeroides maculatus\SEUS_SUM_IDW_Sphoeroides_maculatus_2019.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_1989.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_1990.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_1991.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_1992.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_1993.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_1994.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_1995.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_1996.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_1997.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_1998.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_1999.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_2000.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_2001.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_2002.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_2003.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_2004.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_2005.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_2006.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_2007.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_2008.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_2009.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_2010.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_2011.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_2012.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_2013.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_2014.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_2015.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_2016.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_2017.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_2018.tif
-SEUS_SUM_IDW_Sphyraena_guachancho_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyraena guachancho\SEUS_SUM_IDW_Sphyraena_guachancho_2019.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_1989.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_1990.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_1991.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_1992.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_1993.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_1994.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_1995.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_1996.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_1997.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_1998.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_1999.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_2000.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_2001.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_2002.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_2003.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_2004.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_2005.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:02:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_2006.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_2007.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_2008.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_2009.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_2010.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_2011.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_2012.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_2013.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_2014.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_2015.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_2016.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_2017.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_2018.tif
-SEUS_SUM_IDW_Sphyrna_tiburo_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Sphyrna tiburo\SEUS_SUM_IDW_Sphyrna_tiburo_2019.tif
-SEUS_SUM_IDW_Squilla_empusa_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_1989.tif
-SEUS_SUM_IDW_Squilla_empusa_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_1990.tif
-SEUS_SUM_IDW_Squilla_empusa_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_1991.tif
-SEUS_SUM_IDW_Squilla_empusa_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_1992.tif
-SEUS_SUM_IDW_Squilla_empusa_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_1993.tif
-SEUS_SUM_IDW_Squilla_empusa_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_1994.tif
-SEUS_SUM_IDW_Squilla_empusa_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_1995.tif
-SEUS_SUM_IDW_Squilla_empusa_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_1996.tif
-SEUS_SUM_IDW_Squilla_empusa_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_1997.tif
-SEUS_SUM_IDW_Squilla_empusa_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_1998.tif
-SEUS_SUM_IDW_Squilla_empusa_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_1999.tif
-SEUS_SUM_IDW_Squilla_empusa_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_2000.tif
-SEUS_SUM_IDW_Squilla_empusa_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_2001.tif
-SEUS_SUM_IDW_Squilla_empusa_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_2002.tif
-SEUS_SUM_IDW_Squilla_empusa_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_2003.tif
-SEUS_SUM_IDW_Squilla_empusa_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_2004.tif
-SEUS_SUM_IDW_Squilla_empusa_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_2005.tif
-SEUS_SUM_IDW_Squilla_empusa_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_2006.tif
-SEUS_SUM_IDW_Squilla_empusa_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_2007.tif
-SEUS_SUM_IDW_Squilla_empusa_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_2008.tif
-SEUS_SUM_IDW_Squilla_empusa_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_2009.tif
-SEUS_SUM_IDW_Squilla_empusa_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_2010.tif
-SEUS_SUM_IDW_Squilla_empusa_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_2011.tif
-SEUS_SUM_IDW_Squilla_empusa_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_2012.tif
-SEUS_SUM_IDW_Squilla_empusa_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_2013.tif
-SEUS_SUM_IDW_Squilla_empusa_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_2014.tif
-SEUS_SUM_IDW_Squilla_empusa_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_2015.tif
-SEUS_SUM_IDW_Squilla_empusa_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_2016.tif
-SEUS_SUM_IDW_Squilla_empusa_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_2017.tif
-SEUS_SUM_IDW_Squilla_empusa_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_2018.tif
-SEUS_SUM_IDW_Squilla_empusa_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Squilla empusa\SEUS_SUM_IDW_Squilla_empusa_2019.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_1989.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_1990.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_1991.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_1992.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_1993.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_1994.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_1995.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_1996.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_1997.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_1998.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_1999.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_2000.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_2001.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_2002.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_2003.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_2004.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_2005.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_2006.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_2007.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_2008.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_2009.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_2010.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_2011.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_2012.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_2013.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_2014.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_2015.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_2016.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_2017.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_2018.tif
-SEUS_SUM_IDW_Stellifer_lanceolatus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stellifer lanceolatus\SEUS_SUM_IDW_Stellifer_lanceolatus_2019.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_1989.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_1990.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_1991.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_1992.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_1993.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_1994.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_1995.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_1996.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_1997.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_1998.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_1999.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_2000.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_2001.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_2002.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_2003.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_2004.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_2005.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_2006.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_2007.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_2008.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_2009.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_2010.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_2011.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_2012.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_2013.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_2014.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_2015.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_2016.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_2017.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_2018.tif
-SEUS_SUM_IDW_Stephanolepis_hispida_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Stephanolepis hispida\SEUS_SUM_IDW_Stephanolepis_hispida_2019.tif
-SEUS_SUM_IDW_Synodus_foetens_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_1989.tif
-SEUS_SUM_IDW_Synodus_foetens_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_1990.tif
-SEUS_SUM_IDW_Synodus_foetens_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_1991.tif
-SEUS_SUM_IDW_Synodus_foetens_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_1992.tif
-SEUS_SUM_IDW_Synodus_foetens_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_1993.tif
-SEUS_SUM_IDW_Synodus_foetens_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_1994.tif
-SEUS_SUM_IDW_Synodus_foetens_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_1995.tif
-SEUS_SUM_IDW_Synodus_foetens_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_1996.tif
-SEUS_SUM_IDW_Synodus_foetens_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_1997.tif
-SEUS_SUM_IDW_Synodus_foetens_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_1998.tif
-SEUS_SUM_IDW_Synodus_foetens_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_1999.tif
-SEUS_SUM_IDW_Synodus_foetens_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_2000.tif
-SEUS_SUM_IDW_Synodus_foetens_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_2001.tif
-SEUS_SUM_IDW_Synodus_foetens_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_2002.tif
-SEUS_SUM_IDW_Synodus_foetens_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_2003.tif
-SEUS_SUM_IDW_Synodus_foetens_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_2004.tif
-SEUS_SUM_IDW_Synodus_foetens_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_2005.tif
-SEUS_SUM_IDW_Synodus_foetens_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_2006.tif
-SEUS_SUM_IDW_Synodus_foetens_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_2007.tif
-SEUS_SUM_IDW_Synodus_foetens_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_2008.tif
-SEUS_SUM_IDW_Synodus_foetens_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_2009.tif
-SEUS_SUM_IDW_Synodus_foetens_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_2010.tif
-SEUS_SUM_IDW_Synodus_foetens_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_2011.tif
-SEUS_SUM_IDW_Synodus_foetens_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_2012.tif
-SEUS_SUM_IDW_Synodus_foetens_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_2013.tif
-SEUS_SUM_IDW_Synodus_foetens_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_2014.tif
-SEUS_SUM_IDW_Synodus_foetens_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_2015.tif
-SEUS_SUM_IDW_Synodus_foetens_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_2016.tif
-SEUS_SUM_IDW_Synodus_foetens_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_2017.tif
-SEUS_SUM_IDW_Synodus_foetens_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_2018.tif
-SEUS_SUM_IDW_Synodus_foetens_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Synodus foetens\SEUS_SUM_IDW_Synodus_foetens_2019.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_1989.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_1990.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_1991.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_1992.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_1993.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_1994.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_1995.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_1996.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_1997.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_1998.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_1999.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_2000.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_2001.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_2002.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_2003.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_2004.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_2005.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_2006.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_2007.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_2008.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_2009.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_2010.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_2011.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_2012.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_2013.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_2014.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_2015.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_2016.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_2017.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_2018.tif
-SEUS_SUM_IDW_Trichiurus_lepturus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trichiurus lepturus\SEUS_SUM_IDW_Trichiurus_lepturus_2019.tif
-SEUS_SUM_IDW_Trinectes_maculatus_1989.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_1989.tif
-SEUS_SUM_IDW_Trinectes_maculatus_1990.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_1990.tif
-SEUS_SUM_IDW_Trinectes_maculatus_1991.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_1991.tif
-SEUS_SUM_IDW_Trinectes_maculatus_1992.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_1992.tif
-SEUS_SUM_IDW_Trinectes_maculatus_1993.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_1993.tif
-SEUS_SUM_IDW_Trinectes_maculatus_1994.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_1994.tif
-SEUS_SUM_IDW_Trinectes_maculatus_1995.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_1995.tif
-SEUS_SUM_IDW_Trinectes_maculatus_1996.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_1996.tif
-SEUS_SUM_IDW_Trinectes_maculatus_1997.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_1997.tif
-SEUS_SUM_IDW_Trinectes_maculatus_1998.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_1998.tif
-SEUS_SUM_IDW_Trinectes_maculatus_1999.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_1999.tif
-SEUS_SUM_IDW_Trinectes_maculatus_2000.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_2000.tif
-SEUS_SUM_IDW_Trinectes_maculatus_2001.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_2001.tif
-SEUS_SUM_IDW_Trinectes_maculatus_2002.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_2002.tif
-SEUS_SUM_IDW_Trinectes_maculatus_2003.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_2003.tif
-SEUS_SUM_IDW_Trinectes_maculatus_2004.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_2004.tif
-SEUS_SUM_IDW_Trinectes_maculatus_2005.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_2005.tif
-SEUS_SUM_IDW_Trinectes_maculatus_2006.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_2006.tif
-SEUS_SUM_IDW_Trinectes_maculatus_2007.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_2007.tif
-SEUS_SUM_IDW_Trinectes_maculatus_2008.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_2008.tif
-SEUS_SUM_IDW_Trinectes_maculatus_2009.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_2009.tif
-SEUS_SUM_IDW_Trinectes_maculatus_2010.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_2010.tif
-SEUS_SUM_IDW_Trinectes_maculatus_2011.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_2011.tif
-SEUS_SUM_IDW_Trinectes_maculatus_2012.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_2012.tif
-SEUS_SUM_IDW_Trinectes_maculatus_2013.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_2013.tif
-SEUS_SUM_IDW_Trinectes_maculatus_2014.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_2014.tif
-SEUS_SUM_IDW_Trinectes_maculatus_2015.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_2015.tif
-SEUS_SUM_IDW_Trinectes_maculatus_2016.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_2016.tif
-SEUS_SUM_IDW_Trinectes_maculatus_2017.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:03:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_2017.tif
-SEUS_SUM_IDW_Trinectes_maculatus_2018.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_2018.tif
-SEUS_SUM_IDW_Trinectes_maculatus_2019.tif,.tif,579.48 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\Trinectes maculatus\SEUS_SUM_IDW_Trinectes_maculatus_2019.tif
-SEUS_SUM_IDW_Core_Species_Richness_1989.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_1989.tif
-SEUS_SUM_IDW_Core_Species_Richness_1990.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_1990.tif
-SEUS_SUM_IDW_Core_Species_Richness_1991.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_1991.tif
-SEUS_SUM_IDW_Core_Species_Richness_1992.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_1992.tif
-SEUS_SUM_IDW_Core_Species_Richness_1993.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_1993.tif
-SEUS_SUM_IDW_Core_Species_Richness_1994.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_1994.tif
-SEUS_SUM_IDW_Core_Species_Richness_1995.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_1995.tif
-SEUS_SUM_IDW_Core_Species_Richness_1996.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_1996.tif
-SEUS_SUM_IDW_Core_Species_Richness_1997.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_1997.tif
-SEUS_SUM_IDW_Core_Species_Richness_1998.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_1998.tif
-SEUS_SUM_IDW_Core_Species_Richness_1999.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_1999.tif
-SEUS_SUM_IDW_Core_Species_Richness_2000.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_2000.tif
-SEUS_SUM_IDW_Core_Species_Richness_2001.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_2001.tif
-SEUS_SUM_IDW_Core_Species_Richness_2002.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_2002.tif
-SEUS_SUM_IDW_Core_Species_Richness_2003.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_2003.tif
-SEUS_SUM_IDW_Core_Species_Richness_2004.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_2004.tif
-SEUS_SUM_IDW_Core_Species_Richness_2005.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_2005.tif
-SEUS_SUM_IDW_Core_Species_Richness_2006.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_2006.tif
-SEUS_SUM_IDW_Core_Species_Richness_2007.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_2007.tif
-SEUS_SUM_IDW_Core_Species_Richness_2008.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_2008.tif
-SEUS_SUM_IDW_Core_Species_Richness_2009.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_2009.tif
-SEUS_SUM_IDW_Core_Species_Richness_2010.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_2010.tif
-SEUS_SUM_IDW_Core_Species_Richness_2011.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_2011.tif
-SEUS_SUM_IDW_Core_Species_Richness_2012.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_2012.tif
-SEUS_SUM_IDW_Core_Species_Richness_2013.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_2013.tif
-SEUS_SUM_IDW_Core_Species_Richness_2014.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_2014.tif
-SEUS_SUM_IDW_Core_Species_Richness_2015.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_2015.tif
-SEUS_SUM_IDW_Core_Species_Richness_2016.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_2016.tif
-SEUS_SUM_IDW_Core_Species_Richness_2017.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_2017.tif
-SEUS_SUM_IDW_Core_Species_Richness_2018.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_2018.tif
-SEUS_SUM_IDW_Core_Species_Richness_2019.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Core Species Richness\SEUS_SUM_IDW_Core_Species_Richness_2019.tif
-SEUS_SUM_IDW_Species_Richness_1989.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_1989.tif
-SEUS_SUM_IDW_Species_Richness_1990.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_1990.tif
-SEUS_SUM_IDW_Species_Richness_1991.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_1991.tif
-SEUS_SUM_IDW_Species_Richness_1992.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_1992.tif
-SEUS_SUM_IDW_Species_Richness_1993.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_1993.tif
-SEUS_SUM_IDW_Species_Richness_1994.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_1994.tif
-SEUS_SUM_IDW_Species_Richness_1995.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_1995.tif
-SEUS_SUM_IDW_Species_Richness_1996.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_1996.tif
-SEUS_SUM_IDW_Species_Richness_1997.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_1997.tif
-SEUS_SUM_IDW_Species_Richness_1998.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_1998.tif
-SEUS_SUM_IDW_Species_Richness_1999.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_1999.tif
-SEUS_SUM_IDW_Species_Richness_2000.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_2000.tif
-SEUS_SUM_IDW_Species_Richness_2001.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_2001.tif
-SEUS_SUM_IDW_Species_Richness_2002.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_2002.tif
-SEUS_SUM_IDW_Species_Richness_2003.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_2003.tif
-SEUS_SUM_IDW_Species_Richness_2004.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_2004.tif
-SEUS_SUM_IDW_Species_Richness_2005.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_2005.tif
-SEUS_SUM_IDW_Species_Richness_2006.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_2006.tif
-SEUS_SUM_IDW_Species_Richness_2007.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_2007.tif
-SEUS_SUM_IDW_Species_Richness_2008.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_2008.tif
-SEUS_SUM_IDW_Species_Richness_2009.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_2009.tif
-SEUS_SUM_IDW_Species_Richness_2010.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_2010.tif
-SEUS_SUM_IDW_Species_Richness_2011.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_2011.tif
-SEUS_SUM_IDW_Species_Richness_2012.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_2012.tif
-SEUS_SUM_IDW_Species_Richness_2013.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_2013.tif
-SEUS_SUM_IDW_Species_Richness_2014.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_2014.tif
-SEUS_SUM_IDW_Species_Richness_2015.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_2015.tif
-SEUS_SUM_IDW_Species_Richness_2016.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_2016.tif
-SEUS_SUM_IDW_Species_Richness_2017.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_2017.tif
-SEUS_SUM_IDW_Species_Richness_2018.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_2018.tif
-SEUS_SUM_IDW_Species_Richness_2019.tif,.tif,579.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\SEUS_SUM_IDW\_Species Richness\SEUS_SUM_IDW_Species_Richness_2019.tif
-WC_ANN_IDW_Actinauge_verrillii_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinauge verrillii\WC_ANN_IDW_Actinauge_verrillii_2003.tif
-WC_ANN_IDW_Actinauge_verrillii_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinauge verrillii\WC_ANN_IDW_Actinauge_verrillii_2004.tif
-WC_ANN_IDW_Actinauge_verrillii_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinauge verrillii\WC_ANN_IDW_Actinauge_verrillii_2005.tif
-WC_ANN_IDW_Actinauge_verrillii_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinauge verrillii\WC_ANN_IDW_Actinauge_verrillii_2006.tif
-WC_ANN_IDW_Actinauge_verrillii_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinauge verrillii\WC_ANN_IDW_Actinauge_verrillii_2007.tif
-WC_ANN_IDW_Actinauge_verrillii_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinauge verrillii\WC_ANN_IDW_Actinauge_verrillii_2008.tif
-WC_ANN_IDW_Actinauge_verrillii_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinauge verrillii\WC_ANN_IDW_Actinauge_verrillii_2009.tif
-WC_ANN_IDW_Actinauge_verrillii_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinauge verrillii\WC_ANN_IDW_Actinauge_verrillii_2010.tif
-WC_ANN_IDW_Actinauge_verrillii_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinauge verrillii\WC_ANN_IDW_Actinauge_verrillii_2011.tif
-WC_ANN_IDW_Actinauge_verrillii_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinauge verrillii\WC_ANN_IDW_Actinauge_verrillii_2012.tif
-WC_ANN_IDW_Actinauge_verrillii_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinauge verrillii\WC_ANN_IDW_Actinauge_verrillii_2013.tif
-WC_ANN_IDW_Actinauge_verrillii_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinauge verrillii\WC_ANN_IDW_Actinauge_verrillii_2014.tif
-WC_ANN_IDW_Actinauge_verrillii_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinauge verrillii\WC_ANN_IDW_Actinauge_verrillii_2015.tif
-WC_ANN_IDW_Actinauge_verrillii_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinauge verrillii\WC_ANN_IDW_Actinauge_verrillii_2016.tif
-WC_ANN_IDW_Actinauge_verrillii_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinauge verrillii\WC_ANN_IDW_Actinauge_verrillii_2017.tif
-WC_ANN_IDW_Actinauge_verrillii_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinauge verrillii\WC_ANN_IDW_Actinauge_verrillii_2018.tif
-WC_ANN_IDW_Actinauge_verrillii_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinauge verrillii\WC_ANN_IDW_Actinauge_verrillii_2019.tif
-WC_ANN_IDW_Actinauge_verrillii_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinauge verrillii\WC_ANN_IDW_Actinauge_verrillii_2021.tif
-WC_ANN_IDW_Actinauge_verrillii_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinauge verrillii\WC_ANN_IDW_Actinauge_verrillii_2022.tif
-WC_ANN_IDW_Actinostola_faeculenta_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinostola faeculenta\WC_ANN_IDW_Actinostola_faeculenta_2003.tif
-WC_ANN_IDW_Actinostola_faeculenta_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinostola faeculenta\WC_ANN_IDW_Actinostola_faeculenta_2004.tif
-WC_ANN_IDW_Actinostola_faeculenta_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinostola faeculenta\WC_ANN_IDW_Actinostola_faeculenta_2005.tif
-WC_ANN_IDW_Actinostola_faeculenta_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinostola faeculenta\WC_ANN_IDW_Actinostola_faeculenta_2006.tif
-WC_ANN_IDW_Actinostola_faeculenta_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinostola faeculenta\WC_ANN_IDW_Actinostola_faeculenta_2007.tif
-WC_ANN_IDW_Actinostola_faeculenta_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinostola faeculenta\WC_ANN_IDW_Actinostola_faeculenta_2008.tif
-WC_ANN_IDW_Actinostola_faeculenta_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinostola faeculenta\WC_ANN_IDW_Actinostola_faeculenta_2009.tif
-WC_ANN_IDW_Actinostola_faeculenta_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinostola faeculenta\WC_ANN_IDW_Actinostola_faeculenta_2010.tif
-WC_ANN_IDW_Actinostola_faeculenta_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinostola faeculenta\WC_ANN_IDW_Actinostola_faeculenta_2011.tif
-WC_ANN_IDW_Actinostola_faeculenta_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinostola faeculenta\WC_ANN_IDW_Actinostola_faeculenta_2012.tif
-WC_ANN_IDW_Actinostola_faeculenta_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinostola faeculenta\WC_ANN_IDW_Actinostola_faeculenta_2013.tif
-WC_ANN_IDW_Actinostola_faeculenta_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinostola faeculenta\WC_ANN_IDW_Actinostola_faeculenta_2014.tif
-WC_ANN_IDW_Actinostola_faeculenta_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinostola faeculenta\WC_ANN_IDW_Actinostola_faeculenta_2015.tif
-WC_ANN_IDW_Actinostola_faeculenta_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinostola faeculenta\WC_ANN_IDW_Actinostola_faeculenta_2016.tif
-WC_ANN_IDW_Actinostola_faeculenta_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinostola faeculenta\WC_ANN_IDW_Actinostola_faeculenta_2017.tif
-WC_ANN_IDW_Actinostola_faeculenta_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinostola faeculenta\WC_ANN_IDW_Actinostola_faeculenta_2018.tif
-WC_ANN_IDW_Actinostola_faeculenta_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinostola faeculenta\WC_ANN_IDW_Actinostola_faeculenta_2019.tif
-WC_ANN_IDW_Actinostola_faeculenta_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinostola faeculenta\WC_ANN_IDW_Actinostola_faeculenta_2021.tif
-WC_ANN_IDW_Actinostola_faeculenta_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Actinostola faeculenta\WC_ANN_IDW_Actinostola_faeculenta_2022.tif
-WC_ANN_IDW_Albatrossia_pectoralis_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Albatrossia pectoralis\WC_ANN_IDW_Albatrossia_pectoralis_2003.tif
-WC_ANN_IDW_Albatrossia_pectoralis_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Albatrossia pectoralis\WC_ANN_IDW_Albatrossia_pectoralis_2004.tif
-WC_ANN_IDW_Albatrossia_pectoralis_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Albatrossia pectoralis\WC_ANN_IDW_Albatrossia_pectoralis_2005.tif
-WC_ANN_IDW_Albatrossia_pectoralis_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Albatrossia pectoralis\WC_ANN_IDW_Albatrossia_pectoralis_2006.tif
-WC_ANN_IDW_Albatrossia_pectoralis_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Albatrossia pectoralis\WC_ANN_IDW_Albatrossia_pectoralis_2007.tif
-WC_ANN_IDW_Albatrossia_pectoralis_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Albatrossia pectoralis\WC_ANN_IDW_Albatrossia_pectoralis_2008.tif
-WC_ANN_IDW_Albatrossia_pectoralis_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Albatrossia pectoralis\WC_ANN_IDW_Albatrossia_pectoralis_2009.tif
-WC_ANN_IDW_Albatrossia_pectoralis_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Albatrossia pectoralis\WC_ANN_IDW_Albatrossia_pectoralis_2010.tif
-WC_ANN_IDW_Albatrossia_pectoralis_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Albatrossia pectoralis\WC_ANN_IDW_Albatrossia_pectoralis_2011.tif
-WC_ANN_IDW_Albatrossia_pectoralis_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Albatrossia pectoralis\WC_ANN_IDW_Albatrossia_pectoralis_2012.tif
-WC_ANN_IDW_Albatrossia_pectoralis_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Albatrossia pectoralis\WC_ANN_IDW_Albatrossia_pectoralis_2013.tif
-WC_ANN_IDW_Albatrossia_pectoralis_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Albatrossia pectoralis\WC_ANN_IDW_Albatrossia_pectoralis_2014.tif
-WC_ANN_IDW_Albatrossia_pectoralis_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Albatrossia pectoralis\WC_ANN_IDW_Albatrossia_pectoralis_2015.tif
-WC_ANN_IDW_Albatrossia_pectoralis_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Albatrossia pectoralis\WC_ANN_IDW_Albatrossia_pectoralis_2016.tif
-WC_ANN_IDW_Albatrossia_pectoralis_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Albatrossia pectoralis\WC_ANN_IDW_Albatrossia_pectoralis_2017.tif
-WC_ANN_IDW_Albatrossia_pectoralis_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Albatrossia pectoralis\WC_ANN_IDW_Albatrossia_pectoralis_2018.tif
-WC_ANN_IDW_Albatrossia_pectoralis_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Albatrossia pectoralis\WC_ANN_IDW_Albatrossia_pectoralis_2019.tif
-WC_ANN_IDW_Albatrossia_pectoralis_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Albatrossia pectoralis\WC_ANN_IDW_Albatrossia_pectoralis_2021.tif
-WC_ANN_IDW_Albatrossia_pectoralis_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Albatrossia pectoralis\WC_ANN_IDW_Albatrossia_pectoralis_2022.tif
-WC_ANN_IDW_Alepocephalus_tenebrosus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alepocephalus tenebrosus\WC_ANN_IDW_Alepocephalus_tenebrosus_2003.tif
-WC_ANN_IDW_Alepocephalus_tenebrosus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alepocephalus tenebrosus\WC_ANN_IDW_Alepocephalus_tenebrosus_2004.tif
-WC_ANN_IDW_Alepocephalus_tenebrosus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alepocephalus tenebrosus\WC_ANN_IDW_Alepocephalus_tenebrosus_2005.tif
-WC_ANN_IDW_Alepocephalus_tenebrosus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alepocephalus tenebrosus\WC_ANN_IDW_Alepocephalus_tenebrosus_2006.tif
-WC_ANN_IDW_Alepocephalus_tenebrosus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alepocephalus tenebrosus\WC_ANN_IDW_Alepocephalus_tenebrosus_2007.tif
-WC_ANN_IDW_Alepocephalus_tenebrosus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alepocephalus tenebrosus\WC_ANN_IDW_Alepocephalus_tenebrosus_2008.tif
-WC_ANN_IDW_Alepocephalus_tenebrosus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alepocephalus tenebrosus\WC_ANN_IDW_Alepocephalus_tenebrosus_2009.tif
-WC_ANN_IDW_Alepocephalus_tenebrosus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alepocephalus tenebrosus\WC_ANN_IDW_Alepocephalus_tenebrosus_2010.tif
-WC_ANN_IDW_Alepocephalus_tenebrosus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alepocephalus tenebrosus\WC_ANN_IDW_Alepocephalus_tenebrosus_2011.tif
-WC_ANN_IDW_Alepocephalus_tenebrosus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alepocephalus tenebrosus\WC_ANN_IDW_Alepocephalus_tenebrosus_2012.tif
-WC_ANN_IDW_Alepocephalus_tenebrosus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alepocephalus tenebrosus\WC_ANN_IDW_Alepocephalus_tenebrosus_2013.tif
-WC_ANN_IDW_Alepocephalus_tenebrosus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alepocephalus tenebrosus\WC_ANN_IDW_Alepocephalus_tenebrosus_2014.tif
-WC_ANN_IDW_Alepocephalus_tenebrosus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alepocephalus tenebrosus\WC_ANN_IDW_Alepocephalus_tenebrosus_2015.tif
-WC_ANN_IDW_Alepocephalus_tenebrosus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alepocephalus tenebrosus\WC_ANN_IDW_Alepocephalus_tenebrosus_2016.tif
-WC_ANN_IDW_Alepocephalus_tenebrosus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alepocephalus tenebrosus\WC_ANN_IDW_Alepocephalus_tenebrosus_2017.tif
-WC_ANN_IDW_Alepocephalus_tenebrosus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alepocephalus tenebrosus\WC_ANN_IDW_Alepocephalus_tenebrosus_2018.tif
-WC_ANN_IDW_Alepocephalus_tenebrosus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alepocephalus tenebrosus\WC_ANN_IDW_Alepocephalus_tenebrosus_2019.tif
-WC_ANN_IDW_Alepocephalus_tenebrosus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alepocephalus tenebrosus\WC_ANN_IDW_Alepocephalus_tenebrosus_2021.tif
-WC_ANN_IDW_Alepocephalus_tenebrosus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alepocephalus tenebrosus\WC_ANN_IDW_Alepocephalus_tenebrosus_2022.tif
-WC_ANN_IDW_Alosa_sapidissima_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alosa sapidissima\WC_ANN_IDW_Alosa_sapidissima_2003.tif
-WC_ANN_IDW_Alosa_sapidissima_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alosa sapidissima\WC_ANN_IDW_Alosa_sapidissima_2004.tif
-WC_ANN_IDW_Alosa_sapidissima_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alosa sapidissima\WC_ANN_IDW_Alosa_sapidissima_2005.tif
-WC_ANN_IDW_Alosa_sapidissima_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alosa sapidissima\WC_ANN_IDW_Alosa_sapidissima_2006.tif
-WC_ANN_IDW_Alosa_sapidissima_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alosa sapidissima\WC_ANN_IDW_Alosa_sapidissima_2007.tif
-WC_ANN_IDW_Alosa_sapidissima_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alosa sapidissima\WC_ANN_IDW_Alosa_sapidissima_2008.tif
-WC_ANN_IDW_Alosa_sapidissima_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alosa sapidissima\WC_ANN_IDW_Alosa_sapidissima_2009.tif
-WC_ANN_IDW_Alosa_sapidissima_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alosa sapidissima\WC_ANN_IDW_Alosa_sapidissima_2010.tif
-WC_ANN_IDW_Alosa_sapidissima_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alosa sapidissima\WC_ANN_IDW_Alosa_sapidissima_2011.tif
-WC_ANN_IDW_Alosa_sapidissima_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alosa sapidissima\WC_ANN_IDW_Alosa_sapidissima_2012.tif
-WC_ANN_IDW_Alosa_sapidissima_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alosa sapidissima\WC_ANN_IDW_Alosa_sapidissima_2013.tif
-WC_ANN_IDW_Alosa_sapidissima_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alosa sapidissima\WC_ANN_IDW_Alosa_sapidissima_2014.tif
-WC_ANN_IDW_Alosa_sapidissima_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alosa sapidissima\WC_ANN_IDW_Alosa_sapidissima_2015.tif
-WC_ANN_IDW_Alosa_sapidissima_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alosa sapidissima\WC_ANN_IDW_Alosa_sapidissima_2016.tif
-WC_ANN_IDW_Alosa_sapidissima_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alosa sapidissima\WC_ANN_IDW_Alosa_sapidissima_2017.tif
-WC_ANN_IDW_Alosa_sapidissima_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alosa sapidissima\WC_ANN_IDW_Alosa_sapidissima_2018.tif
-WC_ANN_IDW_Alosa_sapidissima_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alosa sapidissima\WC_ANN_IDW_Alosa_sapidissima_2019.tif
-WC_ANN_IDW_Alosa_sapidissima_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alosa sapidissima\WC_ANN_IDW_Alosa_sapidissima_2021.tif
-WC_ANN_IDW_Alosa_sapidissima_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Alosa sapidissima\WC_ANN_IDW_Alosa_sapidissima_2022.tif
-WC_ANN_IDW_Anoplopoma_fimbria_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anoplopoma fimbria\WC_ANN_IDW_Anoplopoma_fimbria_2003.tif
-WC_ANN_IDW_Anoplopoma_fimbria_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anoplopoma fimbria\WC_ANN_IDW_Anoplopoma_fimbria_2004.tif
-WC_ANN_IDW_Anoplopoma_fimbria_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anoplopoma fimbria\WC_ANN_IDW_Anoplopoma_fimbria_2005.tif
-WC_ANN_IDW_Anoplopoma_fimbria_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anoplopoma fimbria\WC_ANN_IDW_Anoplopoma_fimbria_2006.tif
-WC_ANN_IDW_Anoplopoma_fimbria_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anoplopoma fimbria\WC_ANN_IDW_Anoplopoma_fimbria_2007.tif
-WC_ANN_IDW_Anoplopoma_fimbria_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anoplopoma fimbria\WC_ANN_IDW_Anoplopoma_fimbria_2008.tif
-WC_ANN_IDW_Anoplopoma_fimbria_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anoplopoma fimbria\WC_ANN_IDW_Anoplopoma_fimbria_2009.tif
-WC_ANN_IDW_Anoplopoma_fimbria_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anoplopoma fimbria\WC_ANN_IDW_Anoplopoma_fimbria_2010.tif
-WC_ANN_IDW_Anoplopoma_fimbria_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anoplopoma fimbria\WC_ANN_IDW_Anoplopoma_fimbria_2011.tif
-WC_ANN_IDW_Anoplopoma_fimbria_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anoplopoma fimbria\WC_ANN_IDW_Anoplopoma_fimbria_2012.tif
-WC_ANN_IDW_Anoplopoma_fimbria_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anoplopoma fimbria\WC_ANN_IDW_Anoplopoma_fimbria_2013.tif
-WC_ANN_IDW_Anoplopoma_fimbria_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anoplopoma fimbria\WC_ANN_IDW_Anoplopoma_fimbria_2014.tif
-WC_ANN_IDW_Anoplopoma_fimbria_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anoplopoma fimbria\WC_ANN_IDW_Anoplopoma_fimbria_2015.tif
-WC_ANN_IDW_Anoplopoma_fimbria_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anoplopoma fimbria\WC_ANN_IDW_Anoplopoma_fimbria_2016.tif
-WC_ANN_IDW_Anoplopoma_fimbria_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anoplopoma fimbria\WC_ANN_IDW_Anoplopoma_fimbria_2017.tif
-WC_ANN_IDW_Anoplopoma_fimbria_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anoplopoma fimbria\WC_ANN_IDW_Anoplopoma_fimbria_2018.tif
-WC_ANN_IDW_Anoplopoma_fimbria_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anoplopoma fimbria\WC_ANN_IDW_Anoplopoma_fimbria_2019.tif
-WC_ANN_IDW_Anoplopoma_fimbria_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anoplopoma fimbria\WC_ANN_IDW_Anoplopoma_fimbria_2021.tif
-WC_ANN_IDW_Anoplopoma_fimbria_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anoplopoma fimbria\WC_ANN_IDW_Anoplopoma_fimbria_2022.tif
-WC_ANN_IDW_Anthoptilum_grandiflorum_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anthoptilum grandiflorum\WC_ANN_IDW_Anthoptilum_grandiflorum_2003.tif
-WC_ANN_IDW_Anthoptilum_grandiflorum_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anthoptilum grandiflorum\WC_ANN_IDW_Anthoptilum_grandiflorum_2004.tif
-WC_ANN_IDW_Anthoptilum_grandiflorum_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anthoptilum grandiflorum\WC_ANN_IDW_Anthoptilum_grandiflorum_2005.tif
-WC_ANN_IDW_Anthoptilum_grandiflorum_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anthoptilum grandiflorum\WC_ANN_IDW_Anthoptilum_grandiflorum_2006.tif
-WC_ANN_IDW_Anthoptilum_grandiflorum_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anthoptilum grandiflorum\WC_ANN_IDW_Anthoptilum_grandiflorum_2007.tif
-WC_ANN_IDW_Anthoptilum_grandiflorum_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:22:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anthoptilum grandiflorum\WC_ANN_IDW_Anthoptilum_grandiflorum_2008.tif
-WC_ANN_IDW_Anthoptilum_grandiflorum_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anthoptilum grandiflorum\WC_ANN_IDW_Anthoptilum_grandiflorum_2009.tif
-WC_ANN_IDW_Anthoptilum_grandiflorum_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anthoptilum grandiflorum\WC_ANN_IDW_Anthoptilum_grandiflorum_2010.tif
-WC_ANN_IDW_Anthoptilum_grandiflorum_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anthoptilum grandiflorum\WC_ANN_IDW_Anthoptilum_grandiflorum_2011.tif
-WC_ANN_IDW_Anthoptilum_grandiflorum_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anthoptilum grandiflorum\WC_ANN_IDW_Anthoptilum_grandiflorum_2012.tif
-WC_ANN_IDW_Anthoptilum_grandiflorum_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anthoptilum grandiflorum\WC_ANN_IDW_Anthoptilum_grandiflorum_2013.tif
-WC_ANN_IDW_Anthoptilum_grandiflorum_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anthoptilum grandiflorum\WC_ANN_IDW_Anthoptilum_grandiflorum_2014.tif
-WC_ANN_IDW_Anthoptilum_grandiflorum_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anthoptilum grandiflorum\WC_ANN_IDW_Anthoptilum_grandiflorum_2015.tif
-WC_ANN_IDW_Anthoptilum_grandiflorum_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anthoptilum grandiflorum\WC_ANN_IDW_Anthoptilum_grandiflorum_2016.tif
-WC_ANN_IDW_Anthoptilum_grandiflorum_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anthoptilum grandiflorum\WC_ANN_IDW_Anthoptilum_grandiflorum_2017.tif
-WC_ANN_IDW_Anthoptilum_grandiflorum_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anthoptilum grandiflorum\WC_ANN_IDW_Anthoptilum_grandiflorum_2018.tif
-WC_ANN_IDW_Anthoptilum_grandiflorum_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anthoptilum grandiflorum\WC_ANN_IDW_Anthoptilum_grandiflorum_2019.tif
-WC_ANN_IDW_Anthoptilum_grandiflorum_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anthoptilum grandiflorum\WC_ANN_IDW_Anthoptilum_grandiflorum_2021.tif
-WC_ANN_IDW_Anthoptilum_grandiflorum_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Anthoptilum grandiflorum\WC_ANN_IDW_Anthoptilum_grandiflorum_2022.tif
-WC_ANN_IDW_Antimora_microlepis_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Antimora microlepis\WC_ANN_IDW_Antimora_microlepis_2003.tif
-WC_ANN_IDW_Antimora_microlepis_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Antimora microlepis\WC_ANN_IDW_Antimora_microlepis_2004.tif
-WC_ANN_IDW_Antimora_microlepis_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Antimora microlepis\WC_ANN_IDW_Antimora_microlepis_2005.tif
-WC_ANN_IDW_Antimora_microlepis_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Antimora microlepis\WC_ANN_IDW_Antimora_microlepis_2006.tif
-WC_ANN_IDW_Antimora_microlepis_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Antimora microlepis\WC_ANN_IDW_Antimora_microlepis_2007.tif
-WC_ANN_IDW_Antimora_microlepis_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Antimora microlepis\WC_ANN_IDW_Antimora_microlepis_2008.tif
-WC_ANN_IDW_Antimora_microlepis_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Antimora microlepis\WC_ANN_IDW_Antimora_microlepis_2009.tif
-WC_ANN_IDW_Antimora_microlepis_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Antimora microlepis\WC_ANN_IDW_Antimora_microlepis_2010.tif
-WC_ANN_IDW_Antimora_microlepis_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Antimora microlepis\WC_ANN_IDW_Antimora_microlepis_2011.tif
-WC_ANN_IDW_Antimora_microlepis_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Antimora microlepis\WC_ANN_IDW_Antimora_microlepis_2012.tif
-WC_ANN_IDW_Antimora_microlepis_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Antimora microlepis\WC_ANN_IDW_Antimora_microlepis_2013.tif
-WC_ANN_IDW_Antimora_microlepis_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Antimora microlepis\WC_ANN_IDW_Antimora_microlepis_2014.tif
-WC_ANN_IDW_Antimora_microlepis_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Antimora microlepis\WC_ANN_IDW_Antimora_microlepis_2015.tif
-WC_ANN_IDW_Antimora_microlepis_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Antimora microlepis\WC_ANN_IDW_Antimora_microlepis_2016.tif
-WC_ANN_IDW_Antimora_microlepis_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Antimora microlepis\WC_ANN_IDW_Antimora_microlepis_2017.tif
-WC_ANN_IDW_Antimora_microlepis_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Antimora microlepis\WC_ANN_IDW_Antimora_microlepis_2018.tif
-WC_ANN_IDW_Antimora_microlepis_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Antimora microlepis\WC_ANN_IDW_Antimora_microlepis_2019.tif
-WC_ANN_IDW_Antimora_microlepis_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Antimora microlepis\WC_ANN_IDW_Antimora_microlepis_2021.tif
-WC_ANN_IDW_Antimora_microlepis_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Antimora microlepis\WC_ANN_IDW_Antimora_microlepis_2022.tif
-WC_ANN_IDW_Apostichopus_californicus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus californicus\WC_ANN_IDW_Apostichopus_californicus_2003.tif
-WC_ANN_IDW_Apostichopus_californicus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus californicus\WC_ANN_IDW_Apostichopus_californicus_2004.tif
-WC_ANN_IDW_Apostichopus_californicus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus californicus\WC_ANN_IDW_Apostichopus_californicus_2005.tif
-WC_ANN_IDW_Apostichopus_californicus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus californicus\WC_ANN_IDW_Apostichopus_californicus_2006.tif
-WC_ANN_IDW_Apostichopus_californicus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus californicus\WC_ANN_IDW_Apostichopus_californicus_2007.tif
-WC_ANN_IDW_Apostichopus_californicus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus californicus\WC_ANN_IDW_Apostichopus_californicus_2008.tif
-WC_ANN_IDW_Apostichopus_californicus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus californicus\WC_ANN_IDW_Apostichopus_californicus_2009.tif
-WC_ANN_IDW_Apostichopus_californicus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus californicus\WC_ANN_IDW_Apostichopus_californicus_2010.tif
-WC_ANN_IDW_Apostichopus_californicus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus californicus\WC_ANN_IDW_Apostichopus_californicus_2011.tif
-WC_ANN_IDW_Apostichopus_californicus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus californicus\WC_ANN_IDW_Apostichopus_californicus_2012.tif
-WC_ANN_IDW_Apostichopus_californicus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus californicus\WC_ANN_IDW_Apostichopus_californicus_2013.tif
-WC_ANN_IDW_Apostichopus_californicus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus californicus\WC_ANN_IDW_Apostichopus_californicus_2014.tif
-WC_ANN_IDW_Apostichopus_californicus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus californicus\WC_ANN_IDW_Apostichopus_californicus_2015.tif
-WC_ANN_IDW_Apostichopus_californicus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus californicus\WC_ANN_IDW_Apostichopus_californicus_2016.tif
-WC_ANN_IDW_Apostichopus_californicus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus californicus\WC_ANN_IDW_Apostichopus_californicus_2017.tif
-WC_ANN_IDW_Apostichopus_californicus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus californicus\WC_ANN_IDW_Apostichopus_californicus_2018.tif
-WC_ANN_IDW_Apostichopus_californicus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus californicus\WC_ANN_IDW_Apostichopus_californicus_2019.tif
-WC_ANN_IDW_Apostichopus_californicus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus californicus\WC_ANN_IDW_Apostichopus_californicus_2021.tif
-WC_ANN_IDW_Apostichopus_californicus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus californicus\WC_ANN_IDW_Apostichopus_californicus_2022.tif
-WC_ANN_IDW_Apostichopus_leukothele_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus leukothele\WC_ANN_IDW_Apostichopus_leukothele_2003.tif
-WC_ANN_IDW_Apostichopus_leukothele_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus leukothele\WC_ANN_IDW_Apostichopus_leukothele_2004.tif
-WC_ANN_IDW_Apostichopus_leukothele_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus leukothele\WC_ANN_IDW_Apostichopus_leukothele_2005.tif
-WC_ANN_IDW_Apostichopus_leukothele_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus leukothele\WC_ANN_IDW_Apostichopus_leukothele_2006.tif
-WC_ANN_IDW_Apostichopus_leukothele_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus leukothele\WC_ANN_IDW_Apostichopus_leukothele_2007.tif
-WC_ANN_IDW_Apostichopus_leukothele_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus leukothele\WC_ANN_IDW_Apostichopus_leukothele_2008.tif
-WC_ANN_IDW_Apostichopus_leukothele_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus leukothele\WC_ANN_IDW_Apostichopus_leukothele_2009.tif
-WC_ANN_IDW_Apostichopus_leukothele_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus leukothele\WC_ANN_IDW_Apostichopus_leukothele_2010.tif
-WC_ANN_IDW_Apostichopus_leukothele_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus leukothele\WC_ANN_IDW_Apostichopus_leukothele_2011.tif
-WC_ANN_IDW_Apostichopus_leukothele_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus leukothele\WC_ANN_IDW_Apostichopus_leukothele_2012.tif
-WC_ANN_IDW_Apostichopus_leukothele_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus leukothele\WC_ANN_IDW_Apostichopus_leukothele_2013.tif
-WC_ANN_IDW_Apostichopus_leukothele_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus leukothele\WC_ANN_IDW_Apostichopus_leukothele_2014.tif
-WC_ANN_IDW_Apostichopus_leukothele_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus leukothele\WC_ANN_IDW_Apostichopus_leukothele_2015.tif
-WC_ANN_IDW_Apostichopus_leukothele_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus leukothele\WC_ANN_IDW_Apostichopus_leukothele_2016.tif
-WC_ANN_IDW_Apostichopus_leukothele_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus leukothele\WC_ANN_IDW_Apostichopus_leukothele_2017.tif
-WC_ANN_IDW_Apostichopus_leukothele_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus leukothele\WC_ANN_IDW_Apostichopus_leukothele_2018.tif
-WC_ANN_IDW_Apostichopus_leukothele_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus leukothele\WC_ANN_IDW_Apostichopus_leukothele_2019.tif
-WC_ANN_IDW_Apostichopus_leukothele_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus leukothele\WC_ANN_IDW_Apostichopus_leukothele_2021.tif
-WC_ANN_IDW_Apostichopus_leukothele_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apostichopus leukothele\WC_ANN_IDW_Apostichopus_leukothele_2022.tif
-WC_ANN_IDW_Apristurus_brunneus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apristurus brunneus\WC_ANN_IDW_Apristurus_brunneus_2003.tif
-WC_ANN_IDW_Apristurus_brunneus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apristurus brunneus\WC_ANN_IDW_Apristurus_brunneus_2004.tif
-WC_ANN_IDW_Apristurus_brunneus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apristurus brunneus\WC_ANN_IDW_Apristurus_brunneus_2005.tif
-WC_ANN_IDW_Apristurus_brunneus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apristurus brunneus\WC_ANN_IDW_Apristurus_brunneus_2006.tif
-WC_ANN_IDW_Apristurus_brunneus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apristurus brunneus\WC_ANN_IDW_Apristurus_brunneus_2007.tif
-WC_ANN_IDW_Apristurus_brunneus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apristurus brunneus\WC_ANN_IDW_Apristurus_brunneus_2008.tif
-WC_ANN_IDW_Apristurus_brunneus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apristurus brunneus\WC_ANN_IDW_Apristurus_brunneus_2009.tif
-WC_ANN_IDW_Apristurus_brunneus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apristurus brunneus\WC_ANN_IDW_Apristurus_brunneus_2010.tif
-WC_ANN_IDW_Apristurus_brunneus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apristurus brunneus\WC_ANN_IDW_Apristurus_brunneus_2011.tif
-WC_ANN_IDW_Apristurus_brunneus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apristurus brunneus\WC_ANN_IDW_Apristurus_brunneus_2012.tif
-WC_ANN_IDW_Apristurus_brunneus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apristurus brunneus\WC_ANN_IDW_Apristurus_brunneus_2013.tif
-WC_ANN_IDW_Apristurus_brunneus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apristurus brunneus\WC_ANN_IDW_Apristurus_brunneus_2014.tif
-WC_ANN_IDW_Apristurus_brunneus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apristurus brunneus\WC_ANN_IDW_Apristurus_brunneus_2015.tif
-WC_ANN_IDW_Apristurus_brunneus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apristurus brunneus\WC_ANN_IDW_Apristurus_brunneus_2016.tif
-WC_ANN_IDW_Apristurus_brunneus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apristurus brunneus\WC_ANN_IDW_Apristurus_brunneus_2017.tif
-WC_ANN_IDW_Apristurus_brunneus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apristurus brunneus\WC_ANN_IDW_Apristurus_brunneus_2018.tif
-WC_ANN_IDW_Apristurus_brunneus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apristurus brunneus\WC_ANN_IDW_Apristurus_brunneus_2019.tif
-WC_ANN_IDW_Apristurus_brunneus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apristurus brunneus\WC_ANN_IDW_Apristurus_brunneus_2021.tif
-WC_ANN_IDW_Apristurus_brunneus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Apristurus brunneus\WC_ANN_IDW_Apristurus_brunneus_2022.tif
-WC_ANN_IDW_Atheresthes_stomias_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Atheresthes stomias\WC_ANN_IDW_Atheresthes_stomias_2003.tif
-WC_ANN_IDW_Atheresthes_stomias_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Atheresthes stomias\WC_ANN_IDW_Atheresthes_stomias_2004.tif
-WC_ANN_IDW_Atheresthes_stomias_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Atheresthes stomias\WC_ANN_IDW_Atheresthes_stomias_2005.tif
-WC_ANN_IDW_Atheresthes_stomias_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Atheresthes stomias\WC_ANN_IDW_Atheresthes_stomias_2006.tif
-WC_ANN_IDW_Atheresthes_stomias_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Atheresthes stomias\WC_ANN_IDW_Atheresthes_stomias_2007.tif
-WC_ANN_IDW_Atheresthes_stomias_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Atheresthes stomias\WC_ANN_IDW_Atheresthes_stomias_2008.tif
-WC_ANN_IDW_Atheresthes_stomias_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Atheresthes stomias\WC_ANN_IDW_Atheresthes_stomias_2009.tif
-WC_ANN_IDW_Atheresthes_stomias_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Atheresthes stomias\WC_ANN_IDW_Atheresthes_stomias_2010.tif
-WC_ANN_IDW_Atheresthes_stomias_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Atheresthes stomias\WC_ANN_IDW_Atheresthes_stomias_2011.tif
-WC_ANN_IDW_Atheresthes_stomias_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Atheresthes stomias\WC_ANN_IDW_Atheresthes_stomias_2012.tif
-WC_ANN_IDW_Atheresthes_stomias_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Atheresthes stomias\WC_ANN_IDW_Atheresthes_stomias_2013.tif
-WC_ANN_IDW_Atheresthes_stomias_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Atheresthes stomias\WC_ANN_IDW_Atheresthes_stomias_2014.tif
-WC_ANN_IDW_Atheresthes_stomias_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Atheresthes stomias\WC_ANN_IDW_Atheresthes_stomias_2015.tif
-WC_ANN_IDW_Atheresthes_stomias_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Atheresthes stomias\WC_ANN_IDW_Atheresthes_stomias_2016.tif
-WC_ANN_IDW_Atheresthes_stomias_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Atheresthes stomias\WC_ANN_IDW_Atheresthes_stomias_2017.tif
-WC_ANN_IDW_Atheresthes_stomias_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Atheresthes stomias\WC_ANN_IDW_Atheresthes_stomias_2018.tif
-WC_ANN_IDW_Atheresthes_stomias_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Atheresthes stomias\WC_ANN_IDW_Atheresthes_stomias_2019.tif
-WC_ANN_IDW_Atheresthes_stomias_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Atheresthes stomias\WC_ANN_IDW_Atheresthes_stomias_2021.tif
-WC_ANN_IDW_Atheresthes_stomias_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Atheresthes stomias\WC_ANN_IDW_Atheresthes_stomias_2022.tif
-WC_ANN_IDW_Bathybembix_bairdii_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathybembix bairdii\WC_ANN_IDW_Bathybembix_bairdii_2003.tif
-WC_ANN_IDW_Bathybembix_bairdii_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathybembix bairdii\WC_ANN_IDW_Bathybembix_bairdii_2004.tif
-WC_ANN_IDW_Bathybembix_bairdii_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathybembix bairdii\WC_ANN_IDW_Bathybembix_bairdii_2005.tif
-WC_ANN_IDW_Bathybembix_bairdii_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathybembix bairdii\WC_ANN_IDW_Bathybembix_bairdii_2006.tif
-WC_ANN_IDW_Bathybembix_bairdii_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathybembix bairdii\WC_ANN_IDW_Bathybembix_bairdii_2007.tif
-WC_ANN_IDW_Bathybembix_bairdii_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathybembix bairdii\WC_ANN_IDW_Bathybembix_bairdii_2008.tif
-WC_ANN_IDW_Bathybembix_bairdii_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathybembix bairdii\WC_ANN_IDW_Bathybembix_bairdii_2009.tif
-WC_ANN_IDW_Bathybembix_bairdii_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathybembix bairdii\WC_ANN_IDW_Bathybembix_bairdii_2010.tif
-WC_ANN_IDW_Bathybembix_bairdii_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathybembix bairdii\WC_ANN_IDW_Bathybembix_bairdii_2011.tif
-WC_ANN_IDW_Bathybembix_bairdii_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathybembix bairdii\WC_ANN_IDW_Bathybembix_bairdii_2012.tif
-WC_ANN_IDW_Bathybembix_bairdii_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathybembix bairdii\WC_ANN_IDW_Bathybembix_bairdii_2013.tif
-WC_ANN_IDW_Bathybembix_bairdii_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathybembix bairdii\WC_ANN_IDW_Bathybembix_bairdii_2014.tif
-WC_ANN_IDW_Bathybembix_bairdii_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathybembix bairdii\WC_ANN_IDW_Bathybembix_bairdii_2015.tif
-WC_ANN_IDW_Bathybembix_bairdii_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathybembix bairdii\WC_ANN_IDW_Bathybembix_bairdii_2016.tif
-WC_ANN_IDW_Bathybembix_bairdii_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathybembix bairdii\WC_ANN_IDW_Bathybembix_bairdii_2017.tif
-WC_ANN_IDW_Bathybembix_bairdii_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathybembix bairdii\WC_ANN_IDW_Bathybembix_bairdii_2018.tif
-WC_ANN_IDW_Bathybembix_bairdii_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathybembix bairdii\WC_ANN_IDW_Bathybembix_bairdii_2019.tif
-WC_ANN_IDW_Bathybembix_bairdii_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathybembix bairdii\WC_ANN_IDW_Bathybembix_bairdii_2021.tif
-WC_ANN_IDW_Bathybembix_bairdii_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathybembix bairdii\WC_ANN_IDW_Bathybembix_bairdii_2022.tif
-WC_ANN_IDW_Bathyraja_spp_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathyraja spp\WC_ANN_IDW_Bathyraja_spp_2003.tif
-WC_ANN_IDW_Bathyraja_spp_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathyraja spp\WC_ANN_IDW_Bathyraja_spp_2004.tif
-WC_ANN_IDW_Bathyraja_spp_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathyraja spp\WC_ANN_IDW_Bathyraja_spp_2005.tif
-WC_ANN_IDW_Bathyraja_spp_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathyraja spp\WC_ANN_IDW_Bathyraja_spp_2006.tif
-WC_ANN_IDW_Bathyraja_spp_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathyraja spp\WC_ANN_IDW_Bathyraja_spp_2007.tif
-WC_ANN_IDW_Bathyraja_spp_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathyraja spp\WC_ANN_IDW_Bathyraja_spp_2008.tif
-WC_ANN_IDW_Bathyraja_spp_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathyraja spp\WC_ANN_IDW_Bathyraja_spp_2009.tif
-WC_ANN_IDW_Bathyraja_spp_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathyraja spp\WC_ANN_IDW_Bathyraja_spp_2010.tif
-WC_ANN_IDW_Bathyraja_spp_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathyraja spp\WC_ANN_IDW_Bathyraja_spp_2011.tif
-WC_ANN_IDW_Bathyraja_spp_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathyraja spp\WC_ANN_IDW_Bathyraja_spp_2012.tif
-WC_ANN_IDW_Bathyraja_spp_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathyraja spp\WC_ANN_IDW_Bathyraja_spp_2013.tif
-WC_ANN_IDW_Bathyraja_spp_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathyraja spp\WC_ANN_IDW_Bathyraja_spp_2014.tif
-WC_ANN_IDW_Bathyraja_spp_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathyraja spp\WC_ANN_IDW_Bathyraja_spp_2015.tif
-WC_ANN_IDW_Bathyraja_spp_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathyraja spp\WC_ANN_IDW_Bathyraja_spp_2016.tif
-WC_ANN_IDW_Bathyraja_spp_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathyraja spp\WC_ANN_IDW_Bathyraja_spp_2017.tif
-WC_ANN_IDW_Bathyraja_spp_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathyraja spp\WC_ANN_IDW_Bathyraja_spp_2018.tif
-WC_ANN_IDW_Bathyraja_spp_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathyraja spp\WC_ANN_IDW_Bathyraja_spp_2019.tif
-WC_ANN_IDW_Bathyraja_spp_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathyraja spp\WC_ANN_IDW_Bathyraja_spp_2021.tif
-WC_ANN_IDW_Bathyraja_spp_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bathyraja spp\WC_ANN_IDW_Bathyraja_spp_2022.tif
-WC_ANN_IDW_Beringraja_binoculata_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja binoculata\WC_ANN_IDW_Beringraja_binoculata_2003.tif
-WC_ANN_IDW_Beringraja_binoculata_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja binoculata\WC_ANN_IDW_Beringraja_binoculata_2004.tif
-WC_ANN_IDW_Beringraja_binoculata_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja binoculata\WC_ANN_IDW_Beringraja_binoculata_2005.tif
-WC_ANN_IDW_Beringraja_binoculata_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja binoculata\WC_ANN_IDW_Beringraja_binoculata_2006.tif
-WC_ANN_IDW_Beringraja_binoculata_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja binoculata\WC_ANN_IDW_Beringraja_binoculata_2007.tif
-WC_ANN_IDW_Beringraja_binoculata_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja binoculata\WC_ANN_IDW_Beringraja_binoculata_2008.tif
-WC_ANN_IDW_Beringraja_binoculata_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja binoculata\WC_ANN_IDW_Beringraja_binoculata_2009.tif
-WC_ANN_IDW_Beringraja_binoculata_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja binoculata\WC_ANN_IDW_Beringraja_binoculata_2010.tif
-WC_ANN_IDW_Beringraja_binoculata_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja binoculata\WC_ANN_IDW_Beringraja_binoculata_2011.tif
-WC_ANN_IDW_Beringraja_binoculata_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja binoculata\WC_ANN_IDW_Beringraja_binoculata_2012.tif
-WC_ANN_IDW_Beringraja_binoculata_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja binoculata\WC_ANN_IDW_Beringraja_binoculata_2013.tif
-WC_ANN_IDW_Beringraja_binoculata_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja binoculata\WC_ANN_IDW_Beringraja_binoculata_2014.tif
-WC_ANN_IDW_Beringraja_binoculata_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja binoculata\WC_ANN_IDW_Beringraja_binoculata_2015.tif
-WC_ANN_IDW_Beringraja_binoculata_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja binoculata\WC_ANN_IDW_Beringraja_binoculata_2016.tif
-WC_ANN_IDW_Beringraja_binoculata_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja binoculata\WC_ANN_IDW_Beringraja_binoculata_2017.tif
-WC_ANN_IDW_Beringraja_binoculata_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja binoculata\WC_ANN_IDW_Beringraja_binoculata_2018.tif
-WC_ANN_IDW_Beringraja_binoculata_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja binoculata\WC_ANN_IDW_Beringraja_binoculata_2019.tif
-WC_ANN_IDW_Beringraja_binoculata_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja binoculata\WC_ANN_IDW_Beringraja_binoculata_2021.tif
-WC_ANN_IDW_Beringraja_binoculata_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja binoculata\WC_ANN_IDW_Beringraja_binoculata_2022.tif
-WC_ANN_IDW_Beringraja_inornata_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja inornata\WC_ANN_IDW_Beringraja_inornata_2003.tif
-WC_ANN_IDW_Beringraja_inornata_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja inornata\WC_ANN_IDW_Beringraja_inornata_2004.tif
-WC_ANN_IDW_Beringraja_inornata_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja inornata\WC_ANN_IDW_Beringraja_inornata_2005.tif
-WC_ANN_IDW_Beringraja_inornata_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja inornata\WC_ANN_IDW_Beringraja_inornata_2006.tif
-WC_ANN_IDW_Beringraja_inornata_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja inornata\WC_ANN_IDW_Beringraja_inornata_2007.tif
-WC_ANN_IDW_Beringraja_inornata_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja inornata\WC_ANN_IDW_Beringraja_inornata_2008.tif
-WC_ANN_IDW_Beringraja_inornata_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja inornata\WC_ANN_IDW_Beringraja_inornata_2009.tif
-WC_ANN_IDW_Beringraja_inornata_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja inornata\WC_ANN_IDW_Beringraja_inornata_2010.tif
-WC_ANN_IDW_Beringraja_inornata_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja inornata\WC_ANN_IDW_Beringraja_inornata_2011.tif
-WC_ANN_IDW_Beringraja_inornata_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja inornata\WC_ANN_IDW_Beringraja_inornata_2012.tif
-WC_ANN_IDW_Beringraja_inornata_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja inornata\WC_ANN_IDW_Beringraja_inornata_2013.tif
-WC_ANN_IDW_Beringraja_inornata_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja inornata\WC_ANN_IDW_Beringraja_inornata_2014.tif
-WC_ANN_IDW_Beringraja_inornata_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja inornata\WC_ANN_IDW_Beringraja_inornata_2015.tif
-WC_ANN_IDW_Beringraja_inornata_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja inornata\WC_ANN_IDW_Beringraja_inornata_2016.tif
-WC_ANN_IDW_Beringraja_inornata_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja inornata\WC_ANN_IDW_Beringraja_inornata_2017.tif
-WC_ANN_IDW_Beringraja_inornata_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja inornata\WC_ANN_IDW_Beringraja_inornata_2018.tif
-WC_ANN_IDW_Beringraja_inornata_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja inornata\WC_ANN_IDW_Beringraja_inornata_2019.tif
-WC_ANN_IDW_Beringraja_inornata_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja inornata\WC_ANN_IDW_Beringraja_inornata_2021.tif
-WC_ANN_IDW_Beringraja_inornata_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja inornata\WC_ANN_IDW_Beringraja_inornata_2022.tif
-WC_ANN_IDW_Beringraja_rhina_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja rhina\WC_ANN_IDW_Beringraja_rhina_2003.tif
-WC_ANN_IDW_Beringraja_rhina_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja rhina\WC_ANN_IDW_Beringraja_rhina_2004.tif
-WC_ANN_IDW_Beringraja_rhina_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja rhina\WC_ANN_IDW_Beringraja_rhina_2005.tif
-WC_ANN_IDW_Beringraja_rhina_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja rhina\WC_ANN_IDW_Beringraja_rhina_2006.tif
-WC_ANN_IDW_Beringraja_rhina_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja rhina\WC_ANN_IDW_Beringraja_rhina_2007.tif
-WC_ANN_IDW_Beringraja_rhina_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja rhina\WC_ANN_IDW_Beringraja_rhina_2008.tif
-WC_ANN_IDW_Beringraja_rhina_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja rhina\WC_ANN_IDW_Beringraja_rhina_2009.tif
-WC_ANN_IDW_Beringraja_rhina_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja rhina\WC_ANN_IDW_Beringraja_rhina_2010.tif
-WC_ANN_IDW_Beringraja_rhina_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja rhina\WC_ANN_IDW_Beringraja_rhina_2011.tif
-WC_ANN_IDW_Beringraja_rhina_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja rhina\WC_ANN_IDW_Beringraja_rhina_2012.tif
-WC_ANN_IDW_Beringraja_rhina_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja rhina\WC_ANN_IDW_Beringraja_rhina_2013.tif
-WC_ANN_IDW_Beringraja_rhina_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja rhina\WC_ANN_IDW_Beringraja_rhina_2014.tif
-WC_ANN_IDW_Beringraja_rhina_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja rhina\WC_ANN_IDW_Beringraja_rhina_2015.tif
-WC_ANN_IDW_Beringraja_rhina_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja rhina\WC_ANN_IDW_Beringraja_rhina_2016.tif
-WC_ANN_IDW_Beringraja_rhina_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja rhina\WC_ANN_IDW_Beringraja_rhina_2017.tif
-WC_ANN_IDW_Beringraja_rhina_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja rhina\WC_ANN_IDW_Beringraja_rhina_2018.tif
-WC_ANN_IDW_Beringraja_rhina_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja rhina\WC_ANN_IDW_Beringraja_rhina_2019.tif
-WC_ANN_IDW_Beringraja_rhina_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja rhina\WC_ANN_IDW_Beringraja_rhina_2021.tif
-WC_ANN_IDW_Beringraja_rhina_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Beringraja rhina\WC_ANN_IDW_Beringraja_rhina_2022.tif
-WC_ANN_IDW_Bothrocara_brunneum_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bothrocara brunneum\WC_ANN_IDW_Bothrocara_brunneum_2003.tif
-WC_ANN_IDW_Bothrocara_brunneum_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bothrocara brunneum\WC_ANN_IDW_Bothrocara_brunneum_2004.tif
-WC_ANN_IDW_Bothrocara_brunneum_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bothrocara brunneum\WC_ANN_IDW_Bothrocara_brunneum_2005.tif
-WC_ANN_IDW_Bothrocara_brunneum_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bothrocara brunneum\WC_ANN_IDW_Bothrocara_brunneum_2006.tif
-WC_ANN_IDW_Bothrocara_brunneum_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bothrocara brunneum\WC_ANN_IDW_Bothrocara_brunneum_2007.tif
-WC_ANN_IDW_Bothrocara_brunneum_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bothrocara brunneum\WC_ANN_IDW_Bothrocara_brunneum_2008.tif
-WC_ANN_IDW_Bothrocara_brunneum_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bothrocara brunneum\WC_ANN_IDW_Bothrocara_brunneum_2009.tif
-WC_ANN_IDW_Bothrocara_brunneum_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bothrocara brunneum\WC_ANN_IDW_Bothrocara_brunneum_2010.tif
-WC_ANN_IDW_Bothrocara_brunneum_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bothrocara brunneum\WC_ANN_IDW_Bothrocara_brunneum_2011.tif
-WC_ANN_IDW_Bothrocara_brunneum_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bothrocara brunneum\WC_ANN_IDW_Bothrocara_brunneum_2012.tif
-WC_ANN_IDW_Bothrocara_brunneum_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bothrocara brunneum\WC_ANN_IDW_Bothrocara_brunneum_2013.tif
-WC_ANN_IDW_Bothrocara_brunneum_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bothrocara brunneum\WC_ANN_IDW_Bothrocara_brunneum_2014.tif
-WC_ANN_IDW_Bothrocara_brunneum_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bothrocara brunneum\WC_ANN_IDW_Bothrocara_brunneum_2015.tif
-WC_ANN_IDW_Bothrocara_brunneum_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bothrocara brunneum\WC_ANN_IDW_Bothrocara_brunneum_2016.tif
-WC_ANN_IDW_Bothrocara_brunneum_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bothrocara brunneum\WC_ANN_IDW_Bothrocara_brunneum_2017.tif
-WC_ANN_IDW_Bothrocara_brunneum_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bothrocara brunneum\WC_ANN_IDW_Bothrocara_brunneum_2018.tif
-WC_ANN_IDW_Bothrocara_brunneum_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bothrocara brunneum\WC_ANN_IDW_Bothrocara_brunneum_2019.tif
-WC_ANN_IDW_Bothrocara_brunneum_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bothrocara brunneum\WC_ANN_IDW_Bothrocara_brunneum_2021.tif
-WC_ANN_IDW_Bothrocara_brunneum_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Bothrocara brunneum\WC_ANN_IDW_Bothrocara_brunneum_2022.tif
-WC_ANN_IDW_Brisaster_latifrons_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Brisaster latifrons\WC_ANN_IDW_Brisaster_latifrons_2003.tif
-WC_ANN_IDW_Brisaster_latifrons_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Brisaster latifrons\WC_ANN_IDW_Brisaster_latifrons_2004.tif
-WC_ANN_IDW_Brisaster_latifrons_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Brisaster latifrons\WC_ANN_IDW_Brisaster_latifrons_2005.tif
-WC_ANN_IDW_Brisaster_latifrons_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Brisaster latifrons\WC_ANN_IDW_Brisaster_latifrons_2006.tif
-WC_ANN_IDW_Brisaster_latifrons_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Brisaster latifrons\WC_ANN_IDW_Brisaster_latifrons_2007.tif
-WC_ANN_IDW_Brisaster_latifrons_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Brisaster latifrons\WC_ANN_IDW_Brisaster_latifrons_2008.tif
-WC_ANN_IDW_Brisaster_latifrons_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Brisaster latifrons\WC_ANN_IDW_Brisaster_latifrons_2009.tif
-WC_ANN_IDW_Brisaster_latifrons_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Brisaster latifrons\WC_ANN_IDW_Brisaster_latifrons_2010.tif
-WC_ANN_IDW_Brisaster_latifrons_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Brisaster latifrons\WC_ANN_IDW_Brisaster_latifrons_2011.tif
-WC_ANN_IDW_Brisaster_latifrons_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Brisaster latifrons\WC_ANN_IDW_Brisaster_latifrons_2012.tif
-WC_ANN_IDW_Brisaster_latifrons_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Brisaster latifrons\WC_ANN_IDW_Brisaster_latifrons_2013.tif
-WC_ANN_IDW_Brisaster_latifrons_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Brisaster latifrons\WC_ANN_IDW_Brisaster_latifrons_2014.tif
-WC_ANN_IDW_Brisaster_latifrons_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Brisaster latifrons\WC_ANN_IDW_Brisaster_latifrons_2015.tif
-WC_ANN_IDW_Brisaster_latifrons_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Brisaster latifrons\WC_ANN_IDW_Brisaster_latifrons_2016.tif
-WC_ANN_IDW_Brisaster_latifrons_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Brisaster latifrons\WC_ANN_IDW_Brisaster_latifrons_2017.tif
-WC_ANN_IDW_Brisaster_latifrons_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Brisaster latifrons\WC_ANN_IDW_Brisaster_latifrons_2018.tif
-WC_ANN_IDW_Brisaster_latifrons_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Brisaster latifrons\WC_ANN_IDW_Brisaster_latifrons_2019.tif
-WC_ANN_IDW_Brisaster_latifrons_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Brisaster latifrons\WC_ANN_IDW_Brisaster_latifrons_2021.tif
-WC_ANN_IDW_Brisaster_latifrons_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Brisaster latifrons\WC_ANN_IDW_Brisaster_latifrons_2022.tif
-WC_ANN_IDW_Careproctus_melanurus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Careproctus melanurus\WC_ANN_IDW_Careproctus_melanurus_2003.tif
-WC_ANN_IDW_Careproctus_melanurus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Careproctus melanurus\WC_ANN_IDW_Careproctus_melanurus_2004.tif
-WC_ANN_IDW_Careproctus_melanurus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Careproctus melanurus\WC_ANN_IDW_Careproctus_melanurus_2005.tif
-WC_ANN_IDW_Careproctus_melanurus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Careproctus melanurus\WC_ANN_IDW_Careproctus_melanurus_2006.tif
-WC_ANN_IDW_Careproctus_melanurus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Careproctus melanurus\WC_ANN_IDW_Careproctus_melanurus_2007.tif
-WC_ANN_IDW_Careproctus_melanurus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Careproctus melanurus\WC_ANN_IDW_Careproctus_melanurus_2008.tif
-WC_ANN_IDW_Careproctus_melanurus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Careproctus melanurus\WC_ANN_IDW_Careproctus_melanurus_2009.tif
-WC_ANN_IDW_Careproctus_melanurus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Careproctus melanurus\WC_ANN_IDW_Careproctus_melanurus_2010.tif
-WC_ANN_IDW_Careproctus_melanurus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Careproctus melanurus\WC_ANN_IDW_Careproctus_melanurus_2011.tif
-WC_ANN_IDW_Careproctus_melanurus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Careproctus melanurus\WC_ANN_IDW_Careproctus_melanurus_2012.tif
-WC_ANN_IDW_Careproctus_melanurus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Careproctus melanurus\WC_ANN_IDW_Careproctus_melanurus_2013.tif
-WC_ANN_IDW_Careproctus_melanurus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Careproctus melanurus\WC_ANN_IDW_Careproctus_melanurus_2014.tif
-WC_ANN_IDW_Careproctus_melanurus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Careproctus melanurus\WC_ANN_IDW_Careproctus_melanurus_2015.tif
-WC_ANN_IDW_Careproctus_melanurus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Careproctus melanurus\WC_ANN_IDW_Careproctus_melanurus_2016.tif
-WC_ANN_IDW_Careproctus_melanurus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Careproctus melanurus\WC_ANN_IDW_Careproctus_melanurus_2017.tif
-WC_ANN_IDW_Careproctus_melanurus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Careproctus melanurus\WC_ANN_IDW_Careproctus_melanurus_2018.tif
-WC_ANN_IDW_Careproctus_melanurus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Careproctus melanurus\WC_ANN_IDW_Careproctus_melanurus_2019.tif
-WC_ANN_IDW_Careproctus_melanurus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Careproctus melanurus\WC_ANN_IDW_Careproctus_melanurus_2021.tif
-WC_ANN_IDW_Careproctus_melanurus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Careproctus melanurus\WC_ANN_IDW_Careproctus_melanurus_2022.tif
-WC_ANN_IDW_Chauliodus_macouni_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chauliodus macouni\WC_ANN_IDW_Chauliodus_macouni_2003.tif
-WC_ANN_IDW_Chauliodus_macouni_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chauliodus macouni\WC_ANN_IDW_Chauliodus_macouni_2004.tif
-WC_ANN_IDW_Chauliodus_macouni_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chauliodus macouni\WC_ANN_IDW_Chauliodus_macouni_2005.tif
-WC_ANN_IDW_Chauliodus_macouni_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chauliodus macouni\WC_ANN_IDW_Chauliodus_macouni_2006.tif
-WC_ANN_IDW_Chauliodus_macouni_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chauliodus macouni\WC_ANN_IDW_Chauliodus_macouni_2007.tif
-WC_ANN_IDW_Chauliodus_macouni_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chauliodus macouni\WC_ANN_IDW_Chauliodus_macouni_2008.tif
-WC_ANN_IDW_Chauliodus_macouni_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chauliodus macouni\WC_ANN_IDW_Chauliodus_macouni_2009.tif
-WC_ANN_IDW_Chauliodus_macouni_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chauliodus macouni\WC_ANN_IDW_Chauliodus_macouni_2010.tif
-WC_ANN_IDW_Chauliodus_macouni_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chauliodus macouni\WC_ANN_IDW_Chauliodus_macouni_2011.tif
-WC_ANN_IDW_Chauliodus_macouni_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chauliodus macouni\WC_ANN_IDW_Chauliodus_macouni_2012.tif
-WC_ANN_IDW_Chauliodus_macouni_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chauliodus macouni\WC_ANN_IDW_Chauliodus_macouni_2013.tif
-WC_ANN_IDW_Chauliodus_macouni_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chauliodus macouni\WC_ANN_IDW_Chauliodus_macouni_2014.tif
-WC_ANN_IDW_Chauliodus_macouni_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chauliodus macouni\WC_ANN_IDW_Chauliodus_macouni_2015.tif
-WC_ANN_IDW_Chauliodus_macouni_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chauliodus macouni\WC_ANN_IDW_Chauliodus_macouni_2016.tif
-WC_ANN_IDW_Chauliodus_macouni_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chauliodus macouni\WC_ANN_IDW_Chauliodus_macouni_2017.tif
-WC_ANN_IDW_Chauliodus_macouni_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chauliodus macouni\WC_ANN_IDW_Chauliodus_macouni_2018.tif
-WC_ANN_IDW_Chauliodus_macouni_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chauliodus macouni\WC_ANN_IDW_Chauliodus_macouni_2019.tif
-WC_ANN_IDW_Chauliodus_macouni_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chauliodus macouni\WC_ANN_IDW_Chauliodus_macouni_2021.tif
-WC_ANN_IDW_Chauliodus_macouni_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chauliodus macouni\WC_ANN_IDW_Chauliodus_macouni_2022.tif
-WC_ANN_IDW_Chionoecetes_tanneri_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chionoecetes tanneri\WC_ANN_IDW_Chionoecetes_tanneri_2003.tif
-WC_ANN_IDW_Chionoecetes_tanneri_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chionoecetes tanneri\WC_ANN_IDW_Chionoecetes_tanneri_2004.tif
-WC_ANN_IDW_Chionoecetes_tanneri_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chionoecetes tanneri\WC_ANN_IDW_Chionoecetes_tanneri_2005.tif
-WC_ANN_IDW_Chionoecetes_tanneri_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chionoecetes tanneri\WC_ANN_IDW_Chionoecetes_tanneri_2006.tif
-WC_ANN_IDW_Chionoecetes_tanneri_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chionoecetes tanneri\WC_ANN_IDW_Chionoecetes_tanneri_2007.tif
-WC_ANN_IDW_Chionoecetes_tanneri_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chionoecetes tanneri\WC_ANN_IDW_Chionoecetes_tanneri_2008.tif
-WC_ANN_IDW_Chionoecetes_tanneri_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chionoecetes tanneri\WC_ANN_IDW_Chionoecetes_tanneri_2009.tif
-WC_ANN_IDW_Chionoecetes_tanneri_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chionoecetes tanneri\WC_ANN_IDW_Chionoecetes_tanneri_2010.tif
-WC_ANN_IDW_Chionoecetes_tanneri_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chionoecetes tanneri\WC_ANN_IDW_Chionoecetes_tanneri_2011.tif
-WC_ANN_IDW_Chionoecetes_tanneri_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chionoecetes tanneri\WC_ANN_IDW_Chionoecetes_tanneri_2012.tif
-WC_ANN_IDW_Chionoecetes_tanneri_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chionoecetes tanneri\WC_ANN_IDW_Chionoecetes_tanneri_2013.tif
-WC_ANN_IDW_Chionoecetes_tanneri_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chionoecetes tanneri\WC_ANN_IDW_Chionoecetes_tanneri_2014.tif
-WC_ANN_IDW_Chionoecetes_tanneri_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chionoecetes tanneri\WC_ANN_IDW_Chionoecetes_tanneri_2015.tif
-WC_ANN_IDW_Chionoecetes_tanneri_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chionoecetes tanneri\WC_ANN_IDW_Chionoecetes_tanneri_2016.tif
-WC_ANN_IDW_Chionoecetes_tanneri_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chionoecetes tanneri\WC_ANN_IDW_Chionoecetes_tanneri_2017.tif
-WC_ANN_IDW_Chionoecetes_tanneri_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chionoecetes tanneri\WC_ANN_IDW_Chionoecetes_tanneri_2018.tif
-WC_ANN_IDW_Chionoecetes_tanneri_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chionoecetes tanneri\WC_ANN_IDW_Chionoecetes_tanneri_2019.tif
-WC_ANN_IDW_Chionoecetes_tanneri_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chionoecetes tanneri\WC_ANN_IDW_Chionoecetes_tanneri_2021.tif
-WC_ANN_IDW_Chionoecetes_tanneri_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chionoecetes tanneri\WC_ANN_IDW_Chionoecetes_tanneri_2022.tif
-WC_ANN_IDW_Chorilia_longipes_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chorilia longipes\WC_ANN_IDW_Chorilia_longipes_2003.tif
-WC_ANN_IDW_Chorilia_longipes_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chorilia longipes\WC_ANN_IDW_Chorilia_longipes_2004.tif
-WC_ANN_IDW_Chorilia_longipes_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chorilia longipes\WC_ANN_IDW_Chorilia_longipes_2005.tif
-WC_ANN_IDW_Chorilia_longipes_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chorilia longipes\WC_ANN_IDW_Chorilia_longipes_2006.tif
-WC_ANN_IDW_Chorilia_longipes_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chorilia longipes\WC_ANN_IDW_Chorilia_longipes_2007.tif
-WC_ANN_IDW_Chorilia_longipes_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chorilia longipes\WC_ANN_IDW_Chorilia_longipes_2008.tif
-WC_ANN_IDW_Chorilia_longipes_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chorilia longipes\WC_ANN_IDW_Chorilia_longipes_2009.tif
-WC_ANN_IDW_Chorilia_longipes_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chorilia longipes\WC_ANN_IDW_Chorilia_longipes_2010.tif
-WC_ANN_IDW_Chorilia_longipes_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chorilia longipes\WC_ANN_IDW_Chorilia_longipes_2011.tif
-WC_ANN_IDW_Chorilia_longipes_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chorilia longipes\WC_ANN_IDW_Chorilia_longipes_2012.tif
-WC_ANN_IDW_Chorilia_longipes_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chorilia longipes\WC_ANN_IDW_Chorilia_longipes_2013.tif
-WC_ANN_IDW_Chorilia_longipes_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chorilia longipes\WC_ANN_IDW_Chorilia_longipes_2014.tif
-WC_ANN_IDW_Chorilia_longipes_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chorilia longipes\WC_ANN_IDW_Chorilia_longipes_2015.tif
-WC_ANN_IDW_Chorilia_longipes_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chorilia longipes\WC_ANN_IDW_Chorilia_longipes_2016.tif
-WC_ANN_IDW_Chorilia_longipes_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chorilia longipes\WC_ANN_IDW_Chorilia_longipes_2017.tif
-WC_ANN_IDW_Chorilia_longipes_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chorilia longipes\WC_ANN_IDW_Chorilia_longipes_2018.tif
-WC_ANN_IDW_Chorilia_longipes_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chorilia longipes\WC_ANN_IDW_Chorilia_longipes_2019.tif
-WC_ANN_IDW_Chorilia_longipes_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chorilia longipes\WC_ANN_IDW_Chorilia_longipes_2021.tif
-WC_ANN_IDW_Chorilia_longipes_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Chorilia longipes\WC_ANN_IDW_Chorilia_longipes_2022.tif
-WC_ANN_IDW_Citharichthys_sordidus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Citharichthys sordidus\WC_ANN_IDW_Citharichthys_sordidus_2003.tif
-WC_ANN_IDW_Citharichthys_sordidus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Citharichthys sordidus\WC_ANN_IDW_Citharichthys_sordidus_2004.tif
-WC_ANN_IDW_Citharichthys_sordidus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Citharichthys sordidus\WC_ANN_IDW_Citharichthys_sordidus_2005.tif
-WC_ANN_IDW_Citharichthys_sordidus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Citharichthys sordidus\WC_ANN_IDW_Citharichthys_sordidus_2006.tif
-WC_ANN_IDW_Citharichthys_sordidus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Citharichthys sordidus\WC_ANN_IDW_Citharichthys_sordidus_2007.tif
-WC_ANN_IDW_Citharichthys_sordidus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Citharichthys sordidus\WC_ANN_IDW_Citharichthys_sordidus_2008.tif
-WC_ANN_IDW_Citharichthys_sordidus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Citharichthys sordidus\WC_ANN_IDW_Citharichthys_sordidus_2009.tif
-WC_ANN_IDW_Citharichthys_sordidus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Citharichthys sordidus\WC_ANN_IDW_Citharichthys_sordidus_2010.tif
-WC_ANN_IDW_Citharichthys_sordidus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Citharichthys sordidus\WC_ANN_IDW_Citharichthys_sordidus_2011.tif
-WC_ANN_IDW_Citharichthys_sordidus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Citharichthys sordidus\WC_ANN_IDW_Citharichthys_sordidus_2012.tif
-WC_ANN_IDW_Citharichthys_sordidus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Citharichthys sordidus\WC_ANN_IDW_Citharichthys_sordidus_2013.tif
-WC_ANN_IDW_Citharichthys_sordidus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Citharichthys sordidus\WC_ANN_IDW_Citharichthys_sordidus_2014.tif
-WC_ANN_IDW_Citharichthys_sordidus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Citharichthys sordidus\WC_ANN_IDW_Citharichthys_sordidus_2015.tif
-WC_ANN_IDW_Citharichthys_sordidus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Citharichthys sordidus\WC_ANN_IDW_Citharichthys_sordidus_2016.tif
-WC_ANN_IDW_Citharichthys_sordidus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Citharichthys sordidus\WC_ANN_IDW_Citharichthys_sordidus_2017.tif
-WC_ANN_IDW_Citharichthys_sordidus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Citharichthys sordidus\WC_ANN_IDW_Citharichthys_sordidus_2018.tif
-WC_ANN_IDW_Citharichthys_sordidus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Citharichthys sordidus\WC_ANN_IDW_Citharichthys_sordidus_2019.tif
-WC_ANN_IDW_Citharichthys_sordidus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Citharichthys sordidus\WC_ANN_IDW_Citharichthys_sordidus_2021.tif
-WC_ANN_IDW_Citharichthys_sordidus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Citharichthys sordidus\WC_ANN_IDW_Citharichthys_sordidus_2022.tif
-WC_ANN_IDW_Clupea_pallasii_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Clupea pallasii\WC_ANN_IDW_Clupea_pallasii_2003.tif
-WC_ANN_IDW_Clupea_pallasii_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Clupea pallasii\WC_ANN_IDW_Clupea_pallasii_2004.tif
-WC_ANN_IDW_Clupea_pallasii_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Clupea pallasii\WC_ANN_IDW_Clupea_pallasii_2005.tif
-WC_ANN_IDW_Clupea_pallasii_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Clupea pallasii\WC_ANN_IDW_Clupea_pallasii_2006.tif
-WC_ANN_IDW_Clupea_pallasii_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Clupea pallasii\WC_ANN_IDW_Clupea_pallasii_2007.tif
-WC_ANN_IDW_Clupea_pallasii_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Clupea pallasii\WC_ANN_IDW_Clupea_pallasii_2008.tif
-WC_ANN_IDW_Clupea_pallasii_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Clupea pallasii\WC_ANN_IDW_Clupea_pallasii_2009.tif
-WC_ANN_IDW_Clupea_pallasii_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Clupea pallasii\WC_ANN_IDW_Clupea_pallasii_2010.tif
-WC_ANN_IDW_Clupea_pallasii_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Clupea pallasii\WC_ANN_IDW_Clupea_pallasii_2011.tif
-WC_ANN_IDW_Clupea_pallasii_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Clupea pallasii\WC_ANN_IDW_Clupea_pallasii_2012.tif
-WC_ANN_IDW_Clupea_pallasii_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Clupea pallasii\WC_ANN_IDW_Clupea_pallasii_2013.tif
-WC_ANN_IDW_Clupea_pallasii_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Clupea pallasii\WC_ANN_IDW_Clupea_pallasii_2014.tif
-WC_ANN_IDW_Clupea_pallasii_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Clupea pallasii\WC_ANN_IDW_Clupea_pallasii_2015.tif
-WC_ANN_IDW_Clupea_pallasii_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Clupea pallasii\WC_ANN_IDW_Clupea_pallasii_2016.tif
-WC_ANN_IDW_Clupea_pallasii_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Clupea pallasii\WC_ANN_IDW_Clupea_pallasii_2017.tif
-WC_ANN_IDW_Clupea_pallasii_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Clupea pallasii\WC_ANN_IDW_Clupea_pallasii_2018.tif
-WC_ANN_IDW_Clupea_pallasii_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Clupea pallasii\WC_ANN_IDW_Clupea_pallasii_2019.tif
-WC_ANN_IDW_Clupea_pallasii_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Clupea pallasii\WC_ANN_IDW_Clupea_pallasii_2021.tif
-WC_ANN_IDW_Clupea_pallasii_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Clupea pallasii\WC_ANN_IDW_Clupea_pallasii_2022.tif
-WC_ANN_IDW_Coryphaenoides_acrolepis_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Coryphaenoides acrolepis\WC_ANN_IDW_Coryphaenoides_acrolepis_2003.tif
-WC_ANN_IDW_Coryphaenoides_acrolepis_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Coryphaenoides acrolepis\WC_ANN_IDW_Coryphaenoides_acrolepis_2004.tif
-WC_ANN_IDW_Coryphaenoides_acrolepis_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Coryphaenoides acrolepis\WC_ANN_IDW_Coryphaenoides_acrolepis_2005.tif
-WC_ANN_IDW_Coryphaenoides_acrolepis_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Coryphaenoides acrolepis\WC_ANN_IDW_Coryphaenoides_acrolepis_2006.tif
-WC_ANN_IDW_Coryphaenoides_acrolepis_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Coryphaenoides acrolepis\WC_ANN_IDW_Coryphaenoides_acrolepis_2007.tif
-WC_ANN_IDW_Coryphaenoides_acrolepis_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Coryphaenoides acrolepis\WC_ANN_IDW_Coryphaenoides_acrolepis_2008.tif
-WC_ANN_IDW_Coryphaenoides_acrolepis_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Coryphaenoides acrolepis\WC_ANN_IDW_Coryphaenoides_acrolepis_2009.tif
-WC_ANN_IDW_Coryphaenoides_acrolepis_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Coryphaenoides acrolepis\WC_ANN_IDW_Coryphaenoides_acrolepis_2010.tif
-WC_ANN_IDW_Coryphaenoides_acrolepis_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Coryphaenoides acrolepis\WC_ANN_IDW_Coryphaenoides_acrolepis_2011.tif
-WC_ANN_IDW_Coryphaenoides_acrolepis_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Coryphaenoides acrolepis\WC_ANN_IDW_Coryphaenoides_acrolepis_2012.tif
-WC_ANN_IDW_Coryphaenoides_acrolepis_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Coryphaenoides acrolepis\WC_ANN_IDW_Coryphaenoides_acrolepis_2013.tif
-WC_ANN_IDW_Coryphaenoides_acrolepis_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Coryphaenoides acrolepis\WC_ANN_IDW_Coryphaenoides_acrolepis_2014.tif
-WC_ANN_IDW_Coryphaenoides_acrolepis_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Coryphaenoides acrolepis\WC_ANN_IDW_Coryphaenoides_acrolepis_2015.tif
-WC_ANN_IDW_Coryphaenoides_acrolepis_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Coryphaenoides acrolepis\WC_ANN_IDW_Coryphaenoides_acrolepis_2016.tif
-WC_ANN_IDW_Coryphaenoides_acrolepis_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Coryphaenoides acrolepis\WC_ANN_IDW_Coryphaenoides_acrolepis_2017.tif
-WC_ANN_IDW_Coryphaenoides_acrolepis_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Coryphaenoides acrolepis\WC_ANN_IDW_Coryphaenoides_acrolepis_2018.tif
-WC_ANN_IDW_Coryphaenoides_acrolepis_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Coryphaenoides acrolepis\WC_ANN_IDW_Coryphaenoides_acrolepis_2019.tif
-WC_ANN_IDW_Coryphaenoides_acrolepis_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Coryphaenoides acrolepis\WC_ANN_IDW_Coryphaenoides_acrolepis_2021.tif
-WC_ANN_IDW_Coryphaenoides_acrolepis_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Coryphaenoides acrolepis\WC_ANN_IDW_Coryphaenoides_acrolepis_2022.tif
-WC_ANN_IDW_Crossaster_borealis_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Crossaster borealis\WC_ANN_IDW_Crossaster_borealis_2003.tif
-WC_ANN_IDW_Crossaster_borealis_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Crossaster borealis\WC_ANN_IDW_Crossaster_borealis_2004.tif
-WC_ANN_IDW_Crossaster_borealis_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Crossaster borealis\WC_ANN_IDW_Crossaster_borealis_2005.tif
-WC_ANN_IDW_Crossaster_borealis_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Crossaster borealis\WC_ANN_IDW_Crossaster_borealis_2006.tif
-WC_ANN_IDW_Crossaster_borealis_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Crossaster borealis\WC_ANN_IDW_Crossaster_borealis_2007.tif
-WC_ANN_IDW_Crossaster_borealis_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Crossaster borealis\WC_ANN_IDW_Crossaster_borealis_2008.tif
-WC_ANN_IDW_Crossaster_borealis_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Crossaster borealis\WC_ANN_IDW_Crossaster_borealis_2009.tif
-WC_ANN_IDW_Crossaster_borealis_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Crossaster borealis\WC_ANN_IDW_Crossaster_borealis_2010.tif
-WC_ANN_IDW_Crossaster_borealis_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Crossaster borealis\WC_ANN_IDW_Crossaster_borealis_2011.tif
-WC_ANN_IDW_Crossaster_borealis_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Crossaster borealis\WC_ANN_IDW_Crossaster_borealis_2012.tif
-WC_ANN_IDW_Crossaster_borealis_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Crossaster borealis\WC_ANN_IDW_Crossaster_borealis_2013.tif
-WC_ANN_IDW_Crossaster_borealis_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Crossaster borealis\WC_ANN_IDW_Crossaster_borealis_2014.tif
-WC_ANN_IDW_Crossaster_borealis_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Crossaster borealis\WC_ANN_IDW_Crossaster_borealis_2015.tif
-WC_ANN_IDW_Crossaster_borealis_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Crossaster borealis\WC_ANN_IDW_Crossaster_borealis_2016.tif
-WC_ANN_IDW_Crossaster_borealis_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Crossaster borealis\WC_ANN_IDW_Crossaster_borealis_2017.tif
-WC_ANN_IDW_Crossaster_borealis_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Crossaster borealis\WC_ANN_IDW_Crossaster_borealis_2018.tif
-WC_ANN_IDW_Crossaster_borealis_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Crossaster borealis\WC_ANN_IDW_Crossaster_borealis_2019.tif
-WC_ANN_IDW_Crossaster_borealis_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Crossaster borealis\WC_ANN_IDW_Crossaster_borealis_2021.tif
-WC_ANN_IDW_Crossaster_borealis_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Crossaster borealis\WC_ANN_IDW_Crossaster_borealis_2022.tif
-WC_ANN_IDW_Doryteuthis_opalescens_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Doryteuthis opalescens\WC_ANN_IDW_Doryteuthis_opalescens_2003.tif
-WC_ANN_IDW_Doryteuthis_opalescens_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Doryteuthis opalescens\WC_ANN_IDW_Doryteuthis_opalescens_2004.tif
-WC_ANN_IDW_Doryteuthis_opalescens_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Doryteuthis opalescens\WC_ANN_IDW_Doryteuthis_opalescens_2005.tif
-WC_ANN_IDW_Doryteuthis_opalescens_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Doryteuthis opalescens\WC_ANN_IDW_Doryteuthis_opalescens_2006.tif
-WC_ANN_IDW_Doryteuthis_opalescens_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Doryteuthis opalescens\WC_ANN_IDW_Doryteuthis_opalescens_2007.tif
-WC_ANN_IDW_Doryteuthis_opalescens_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Doryteuthis opalescens\WC_ANN_IDW_Doryteuthis_opalescens_2008.tif
-WC_ANN_IDW_Doryteuthis_opalescens_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Doryteuthis opalescens\WC_ANN_IDW_Doryteuthis_opalescens_2009.tif
-WC_ANN_IDW_Doryteuthis_opalescens_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Doryteuthis opalescens\WC_ANN_IDW_Doryteuthis_opalescens_2010.tif
-WC_ANN_IDW_Doryteuthis_opalescens_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Doryteuthis opalescens\WC_ANN_IDW_Doryteuthis_opalescens_2011.tif
-WC_ANN_IDW_Doryteuthis_opalescens_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Doryteuthis opalescens\WC_ANN_IDW_Doryteuthis_opalescens_2012.tif
-WC_ANN_IDW_Doryteuthis_opalescens_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Doryteuthis opalescens\WC_ANN_IDW_Doryteuthis_opalescens_2013.tif
-WC_ANN_IDW_Doryteuthis_opalescens_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Doryteuthis opalescens\WC_ANN_IDW_Doryteuthis_opalescens_2014.tif
-WC_ANN_IDW_Doryteuthis_opalescens_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Doryteuthis opalescens\WC_ANN_IDW_Doryteuthis_opalescens_2015.tif
-WC_ANN_IDW_Doryteuthis_opalescens_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Doryteuthis opalescens\WC_ANN_IDW_Doryteuthis_opalescens_2016.tif
-WC_ANN_IDW_Doryteuthis_opalescens_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Doryteuthis opalescens\WC_ANN_IDW_Doryteuthis_opalescens_2017.tif
-WC_ANN_IDW_Doryteuthis_opalescens_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Doryteuthis opalescens\WC_ANN_IDW_Doryteuthis_opalescens_2018.tif
-WC_ANN_IDW_Doryteuthis_opalescens_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Doryteuthis opalescens\WC_ANN_IDW_Doryteuthis_opalescens_2019.tif
-WC_ANN_IDW_Doryteuthis_opalescens_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Doryteuthis opalescens\WC_ANN_IDW_Doryteuthis_opalescens_2021.tif
-WC_ANN_IDW_Doryteuthis_opalescens_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Doryteuthis opalescens\WC_ANN_IDW_Doryteuthis_opalescens_2022.tif
-WC_ANN_IDW_Echidnocerus_foraminatus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Echidnocerus foraminatus\WC_ANN_IDW_Echidnocerus_foraminatus_2003.tif
-WC_ANN_IDW_Echidnocerus_foraminatus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Echidnocerus foraminatus\WC_ANN_IDW_Echidnocerus_foraminatus_2004.tif
-WC_ANN_IDW_Echidnocerus_foraminatus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Echidnocerus foraminatus\WC_ANN_IDW_Echidnocerus_foraminatus_2005.tif
-WC_ANN_IDW_Echidnocerus_foraminatus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Echidnocerus foraminatus\WC_ANN_IDW_Echidnocerus_foraminatus_2006.tif
-WC_ANN_IDW_Echidnocerus_foraminatus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Echidnocerus foraminatus\WC_ANN_IDW_Echidnocerus_foraminatus_2007.tif
-WC_ANN_IDW_Echidnocerus_foraminatus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Echidnocerus foraminatus\WC_ANN_IDW_Echidnocerus_foraminatus_2008.tif
-WC_ANN_IDW_Echidnocerus_foraminatus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Echidnocerus foraminatus\WC_ANN_IDW_Echidnocerus_foraminatus_2009.tif
-WC_ANN_IDW_Echidnocerus_foraminatus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Echidnocerus foraminatus\WC_ANN_IDW_Echidnocerus_foraminatus_2010.tif
-WC_ANN_IDW_Echidnocerus_foraminatus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Echidnocerus foraminatus\WC_ANN_IDW_Echidnocerus_foraminatus_2011.tif
-WC_ANN_IDW_Echidnocerus_foraminatus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Echidnocerus foraminatus\WC_ANN_IDW_Echidnocerus_foraminatus_2012.tif
-WC_ANN_IDW_Echidnocerus_foraminatus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Echidnocerus foraminatus\WC_ANN_IDW_Echidnocerus_foraminatus_2013.tif
-WC_ANN_IDW_Echidnocerus_foraminatus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Echidnocerus foraminatus\WC_ANN_IDW_Echidnocerus_foraminatus_2014.tif
-WC_ANN_IDW_Echidnocerus_foraminatus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Echidnocerus foraminatus\WC_ANN_IDW_Echidnocerus_foraminatus_2015.tif
-WC_ANN_IDW_Echidnocerus_foraminatus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Echidnocerus foraminatus\WC_ANN_IDW_Echidnocerus_foraminatus_2016.tif
-WC_ANN_IDW_Echidnocerus_foraminatus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Echidnocerus foraminatus\WC_ANN_IDW_Echidnocerus_foraminatus_2017.tif
-WC_ANN_IDW_Echidnocerus_foraminatus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Echidnocerus foraminatus\WC_ANN_IDW_Echidnocerus_foraminatus_2018.tif
-WC_ANN_IDW_Echidnocerus_foraminatus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Echidnocerus foraminatus\WC_ANN_IDW_Echidnocerus_foraminatus_2019.tif
-WC_ANN_IDW_Echidnocerus_foraminatus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Echidnocerus foraminatus\WC_ANN_IDW_Echidnocerus_foraminatus_2021.tif
-WC_ANN_IDW_Echidnocerus_foraminatus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Echidnocerus foraminatus\WC_ANN_IDW_Echidnocerus_foraminatus_2022.tif
-WC_ANN_IDW_Embassichthys_bathybius_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Embassichthys bathybius\WC_ANN_IDW_Embassichthys_bathybius_2003.tif
-WC_ANN_IDW_Embassichthys_bathybius_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Embassichthys bathybius\WC_ANN_IDW_Embassichthys_bathybius_2004.tif
-WC_ANN_IDW_Embassichthys_bathybius_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Embassichthys bathybius\WC_ANN_IDW_Embassichthys_bathybius_2005.tif
-WC_ANN_IDW_Embassichthys_bathybius_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Embassichthys bathybius\WC_ANN_IDW_Embassichthys_bathybius_2006.tif
-WC_ANN_IDW_Embassichthys_bathybius_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Embassichthys bathybius\WC_ANN_IDW_Embassichthys_bathybius_2007.tif
-WC_ANN_IDW_Embassichthys_bathybius_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Embassichthys bathybius\WC_ANN_IDW_Embassichthys_bathybius_2008.tif
-WC_ANN_IDW_Embassichthys_bathybius_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Embassichthys bathybius\WC_ANN_IDW_Embassichthys_bathybius_2009.tif
-WC_ANN_IDW_Embassichthys_bathybius_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Embassichthys bathybius\WC_ANN_IDW_Embassichthys_bathybius_2010.tif
-WC_ANN_IDW_Embassichthys_bathybius_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Embassichthys bathybius\WC_ANN_IDW_Embassichthys_bathybius_2011.tif
-WC_ANN_IDW_Embassichthys_bathybius_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Embassichthys bathybius\WC_ANN_IDW_Embassichthys_bathybius_2012.tif
-WC_ANN_IDW_Embassichthys_bathybius_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Embassichthys bathybius\WC_ANN_IDW_Embassichthys_bathybius_2013.tif
-WC_ANN_IDW_Embassichthys_bathybius_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Embassichthys bathybius\WC_ANN_IDW_Embassichthys_bathybius_2014.tif
-WC_ANN_IDW_Embassichthys_bathybius_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Embassichthys bathybius\WC_ANN_IDW_Embassichthys_bathybius_2015.tif
-WC_ANN_IDW_Embassichthys_bathybius_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Embassichthys bathybius\WC_ANN_IDW_Embassichthys_bathybius_2016.tif
-WC_ANN_IDW_Embassichthys_bathybius_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Embassichthys bathybius\WC_ANN_IDW_Embassichthys_bathybius_2017.tif
-WC_ANN_IDW_Embassichthys_bathybius_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Embassichthys bathybius\WC_ANN_IDW_Embassichthys_bathybius_2018.tif
-WC_ANN_IDW_Embassichthys_bathybius_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Embassichthys bathybius\WC_ANN_IDW_Embassichthys_bathybius_2019.tif
-WC_ANN_IDW_Embassichthys_bathybius_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Embassichthys bathybius\WC_ANN_IDW_Embassichthys_bathybius_2021.tif
-WC_ANN_IDW_Embassichthys_bathybius_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Embassichthys bathybius\WC_ANN_IDW_Embassichthys_bathybius_2022.tif
-WC_ANN_IDW_Eopsetta_jordani_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Eopsetta jordani\WC_ANN_IDW_Eopsetta_jordani_2003.tif
-WC_ANN_IDW_Eopsetta_jordani_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Eopsetta jordani\WC_ANN_IDW_Eopsetta_jordani_2004.tif
-WC_ANN_IDW_Eopsetta_jordani_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Eopsetta jordani\WC_ANN_IDW_Eopsetta_jordani_2005.tif
-WC_ANN_IDW_Eopsetta_jordani_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Eopsetta jordani\WC_ANN_IDW_Eopsetta_jordani_2006.tif
-WC_ANN_IDW_Eopsetta_jordani_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Eopsetta jordani\WC_ANN_IDW_Eopsetta_jordani_2007.tif
-WC_ANN_IDW_Eopsetta_jordani_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Eopsetta jordani\WC_ANN_IDW_Eopsetta_jordani_2008.tif
-WC_ANN_IDW_Eopsetta_jordani_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Eopsetta jordani\WC_ANN_IDW_Eopsetta_jordani_2009.tif
-WC_ANN_IDW_Eopsetta_jordani_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Eopsetta jordani\WC_ANN_IDW_Eopsetta_jordani_2010.tif
-WC_ANN_IDW_Eopsetta_jordani_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Eopsetta jordani\WC_ANN_IDW_Eopsetta_jordani_2011.tif
-WC_ANN_IDW_Eopsetta_jordani_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Eopsetta jordani\WC_ANN_IDW_Eopsetta_jordani_2012.tif
-WC_ANN_IDW_Eopsetta_jordani_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Eopsetta jordani\WC_ANN_IDW_Eopsetta_jordani_2013.tif
-WC_ANN_IDW_Eopsetta_jordani_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Eopsetta jordani\WC_ANN_IDW_Eopsetta_jordani_2014.tif
-WC_ANN_IDW_Eopsetta_jordani_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Eopsetta jordani\WC_ANN_IDW_Eopsetta_jordani_2015.tif
-WC_ANN_IDW_Eopsetta_jordani_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Eopsetta jordani\WC_ANN_IDW_Eopsetta_jordani_2016.tif
-WC_ANN_IDW_Eopsetta_jordani_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Eopsetta jordani\WC_ANN_IDW_Eopsetta_jordani_2017.tif
-WC_ANN_IDW_Eopsetta_jordani_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Eopsetta jordani\WC_ANN_IDW_Eopsetta_jordani_2018.tif
-WC_ANN_IDW_Eopsetta_jordani_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Eopsetta jordani\WC_ANN_IDW_Eopsetta_jordani_2019.tif
-WC_ANN_IDW_Eopsetta_jordani_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Eopsetta jordani\WC_ANN_IDW_Eopsetta_jordani_2021.tif
-WC_ANN_IDW_Eopsetta_jordani_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Eopsetta jordani\WC_ANN_IDW_Eopsetta_jordani_2022.tif
-WC_ANN_IDW_Genyonemus_lineatus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Genyonemus lineatus\WC_ANN_IDW_Genyonemus_lineatus_2003.tif
-WC_ANN_IDW_Genyonemus_lineatus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Genyonemus lineatus\WC_ANN_IDW_Genyonemus_lineatus_2004.tif
-WC_ANN_IDW_Genyonemus_lineatus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Genyonemus lineatus\WC_ANN_IDW_Genyonemus_lineatus_2005.tif
-WC_ANN_IDW_Genyonemus_lineatus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Genyonemus lineatus\WC_ANN_IDW_Genyonemus_lineatus_2006.tif
-WC_ANN_IDW_Genyonemus_lineatus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Genyonemus lineatus\WC_ANN_IDW_Genyonemus_lineatus_2007.tif
-WC_ANN_IDW_Genyonemus_lineatus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Genyonemus lineatus\WC_ANN_IDW_Genyonemus_lineatus_2008.tif
-WC_ANN_IDW_Genyonemus_lineatus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Genyonemus lineatus\WC_ANN_IDW_Genyonemus_lineatus_2009.tif
-WC_ANN_IDW_Genyonemus_lineatus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Genyonemus lineatus\WC_ANN_IDW_Genyonemus_lineatus_2010.tif
-WC_ANN_IDW_Genyonemus_lineatus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Genyonemus lineatus\WC_ANN_IDW_Genyonemus_lineatus_2011.tif
-WC_ANN_IDW_Genyonemus_lineatus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Genyonemus lineatus\WC_ANN_IDW_Genyonemus_lineatus_2012.tif
-WC_ANN_IDW_Genyonemus_lineatus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:23:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Genyonemus lineatus\WC_ANN_IDW_Genyonemus_lineatus_2013.tif
-WC_ANN_IDW_Genyonemus_lineatus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Genyonemus lineatus\WC_ANN_IDW_Genyonemus_lineatus_2014.tif
-WC_ANN_IDW_Genyonemus_lineatus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Genyonemus lineatus\WC_ANN_IDW_Genyonemus_lineatus_2015.tif
-WC_ANN_IDW_Genyonemus_lineatus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Genyonemus lineatus\WC_ANN_IDW_Genyonemus_lineatus_2016.tif
-WC_ANN_IDW_Genyonemus_lineatus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Genyonemus lineatus\WC_ANN_IDW_Genyonemus_lineatus_2017.tif
-WC_ANN_IDW_Genyonemus_lineatus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Genyonemus lineatus\WC_ANN_IDW_Genyonemus_lineatus_2018.tif
-WC_ANN_IDW_Genyonemus_lineatus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Genyonemus lineatus\WC_ANN_IDW_Genyonemus_lineatus_2019.tif
-WC_ANN_IDW_Genyonemus_lineatus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Genyonemus lineatus\WC_ANN_IDW_Genyonemus_lineatus_2021.tif
-WC_ANN_IDW_Genyonemus_lineatus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Genyonemus lineatus\WC_ANN_IDW_Genyonemus_lineatus_2022.tif
-WC_ANN_IDW_Glyptocephalus_zachirus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Glyptocephalus zachirus\WC_ANN_IDW_Glyptocephalus_zachirus_2003.tif
-WC_ANN_IDW_Glyptocephalus_zachirus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Glyptocephalus zachirus\WC_ANN_IDW_Glyptocephalus_zachirus_2004.tif
-WC_ANN_IDW_Glyptocephalus_zachirus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Glyptocephalus zachirus\WC_ANN_IDW_Glyptocephalus_zachirus_2005.tif
-WC_ANN_IDW_Glyptocephalus_zachirus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Glyptocephalus zachirus\WC_ANN_IDW_Glyptocephalus_zachirus_2006.tif
-WC_ANN_IDW_Glyptocephalus_zachirus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Glyptocephalus zachirus\WC_ANN_IDW_Glyptocephalus_zachirus_2007.tif
-WC_ANN_IDW_Glyptocephalus_zachirus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Glyptocephalus zachirus\WC_ANN_IDW_Glyptocephalus_zachirus_2008.tif
-WC_ANN_IDW_Glyptocephalus_zachirus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Glyptocephalus zachirus\WC_ANN_IDW_Glyptocephalus_zachirus_2009.tif
-WC_ANN_IDW_Glyptocephalus_zachirus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Glyptocephalus zachirus\WC_ANN_IDW_Glyptocephalus_zachirus_2010.tif
-WC_ANN_IDW_Glyptocephalus_zachirus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Glyptocephalus zachirus\WC_ANN_IDW_Glyptocephalus_zachirus_2011.tif
-WC_ANN_IDW_Glyptocephalus_zachirus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Glyptocephalus zachirus\WC_ANN_IDW_Glyptocephalus_zachirus_2012.tif
-WC_ANN_IDW_Glyptocephalus_zachirus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Glyptocephalus zachirus\WC_ANN_IDW_Glyptocephalus_zachirus_2013.tif
-WC_ANN_IDW_Glyptocephalus_zachirus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Glyptocephalus zachirus\WC_ANN_IDW_Glyptocephalus_zachirus_2014.tif
-WC_ANN_IDW_Glyptocephalus_zachirus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Glyptocephalus zachirus\WC_ANN_IDW_Glyptocephalus_zachirus_2015.tif
-WC_ANN_IDW_Glyptocephalus_zachirus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Glyptocephalus zachirus\WC_ANN_IDW_Glyptocephalus_zachirus_2016.tif
-WC_ANN_IDW_Glyptocephalus_zachirus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Glyptocephalus zachirus\WC_ANN_IDW_Glyptocephalus_zachirus_2017.tif
-WC_ANN_IDW_Glyptocephalus_zachirus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Glyptocephalus zachirus\WC_ANN_IDW_Glyptocephalus_zachirus_2018.tif
-WC_ANN_IDW_Glyptocephalus_zachirus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Glyptocephalus zachirus\WC_ANN_IDW_Glyptocephalus_zachirus_2019.tif
-WC_ANN_IDW_Glyptocephalus_zachirus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Glyptocephalus zachirus\WC_ANN_IDW_Glyptocephalus_zachirus_2021.tif
-WC_ANN_IDW_Glyptocephalus_zachirus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Glyptocephalus zachirus\WC_ANN_IDW_Glyptocephalus_zachirus_2022.tif
-WC_ANN_IDW_Heterozonias_alternatus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Heterozonias alternatus\WC_ANN_IDW_Heterozonias_alternatus_2003.tif
-WC_ANN_IDW_Heterozonias_alternatus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Heterozonias alternatus\WC_ANN_IDW_Heterozonias_alternatus_2004.tif
-WC_ANN_IDW_Heterozonias_alternatus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Heterozonias alternatus\WC_ANN_IDW_Heterozonias_alternatus_2005.tif
-WC_ANN_IDW_Heterozonias_alternatus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Heterozonias alternatus\WC_ANN_IDW_Heterozonias_alternatus_2006.tif
-WC_ANN_IDW_Heterozonias_alternatus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Heterozonias alternatus\WC_ANN_IDW_Heterozonias_alternatus_2007.tif
-WC_ANN_IDW_Heterozonias_alternatus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Heterozonias alternatus\WC_ANN_IDW_Heterozonias_alternatus_2008.tif
-WC_ANN_IDW_Heterozonias_alternatus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Heterozonias alternatus\WC_ANN_IDW_Heterozonias_alternatus_2009.tif
-WC_ANN_IDW_Heterozonias_alternatus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Heterozonias alternatus\WC_ANN_IDW_Heterozonias_alternatus_2010.tif
-WC_ANN_IDW_Heterozonias_alternatus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Heterozonias alternatus\WC_ANN_IDW_Heterozonias_alternatus_2011.tif
-WC_ANN_IDW_Heterozonias_alternatus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Heterozonias alternatus\WC_ANN_IDW_Heterozonias_alternatus_2012.tif
-WC_ANN_IDW_Heterozonias_alternatus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Heterozonias alternatus\WC_ANN_IDW_Heterozonias_alternatus_2013.tif
-WC_ANN_IDW_Heterozonias_alternatus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Heterozonias alternatus\WC_ANN_IDW_Heterozonias_alternatus_2014.tif
-WC_ANN_IDW_Heterozonias_alternatus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Heterozonias alternatus\WC_ANN_IDW_Heterozonias_alternatus_2015.tif
-WC_ANN_IDW_Heterozonias_alternatus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Heterozonias alternatus\WC_ANN_IDW_Heterozonias_alternatus_2016.tif
-WC_ANN_IDW_Heterozonias_alternatus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Heterozonias alternatus\WC_ANN_IDW_Heterozonias_alternatus_2017.tif
-WC_ANN_IDW_Heterozonias_alternatus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Heterozonias alternatus\WC_ANN_IDW_Heterozonias_alternatus_2018.tif
-WC_ANN_IDW_Heterozonias_alternatus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Heterozonias alternatus\WC_ANN_IDW_Heterozonias_alternatus_2019.tif
-WC_ANN_IDW_Heterozonias_alternatus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Heterozonias alternatus\WC_ANN_IDW_Heterozonias_alternatus_2021.tif
-WC_ANN_IDW_Heterozonias_alternatus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Heterozonias alternatus\WC_ANN_IDW_Heterozonias_alternatus_2022.tif
-WC_ANN_IDW_Hippasteria_californica_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria californica\WC_ANN_IDW_Hippasteria_californica_2003.tif
-WC_ANN_IDW_Hippasteria_californica_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria californica\WC_ANN_IDW_Hippasteria_californica_2004.tif
-WC_ANN_IDW_Hippasteria_californica_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria californica\WC_ANN_IDW_Hippasteria_californica_2005.tif
-WC_ANN_IDW_Hippasteria_californica_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria californica\WC_ANN_IDW_Hippasteria_californica_2006.tif
-WC_ANN_IDW_Hippasteria_californica_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria californica\WC_ANN_IDW_Hippasteria_californica_2007.tif
-WC_ANN_IDW_Hippasteria_californica_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria californica\WC_ANN_IDW_Hippasteria_californica_2008.tif
-WC_ANN_IDW_Hippasteria_californica_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria californica\WC_ANN_IDW_Hippasteria_californica_2009.tif
-WC_ANN_IDW_Hippasteria_californica_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria californica\WC_ANN_IDW_Hippasteria_californica_2010.tif
-WC_ANN_IDW_Hippasteria_californica_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria californica\WC_ANN_IDW_Hippasteria_californica_2011.tif
-WC_ANN_IDW_Hippasteria_californica_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria californica\WC_ANN_IDW_Hippasteria_californica_2012.tif
-WC_ANN_IDW_Hippasteria_californica_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria californica\WC_ANN_IDW_Hippasteria_californica_2013.tif
-WC_ANN_IDW_Hippasteria_californica_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria californica\WC_ANN_IDW_Hippasteria_californica_2014.tif
-WC_ANN_IDW_Hippasteria_californica_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria californica\WC_ANN_IDW_Hippasteria_californica_2015.tif
-WC_ANN_IDW_Hippasteria_californica_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria californica\WC_ANN_IDW_Hippasteria_californica_2016.tif
-WC_ANN_IDW_Hippasteria_californica_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria californica\WC_ANN_IDW_Hippasteria_californica_2017.tif
-WC_ANN_IDW_Hippasteria_californica_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria californica\WC_ANN_IDW_Hippasteria_californica_2018.tif
-WC_ANN_IDW_Hippasteria_californica_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria californica\WC_ANN_IDW_Hippasteria_californica_2019.tif
-WC_ANN_IDW_Hippasteria_californica_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria californica\WC_ANN_IDW_Hippasteria_californica_2021.tif
-WC_ANN_IDW_Hippasteria_californica_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria californica\WC_ANN_IDW_Hippasteria_californica_2022.tif
-WC_ANN_IDW_Hippasteria_phrygiana_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria phrygiana\WC_ANN_IDW_Hippasteria_phrygiana_2003.tif
-WC_ANN_IDW_Hippasteria_phrygiana_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria phrygiana\WC_ANN_IDW_Hippasteria_phrygiana_2004.tif
-WC_ANN_IDW_Hippasteria_phrygiana_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria phrygiana\WC_ANN_IDW_Hippasteria_phrygiana_2005.tif
-WC_ANN_IDW_Hippasteria_phrygiana_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria phrygiana\WC_ANN_IDW_Hippasteria_phrygiana_2006.tif
-WC_ANN_IDW_Hippasteria_phrygiana_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria phrygiana\WC_ANN_IDW_Hippasteria_phrygiana_2007.tif
-WC_ANN_IDW_Hippasteria_phrygiana_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria phrygiana\WC_ANN_IDW_Hippasteria_phrygiana_2008.tif
-WC_ANN_IDW_Hippasteria_phrygiana_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria phrygiana\WC_ANN_IDW_Hippasteria_phrygiana_2009.tif
-WC_ANN_IDW_Hippasteria_phrygiana_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria phrygiana\WC_ANN_IDW_Hippasteria_phrygiana_2010.tif
-WC_ANN_IDW_Hippasteria_phrygiana_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria phrygiana\WC_ANN_IDW_Hippasteria_phrygiana_2011.tif
-WC_ANN_IDW_Hippasteria_phrygiana_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria phrygiana\WC_ANN_IDW_Hippasteria_phrygiana_2012.tif
-WC_ANN_IDW_Hippasteria_phrygiana_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria phrygiana\WC_ANN_IDW_Hippasteria_phrygiana_2013.tif
-WC_ANN_IDW_Hippasteria_phrygiana_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria phrygiana\WC_ANN_IDW_Hippasteria_phrygiana_2014.tif
-WC_ANN_IDW_Hippasteria_phrygiana_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria phrygiana\WC_ANN_IDW_Hippasteria_phrygiana_2015.tif
-WC_ANN_IDW_Hippasteria_phrygiana_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria phrygiana\WC_ANN_IDW_Hippasteria_phrygiana_2016.tif
-WC_ANN_IDW_Hippasteria_phrygiana_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria phrygiana\WC_ANN_IDW_Hippasteria_phrygiana_2017.tif
-WC_ANN_IDW_Hippasteria_phrygiana_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria phrygiana\WC_ANN_IDW_Hippasteria_phrygiana_2018.tif
-WC_ANN_IDW_Hippasteria_phrygiana_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria phrygiana\WC_ANN_IDW_Hippasteria_phrygiana_2019.tif
-WC_ANN_IDW_Hippasteria_phrygiana_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria phrygiana\WC_ANN_IDW_Hippasteria_phrygiana_2021.tif
-WC_ANN_IDW_Hippasteria_phrygiana_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippasteria phrygiana\WC_ANN_IDW_Hippasteria_phrygiana_2022.tif
-WC_ANN_IDW_Hippoglossoides_elassodon_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossoides elassodon\WC_ANN_IDW_Hippoglossoides_elassodon_2003.tif
-WC_ANN_IDW_Hippoglossoides_elassodon_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossoides elassodon\WC_ANN_IDW_Hippoglossoides_elassodon_2004.tif
-WC_ANN_IDW_Hippoglossoides_elassodon_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossoides elassodon\WC_ANN_IDW_Hippoglossoides_elassodon_2005.tif
-WC_ANN_IDW_Hippoglossoides_elassodon_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossoides elassodon\WC_ANN_IDW_Hippoglossoides_elassodon_2006.tif
-WC_ANN_IDW_Hippoglossoides_elassodon_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossoides elassodon\WC_ANN_IDW_Hippoglossoides_elassodon_2007.tif
-WC_ANN_IDW_Hippoglossoides_elassodon_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossoides elassodon\WC_ANN_IDW_Hippoglossoides_elassodon_2008.tif
-WC_ANN_IDW_Hippoglossoides_elassodon_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossoides elassodon\WC_ANN_IDW_Hippoglossoides_elassodon_2009.tif
-WC_ANN_IDW_Hippoglossoides_elassodon_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossoides elassodon\WC_ANN_IDW_Hippoglossoides_elassodon_2010.tif
-WC_ANN_IDW_Hippoglossoides_elassodon_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossoides elassodon\WC_ANN_IDW_Hippoglossoides_elassodon_2011.tif
-WC_ANN_IDW_Hippoglossoides_elassodon_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossoides elassodon\WC_ANN_IDW_Hippoglossoides_elassodon_2012.tif
-WC_ANN_IDW_Hippoglossoides_elassodon_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossoides elassodon\WC_ANN_IDW_Hippoglossoides_elassodon_2013.tif
-WC_ANN_IDW_Hippoglossoides_elassodon_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossoides elassodon\WC_ANN_IDW_Hippoglossoides_elassodon_2014.tif
-WC_ANN_IDW_Hippoglossoides_elassodon_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossoides elassodon\WC_ANN_IDW_Hippoglossoides_elassodon_2015.tif
-WC_ANN_IDW_Hippoglossoides_elassodon_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossoides elassodon\WC_ANN_IDW_Hippoglossoides_elassodon_2016.tif
-WC_ANN_IDW_Hippoglossoides_elassodon_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossoides elassodon\WC_ANN_IDW_Hippoglossoides_elassodon_2017.tif
-WC_ANN_IDW_Hippoglossoides_elassodon_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossoides elassodon\WC_ANN_IDW_Hippoglossoides_elassodon_2018.tif
-WC_ANN_IDW_Hippoglossoides_elassodon_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossoides elassodon\WC_ANN_IDW_Hippoglossoides_elassodon_2019.tif
-WC_ANN_IDW_Hippoglossoides_elassodon_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossoides elassodon\WC_ANN_IDW_Hippoglossoides_elassodon_2021.tif
-WC_ANN_IDW_Hippoglossoides_elassodon_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossoides elassodon\WC_ANN_IDW_Hippoglossoides_elassodon_2022.tif
-WC_ANN_IDW_Hippoglossus_stenolepis_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossus stenolepis\WC_ANN_IDW_Hippoglossus_stenolepis_2003.tif
-WC_ANN_IDW_Hippoglossus_stenolepis_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossus stenolepis\WC_ANN_IDW_Hippoglossus_stenolepis_2004.tif
-WC_ANN_IDW_Hippoglossus_stenolepis_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossus stenolepis\WC_ANN_IDW_Hippoglossus_stenolepis_2005.tif
-WC_ANN_IDW_Hippoglossus_stenolepis_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossus stenolepis\WC_ANN_IDW_Hippoglossus_stenolepis_2006.tif
-WC_ANN_IDW_Hippoglossus_stenolepis_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossus stenolepis\WC_ANN_IDW_Hippoglossus_stenolepis_2007.tif
-WC_ANN_IDW_Hippoglossus_stenolepis_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossus stenolepis\WC_ANN_IDW_Hippoglossus_stenolepis_2008.tif
-WC_ANN_IDW_Hippoglossus_stenolepis_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossus stenolepis\WC_ANN_IDW_Hippoglossus_stenolepis_2009.tif
-WC_ANN_IDW_Hippoglossus_stenolepis_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossus stenolepis\WC_ANN_IDW_Hippoglossus_stenolepis_2010.tif
-WC_ANN_IDW_Hippoglossus_stenolepis_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossus stenolepis\WC_ANN_IDW_Hippoglossus_stenolepis_2011.tif
-WC_ANN_IDW_Hippoglossus_stenolepis_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossus stenolepis\WC_ANN_IDW_Hippoglossus_stenolepis_2012.tif
-WC_ANN_IDW_Hippoglossus_stenolepis_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossus stenolepis\WC_ANN_IDW_Hippoglossus_stenolepis_2013.tif
-WC_ANN_IDW_Hippoglossus_stenolepis_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossus stenolepis\WC_ANN_IDW_Hippoglossus_stenolepis_2014.tif
-WC_ANN_IDW_Hippoglossus_stenolepis_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossus stenolepis\WC_ANN_IDW_Hippoglossus_stenolepis_2015.tif
-WC_ANN_IDW_Hippoglossus_stenolepis_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossus stenolepis\WC_ANN_IDW_Hippoglossus_stenolepis_2016.tif
-WC_ANN_IDW_Hippoglossus_stenolepis_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossus stenolepis\WC_ANN_IDW_Hippoglossus_stenolepis_2017.tif
-WC_ANN_IDW_Hippoglossus_stenolepis_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossus stenolepis\WC_ANN_IDW_Hippoglossus_stenolepis_2018.tif
-WC_ANN_IDW_Hippoglossus_stenolepis_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossus stenolepis\WC_ANN_IDW_Hippoglossus_stenolepis_2019.tif
-WC_ANN_IDW_Hippoglossus_stenolepis_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossus stenolepis\WC_ANN_IDW_Hippoglossus_stenolepis_2021.tif
-WC_ANN_IDW_Hippoglossus_stenolepis_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hippoglossus stenolepis\WC_ANN_IDW_Hippoglossus_stenolepis_2022.tif
-WC_ANN_IDW_Hydrolagus_colliei_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hydrolagus colliei\WC_ANN_IDW_Hydrolagus_colliei_2003.tif
-WC_ANN_IDW_Hydrolagus_colliei_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hydrolagus colliei\WC_ANN_IDW_Hydrolagus_colliei_2004.tif
-WC_ANN_IDW_Hydrolagus_colliei_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hydrolagus colliei\WC_ANN_IDW_Hydrolagus_colliei_2005.tif
-WC_ANN_IDW_Hydrolagus_colliei_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hydrolagus colliei\WC_ANN_IDW_Hydrolagus_colliei_2006.tif
-WC_ANN_IDW_Hydrolagus_colliei_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hydrolagus colliei\WC_ANN_IDW_Hydrolagus_colliei_2007.tif
-WC_ANN_IDW_Hydrolagus_colliei_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hydrolagus colliei\WC_ANN_IDW_Hydrolagus_colliei_2008.tif
-WC_ANN_IDW_Hydrolagus_colliei_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hydrolagus colliei\WC_ANN_IDW_Hydrolagus_colliei_2009.tif
-WC_ANN_IDW_Hydrolagus_colliei_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hydrolagus colliei\WC_ANN_IDW_Hydrolagus_colliei_2010.tif
-WC_ANN_IDW_Hydrolagus_colliei_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hydrolagus colliei\WC_ANN_IDW_Hydrolagus_colliei_2011.tif
-WC_ANN_IDW_Hydrolagus_colliei_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hydrolagus colliei\WC_ANN_IDW_Hydrolagus_colliei_2012.tif
-WC_ANN_IDW_Hydrolagus_colliei_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hydrolagus colliei\WC_ANN_IDW_Hydrolagus_colliei_2013.tif
-WC_ANN_IDW_Hydrolagus_colliei_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hydrolagus colliei\WC_ANN_IDW_Hydrolagus_colliei_2014.tif
-WC_ANN_IDW_Hydrolagus_colliei_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hydrolagus colliei\WC_ANN_IDW_Hydrolagus_colliei_2015.tif
-WC_ANN_IDW_Hydrolagus_colliei_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hydrolagus colliei\WC_ANN_IDW_Hydrolagus_colliei_2016.tif
-WC_ANN_IDW_Hydrolagus_colliei_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hydrolagus colliei\WC_ANN_IDW_Hydrolagus_colliei_2017.tif
-WC_ANN_IDW_Hydrolagus_colliei_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hydrolagus colliei\WC_ANN_IDW_Hydrolagus_colliei_2018.tif
-WC_ANN_IDW_Hydrolagus_colliei_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hydrolagus colliei\WC_ANN_IDW_Hydrolagus_colliei_2019.tif
-WC_ANN_IDW_Hydrolagus_colliei_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hydrolagus colliei\WC_ANN_IDW_Hydrolagus_colliei_2021.tif
-WC_ANN_IDW_Hydrolagus_colliei_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Hydrolagus colliei\WC_ANN_IDW_Hydrolagus_colliei_2022.tif
-WC_ANN_IDW_Icelinus_filamentosus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Icelinus filamentosus\WC_ANN_IDW_Icelinus_filamentosus_2003.tif
-WC_ANN_IDW_Icelinus_filamentosus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Icelinus filamentosus\WC_ANN_IDW_Icelinus_filamentosus_2004.tif
-WC_ANN_IDW_Icelinus_filamentosus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Icelinus filamentosus\WC_ANN_IDW_Icelinus_filamentosus_2005.tif
-WC_ANN_IDW_Icelinus_filamentosus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Icelinus filamentosus\WC_ANN_IDW_Icelinus_filamentosus_2006.tif
-WC_ANN_IDW_Icelinus_filamentosus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Icelinus filamentosus\WC_ANN_IDW_Icelinus_filamentosus_2007.tif
-WC_ANN_IDW_Icelinus_filamentosus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Icelinus filamentosus\WC_ANN_IDW_Icelinus_filamentosus_2008.tif
-WC_ANN_IDW_Icelinus_filamentosus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Icelinus filamentosus\WC_ANN_IDW_Icelinus_filamentosus_2009.tif
-WC_ANN_IDW_Icelinus_filamentosus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Icelinus filamentosus\WC_ANN_IDW_Icelinus_filamentosus_2010.tif
-WC_ANN_IDW_Icelinus_filamentosus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Icelinus filamentosus\WC_ANN_IDW_Icelinus_filamentosus_2011.tif
-WC_ANN_IDW_Icelinus_filamentosus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Icelinus filamentosus\WC_ANN_IDW_Icelinus_filamentosus_2012.tif
-WC_ANN_IDW_Icelinus_filamentosus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Icelinus filamentosus\WC_ANN_IDW_Icelinus_filamentosus_2013.tif
-WC_ANN_IDW_Icelinus_filamentosus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Icelinus filamentosus\WC_ANN_IDW_Icelinus_filamentosus_2014.tif
-WC_ANN_IDW_Icelinus_filamentosus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Icelinus filamentosus\WC_ANN_IDW_Icelinus_filamentosus_2015.tif
-WC_ANN_IDW_Icelinus_filamentosus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Icelinus filamentosus\WC_ANN_IDW_Icelinus_filamentosus_2016.tif
-WC_ANN_IDW_Icelinus_filamentosus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Icelinus filamentosus\WC_ANN_IDW_Icelinus_filamentosus_2017.tif
-WC_ANN_IDW_Icelinus_filamentosus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Icelinus filamentosus\WC_ANN_IDW_Icelinus_filamentosus_2018.tif
-WC_ANN_IDW_Icelinus_filamentosus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Icelinus filamentosus\WC_ANN_IDW_Icelinus_filamentosus_2019.tif
-WC_ANN_IDW_Icelinus_filamentosus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Icelinus filamentosus\WC_ANN_IDW_Icelinus_filamentosus_2021.tif
-WC_ANN_IDW_Icelinus_filamentosus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Icelinus filamentosus\WC_ANN_IDW_Icelinus_filamentosus_2022.tif
-WC_ANN_IDW_Liponema_brevicorne_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Liponema brevicorne\WC_ANN_IDW_Liponema_brevicorne_2003.tif
-WC_ANN_IDW_Liponema_brevicorne_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Liponema brevicorne\WC_ANN_IDW_Liponema_brevicorne_2004.tif
-WC_ANN_IDW_Liponema_brevicorne_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Liponema brevicorne\WC_ANN_IDW_Liponema_brevicorne_2005.tif
-WC_ANN_IDW_Liponema_brevicorne_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Liponema brevicorne\WC_ANN_IDW_Liponema_brevicorne_2006.tif
-WC_ANN_IDW_Liponema_brevicorne_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Liponema brevicorne\WC_ANN_IDW_Liponema_brevicorne_2007.tif
-WC_ANN_IDW_Liponema_brevicorne_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Liponema brevicorne\WC_ANN_IDW_Liponema_brevicorne_2008.tif
-WC_ANN_IDW_Liponema_brevicorne_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Liponema brevicorne\WC_ANN_IDW_Liponema_brevicorne_2009.tif
-WC_ANN_IDW_Liponema_brevicorne_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Liponema brevicorne\WC_ANN_IDW_Liponema_brevicorne_2010.tif
-WC_ANN_IDW_Liponema_brevicorne_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Liponema brevicorne\WC_ANN_IDW_Liponema_brevicorne_2011.tif
-WC_ANN_IDW_Liponema_brevicorne_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Liponema brevicorne\WC_ANN_IDW_Liponema_brevicorne_2012.tif
-WC_ANN_IDW_Liponema_brevicorne_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Liponema brevicorne\WC_ANN_IDW_Liponema_brevicorne_2013.tif
-WC_ANN_IDW_Liponema_brevicorne_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Liponema brevicorne\WC_ANN_IDW_Liponema_brevicorne_2014.tif
-WC_ANN_IDW_Liponema_brevicorne_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Liponema brevicorne\WC_ANN_IDW_Liponema_brevicorne_2015.tif
-WC_ANN_IDW_Liponema_brevicorne_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Liponema brevicorne\WC_ANN_IDW_Liponema_brevicorne_2016.tif
-WC_ANN_IDW_Liponema_brevicorne_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Liponema brevicorne\WC_ANN_IDW_Liponema_brevicorne_2017.tif
-WC_ANN_IDW_Liponema_brevicorne_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Liponema brevicorne\WC_ANN_IDW_Liponema_brevicorne_2018.tif
-WC_ANN_IDW_Liponema_brevicorne_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Liponema brevicorne\WC_ANN_IDW_Liponema_brevicorne_2019.tif
-WC_ANN_IDW_Liponema_brevicorne_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Liponema brevicorne\WC_ANN_IDW_Liponema_brevicorne_2021.tif
-WC_ANN_IDW_Liponema_brevicorne_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Liponema brevicorne\WC_ANN_IDW_Liponema_brevicorne_2022.tif
-WC_ANN_IDW_Luidia_foliolata_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Luidia foliolata\WC_ANN_IDW_Luidia_foliolata_2003.tif
-WC_ANN_IDW_Luidia_foliolata_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Luidia foliolata\WC_ANN_IDW_Luidia_foliolata_2004.tif
-WC_ANN_IDW_Luidia_foliolata_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Luidia foliolata\WC_ANN_IDW_Luidia_foliolata_2005.tif
-WC_ANN_IDW_Luidia_foliolata_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Luidia foliolata\WC_ANN_IDW_Luidia_foliolata_2006.tif
-WC_ANN_IDW_Luidia_foliolata_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Luidia foliolata\WC_ANN_IDW_Luidia_foliolata_2007.tif
-WC_ANN_IDW_Luidia_foliolata_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Luidia foliolata\WC_ANN_IDW_Luidia_foliolata_2008.tif
-WC_ANN_IDW_Luidia_foliolata_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Luidia foliolata\WC_ANN_IDW_Luidia_foliolata_2009.tif
-WC_ANN_IDW_Luidia_foliolata_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Luidia foliolata\WC_ANN_IDW_Luidia_foliolata_2010.tif
-WC_ANN_IDW_Luidia_foliolata_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Luidia foliolata\WC_ANN_IDW_Luidia_foliolata_2011.tif
-WC_ANN_IDW_Luidia_foliolata_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Luidia foliolata\WC_ANN_IDW_Luidia_foliolata_2012.tif
-WC_ANN_IDW_Luidia_foliolata_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Luidia foliolata\WC_ANN_IDW_Luidia_foliolata_2013.tif
-WC_ANN_IDW_Luidia_foliolata_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Luidia foliolata\WC_ANN_IDW_Luidia_foliolata_2014.tif
-WC_ANN_IDW_Luidia_foliolata_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Luidia foliolata\WC_ANN_IDW_Luidia_foliolata_2015.tif
-WC_ANN_IDW_Luidia_foliolata_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Luidia foliolata\WC_ANN_IDW_Luidia_foliolata_2016.tif
-WC_ANN_IDW_Luidia_foliolata_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Luidia foliolata\WC_ANN_IDW_Luidia_foliolata_2017.tif
-WC_ANN_IDW_Luidia_foliolata_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Luidia foliolata\WC_ANN_IDW_Luidia_foliolata_2018.tif
-WC_ANN_IDW_Luidia_foliolata_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Luidia foliolata\WC_ANN_IDW_Luidia_foliolata_2019.tif
-WC_ANN_IDW_Luidia_foliolata_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Luidia foliolata\WC_ANN_IDW_Luidia_foliolata_2021.tif
-WC_ANN_IDW_Luidia_foliolata_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Luidia foliolata\WC_ANN_IDW_Luidia_foliolata_2022.tif
-WC_ANN_IDW_Lycenchelys_crotalinus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycenchelys crotalinus\WC_ANN_IDW_Lycenchelys_crotalinus_2003.tif
-WC_ANN_IDW_Lycenchelys_crotalinus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycenchelys crotalinus\WC_ANN_IDW_Lycenchelys_crotalinus_2004.tif
-WC_ANN_IDW_Lycenchelys_crotalinus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycenchelys crotalinus\WC_ANN_IDW_Lycenchelys_crotalinus_2005.tif
-WC_ANN_IDW_Lycenchelys_crotalinus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycenchelys crotalinus\WC_ANN_IDW_Lycenchelys_crotalinus_2006.tif
-WC_ANN_IDW_Lycenchelys_crotalinus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycenchelys crotalinus\WC_ANN_IDW_Lycenchelys_crotalinus_2007.tif
-WC_ANN_IDW_Lycenchelys_crotalinus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycenchelys crotalinus\WC_ANN_IDW_Lycenchelys_crotalinus_2008.tif
-WC_ANN_IDW_Lycenchelys_crotalinus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycenchelys crotalinus\WC_ANN_IDW_Lycenchelys_crotalinus_2009.tif
-WC_ANN_IDW_Lycenchelys_crotalinus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycenchelys crotalinus\WC_ANN_IDW_Lycenchelys_crotalinus_2010.tif
-WC_ANN_IDW_Lycenchelys_crotalinus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycenchelys crotalinus\WC_ANN_IDW_Lycenchelys_crotalinus_2011.tif
-WC_ANN_IDW_Lycenchelys_crotalinus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycenchelys crotalinus\WC_ANN_IDW_Lycenchelys_crotalinus_2012.tif
-WC_ANN_IDW_Lycenchelys_crotalinus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycenchelys crotalinus\WC_ANN_IDW_Lycenchelys_crotalinus_2013.tif
-WC_ANN_IDW_Lycenchelys_crotalinus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycenchelys crotalinus\WC_ANN_IDW_Lycenchelys_crotalinus_2014.tif
-WC_ANN_IDW_Lycenchelys_crotalinus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycenchelys crotalinus\WC_ANN_IDW_Lycenchelys_crotalinus_2015.tif
-WC_ANN_IDW_Lycenchelys_crotalinus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycenchelys crotalinus\WC_ANN_IDW_Lycenchelys_crotalinus_2016.tif
-WC_ANN_IDW_Lycenchelys_crotalinus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycenchelys crotalinus\WC_ANN_IDW_Lycenchelys_crotalinus_2017.tif
-WC_ANN_IDW_Lycenchelys_crotalinus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycenchelys crotalinus\WC_ANN_IDW_Lycenchelys_crotalinus_2018.tif
-WC_ANN_IDW_Lycenchelys_crotalinus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycenchelys crotalinus\WC_ANN_IDW_Lycenchelys_crotalinus_2019.tif
-WC_ANN_IDW_Lycenchelys_crotalinus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycenchelys crotalinus\WC_ANN_IDW_Lycenchelys_crotalinus_2021.tif
-WC_ANN_IDW_Lycenchelys_crotalinus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycenchelys crotalinus\WC_ANN_IDW_Lycenchelys_crotalinus_2022.tif
-WC_ANN_IDW_Lycodes_cortezianus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes cortezianus\WC_ANN_IDW_Lycodes_cortezianus_2003.tif
-WC_ANN_IDW_Lycodes_cortezianus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes cortezianus\WC_ANN_IDW_Lycodes_cortezianus_2004.tif
-WC_ANN_IDW_Lycodes_cortezianus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes cortezianus\WC_ANN_IDW_Lycodes_cortezianus_2005.tif
-WC_ANN_IDW_Lycodes_cortezianus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes cortezianus\WC_ANN_IDW_Lycodes_cortezianus_2006.tif
-WC_ANN_IDW_Lycodes_cortezianus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes cortezianus\WC_ANN_IDW_Lycodes_cortezianus_2007.tif
-WC_ANN_IDW_Lycodes_cortezianus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes cortezianus\WC_ANN_IDW_Lycodes_cortezianus_2008.tif
-WC_ANN_IDW_Lycodes_cortezianus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes cortezianus\WC_ANN_IDW_Lycodes_cortezianus_2009.tif
-WC_ANN_IDW_Lycodes_cortezianus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes cortezianus\WC_ANN_IDW_Lycodes_cortezianus_2010.tif
-WC_ANN_IDW_Lycodes_cortezianus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes cortezianus\WC_ANN_IDW_Lycodes_cortezianus_2011.tif
-WC_ANN_IDW_Lycodes_cortezianus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes cortezianus\WC_ANN_IDW_Lycodes_cortezianus_2012.tif
-WC_ANN_IDW_Lycodes_cortezianus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes cortezianus\WC_ANN_IDW_Lycodes_cortezianus_2013.tif
-WC_ANN_IDW_Lycodes_cortezianus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes cortezianus\WC_ANN_IDW_Lycodes_cortezianus_2014.tif
-WC_ANN_IDW_Lycodes_cortezianus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes cortezianus\WC_ANN_IDW_Lycodes_cortezianus_2015.tif
-WC_ANN_IDW_Lycodes_cortezianus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes cortezianus\WC_ANN_IDW_Lycodes_cortezianus_2016.tif
-WC_ANN_IDW_Lycodes_cortezianus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes cortezianus\WC_ANN_IDW_Lycodes_cortezianus_2017.tif
-WC_ANN_IDW_Lycodes_cortezianus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes cortezianus\WC_ANN_IDW_Lycodes_cortezianus_2018.tif
-WC_ANN_IDW_Lycodes_cortezianus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes cortezianus\WC_ANN_IDW_Lycodes_cortezianus_2019.tif
-WC_ANN_IDW_Lycodes_cortezianus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes cortezianus\WC_ANN_IDW_Lycodes_cortezianus_2021.tif
-WC_ANN_IDW_Lycodes_cortezianus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes cortezianus\WC_ANN_IDW_Lycodes_cortezianus_2022.tif
-WC_ANN_IDW_Lycodes_diapterus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes diapterus\WC_ANN_IDW_Lycodes_diapterus_2003.tif
-WC_ANN_IDW_Lycodes_diapterus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes diapterus\WC_ANN_IDW_Lycodes_diapterus_2004.tif
-WC_ANN_IDW_Lycodes_diapterus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes diapterus\WC_ANN_IDW_Lycodes_diapterus_2005.tif
-WC_ANN_IDW_Lycodes_diapterus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes diapterus\WC_ANN_IDW_Lycodes_diapterus_2006.tif
-WC_ANN_IDW_Lycodes_diapterus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes diapterus\WC_ANN_IDW_Lycodes_diapterus_2007.tif
-WC_ANN_IDW_Lycodes_diapterus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes diapterus\WC_ANN_IDW_Lycodes_diapterus_2008.tif
-WC_ANN_IDW_Lycodes_diapterus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes diapterus\WC_ANN_IDW_Lycodes_diapterus_2009.tif
-WC_ANN_IDW_Lycodes_diapterus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes diapterus\WC_ANN_IDW_Lycodes_diapterus_2010.tif
-WC_ANN_IDW_Lycodes_diapterus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes diapterus\WC_ANN_IDW_Lycodes_diapterus_2011.tif
-WC_ANN_IDW_Lycodes_diapterus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes diapterus\WC_ANN_IDW_Lycodes_diapterus_2012.tif
-WC_ANN_IDW_Lycodes_diapterus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes diapterus\WC_ANN_IDW_Lycodes_diapterus_2013.tif
-WC_ANN_IDW_Lycodes_diapterus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes diapterus\WC_ANN_IDW_Lycodes_diapterus_2014.tif
-WC_ANN_IDW_Lycodes_diapterus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes diapterus\WC_ANN_IDW_Lycodes_diapterus_2015.tif
-WC_ANN_IDW_Lycodes_diapterus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes diapterus\WC_ANN_IDW_Lycodes_diapterus_2016.tif
-WC_ANN_IDW_Lycodes_diapterus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes diapterus\WC_ANN_IDW_Lycodes_diapterus_2017.tif
-WC_ANN_IDW_Lycodes_diapterus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes diapterus\WC_ANN_IDW_Lycodes_diapterus_2018.tif
-WC_ANN_IDW_Lycodes_diapterus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes diapterus\WC_ANN_IDW_Lycodes_diapterus_2019.tif
-WC_ANN_IDW_Lycodes_diapterus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes diapterus\WC_ANN_IDW_Lycodes_diapterus_2021.tif
-WC_ANN_IDW_Lycodes_diapterus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes diapterus\WC_ANN_IDW_Lycodes_diapterus_2022.tif
-WC_ANN_IDW_Lycodes_pacificus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes pacificus\WC_ANN_IDW_Lycodes_pacificus_2003.tif
-WC_ANN_IDW_Lycodes_pacificus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes pacificus\WC_ANN_IDW_Lycodes_pacificus_2004.tif
-WC_ANN_IDW_Lycodes_pacificus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes pacificus\WC_ANN_IDW_Lycodes_pacificus_2005.tif
-WC_ANN_IDW_Lycodes_pacificus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes pacificus\WC_ANN_IDW_Lycodes_pacificus_2006.tif
-WC_ANN_IDW_Lycodes_pacificus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes pacificus\WC_ANN_IDW_Lycodes_pacificus_2007.tif
-WC_ANN_IDW_Lycodes_pacificus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes pacificus\WC_ANN_IDW_Lycodes_pacificus_2008.tif
-WC_ANN_IDW_Lycodes_pacificus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes pacificus\WC_ANN_IDW_Lycodes_pacificus_2009.tif
-WC_ANN_IDW_Lycodes_pacificus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes pacificus\WC_ANN_IDW_Lycodes_pacificus_2010.tif
-WC_ANN_IDW_Lycodes_pacificus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes pacificus\WC_ANN_IDW_Lycodes_pacificus_2011.tif
-WC_ANN_IDW_Lycodes_pacificus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes pacificus\WC_ANN_IDW_Lycodes_pacificus_2012.tif
-WC_ANN_IDW_Lycodes_pacificus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes pacificus\WC_ANN_IDW_Lycodes_pacificus_2013.tif
-WC_ANN_IDW_Lycodes_pacificus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes pacificus\WC_ANN_IDW_Lycodes_pacificus_2014.tif
-WC_ANN_IDW_Lycodes_pacificus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes pacificus\WC_ANN_IDW_Lycodes_pacificus_2015.tif
-WC_ANN_IDW_Lycodes_pacificus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes pacificus\WC_ANN_IDW_Lycodes_pacificus_2016.tif
-WC_ANN_IDW_Lycodes_pacificus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes pacificus\WC_ANN_IDW_Lycodes_pacificus_2017.tif
-WC_ANN_IDW_Lycodes_pacificus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes pacificus\WC_ANN_IDW_Lycodes_pacificus_2018.tif
-WC_ANN_IDW_Lycodes_pacificus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes pacificus\WC_ANN_IDW_Lycodes_pacificus_2019.tif
-WC_ANN_IDW_Lycodes_pacificus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes pacificus\WC_ANN_IDW_Lycodes_pacificus_2021.tif
-WC_ANN_IDW_Lycodes_pacificus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lycodes pacificus\WC_ANN_IDW_Lycodes_pacificus_2022.tif
-WC_ANN_IDW_Lyopsetta_exilis_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lyopsetta exilis\WC_ANN_IDW_Lyopsetta_exilis_2003.tif
-WC_ANN_IDW_Lyopsetta_exilis_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lyopsetta exilis\WC_ANN_IDW_Lyopsetta_exilis_2004.tif
-WC_ANN_IDW_Lyopsetta_exilis_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lyopsetta exilis\WC_ANN_IDW_Lyopsetta_exilis_2005.tif
-WC_ANN_IDW_Lyopsetta_exilis_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lyopsetta exilis\WC_ANN_IDW_Lyopsetta_exilis_2006.tif
-WC_ANN_IDW_Lyopsetta_exilis_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lyopsetta exilis\WC_ANN_IDW_Lyopsetta_exilis_2007.tif
-WC_ANN_IDW_Lyopsetta_exilis_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lyopsetta exilis\WC_ANN_IDW_Lyopsetta_exilis_2008.tif
-WC_ANN_IDW_Lyopsetta_exilis_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lyopsetta exilis\WC_ANN_IDW_Lyopsetta_exilis_2009.tif
-WC_ANN_IDW_Lyopsetta_exilis_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lyopsetta exilis\WC_ANN_IDW_Lyopsetta_exilis_2010.tif
-WC_ANN_IDW_Lyopsetta_exilis_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lyopsetta exilis\WC_ANN_IDW_Lyopsetta_exilis_2011.tif
-WC_ANN_IDW_Lyopsetta_exilis_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lyopsetta exilis\WC_ANN_IDW_Lyopsetta_exilis_2012.tif
-WC_ANN_IDW_Lyopsetta_exilis_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lyopsetta exilis\WC_ANN_IDW_Lyopsetta_exilis_2013.tif
-WC_ANN_IDW_Lyopsetta_exilis_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lyopsetta exilis\WC_ANN_IDW_Lyopsetta_exilis_2014.tif
-WC_ANN_IDW_Lyopsetta_exilis_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lyopsetta exilis\WC_ANN_IDW_Lyopsetta_exilis_2015.tif
-WC_ANN_IDW_Lyopsetta_exilis_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lyopsetta exilis\WC_ANN_IDW_Lyopsetta_exilis_2016.tif
-WC_ANN_IDW_Lyopsetta_exilis_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lyopsetta exilis\WC_ANN_IDW_Lyopsetta_exilis_2017.tif
-WC_ANN_IDW_Lyopsetta_exilis_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lyopsetta exilis\WC_ANN_IDW_Lyopsetta_exilis_2018.tif
-WC_ANN_IDW_Lyopsetta_exilis_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lyopsetta exilis\WC_ANN_IDW_Lyopsetta_exilis_2019.tif
-WC_ANN_IDW_Lyopsetta_exilis_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lyopsetta exilis\WC_ANN_IDW_Lyopsetta_exilis_2021.tif
-WC_ANN_IDW_Lyopsetta_exilis_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Lyopsetta exilis\WC_ANN_IDW_Lyopsetta_exilis_2022.tif
-WC_ANN_IDW_Mediaster_aequalis_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Mediaster aequalis\WC_ANN_IDW_Mediaster_aequalis_2003.tif
-WC_ANN_IDW_Mediaster_aequalis_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Mediaster aequalis\WC_ANN_IDW_Mediaster_aequalis_2004.tif
-WC_ANN_IDW_Mediaster_aequalis_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Mediaster aequalis\WC_ANN_IDW_Mediaster_aequalis_2005.tif
-WC_ANN_IDW_Mediaster_aequalis_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Mediaster aequalis\WC_ANN_IDW_Mediaster_aequalis_2006.tif
-WC_ANN_IDW_Mediaster_aequalis_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Mediaster aequalis\WC_ANN_IDW_Mediaster_aequalis_2007.tif
-WC_ANN_IDW_Mediaster_aequalis_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Mediaster aequalis\WC_ANN_IDW_Mediaster_aequalis_2008.tif
-WC_ANN_IDW_Mediaster_aequalis_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Mediaster aequalis\WC_ANN_IDW_Mediaster_aequalis_2009.tif
-WC_ANN_IDW_Mediaster_aequalis_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Mediaster aequalis\WC_ANN_IDW_Mediaster_aequalis_2010.tif
-WC_ANN_IDW_Mediaster_aequalis_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Mediaster aequalis\WC_ANN_IDW_Mediaster_aequalis_2011.tif
-WC_ANN_IDW_Mediaster_aequalis_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Mediaster aequalis\WC_ANN_IDW_Mediaster_aequalis_2012.tif
-WC_ANN_IDW_Mediaster_aequalis_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Mediaster aequalis\WC_ANN_IDW_Mediaster_aequalis_2013.tif
-WC_ANN_IDW_Mediaster_aequalis_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Mediaster aequalis\WC_ANN_IDW_Mediaster_aequalis_2014.tif
-WC_ANN_IDW_Mediaster_aequalis_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Mediaster aequalis\WC_ANN_IDW_Mediaster_aequalis_2015.tif
-WC_ANN_IDW_Mediaster_aequalis_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Mediaster aequalis\WC_ANN_IDW_Mediaster_aequalis_2016.tif
-WC_ANN_IDW_Mediaster_aequalis_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Mediaster aequalis\WC_ANN_IDW_Mediaster_aequalis_2017.tif
-WC_ANN_IDW_Mediaster_aequalis_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Mediaster aequalis\WC_ANN_IDW_Mediaster_aequalis_2018.tif
-WC_ANN_IDW_Mediaster_aequalis_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Mediaster aequalis\WC_ANN_IDW_Mediaster_aequalis_2019.tif
-WC_ANN_IDW_Mediaster_aequalis_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Mediaster aequalis\WC_ANN_IDW_Mediaster_aequalis_2021.tif
-WC_ANN_IDW_Mediaster_aequalis_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Mediaster aequalis\WC_ANN_IDW_Mediaster_aequalis_2022.tif
-WC_ANN_IDW_Merluccius_productus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Merluccius productus\WC_ANN_IDW_Merluccius_productus_2003.tif
-WC_ANN_IDW_Merluccius_productus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Merluccius productus\WC_ANN_IDW_Merluccius_productus_2004.tif
-WC_ANN_IDW_Merluccius_productus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Merluccius productus\WC_ANN_IDW_Merluccius_productus_2005.tif
-WC_ANN_IDW_Merluccius_productus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Merluccius productus\WC_ANN_IDW_Merluccius_productus_2006.tif
-WC_ANN_IDW_Merluccius_productus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Merluccius productus\WC_ANN_IDW_Merluccius_productus_2007.tif
-WC_ANN_IDW_Merluccius_productus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Merluccius productus\WC_ANN_IDW_Merluccius_productus_2008.tif
-WC_ANN_IDW_Merluccius_productus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Merluccius productus\WC_ANN_IDW_Merluccius_productus_2009.tif
-WC_ANN_IDW_Merluccius_productus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Merluccius productus\WC_ANN_IDW_Merluccius_productus_2010.tif
-WC_ANN_IDW_Merluccius_productus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Merluccius productus\WC_ANN_IDW_Merluccius_productus_2011.tif
-WC_ANN_IDW_Merluccius_productus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Merluccius productus\WC_ANN_IDW_Merluccius_productus_2012.tif
-WC_ANN_IDW_Merluccius_productus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Merluccius productus\WC_ANN_IDW_Merluccius_productus_2013.tif
-WC_ANN_IDW_Merluccius_productus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Merluccius productus\WC_ANN_IDW_Merluccius_productus_2014.tif
-WC_ANN_IDW_Merluccius_productus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Merluccius productus\WC_ANN_IDW_Merluccius_productus_2015.tif
-WC_ANN_IDW_Merluccius_productus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Merluccius productus\WC_ANN_IDW_Merluccius_productus_2016.tif
-WC_ANN_IDW_Merluccius_productus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Merluccius productus\WC_ANN_IDW_Merluccius_productus_2017.tif
-WC_ANN_IDW_Merluccius_productus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Merluccius productus\WC_ANN_IDW_Merluccius_productus_2018.tif
-WC_ANN_IDW_Merluccius_productus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Merluccius productus\WC_ANN_IDW_Merluccius_productus_2019.tif
-WC_ANN_IDW_Merluccius_productus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Merluccius productus\WC_ANN_IDW_Merluccius_productus_2021.tif
-WC_ANN_IDW_Merluccius_productus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Merluccius productus\WC_ANN_IDW_Merluccius_productus_2022.tif
-WC_ANN_IDW_Metacarcinus_magister_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metacarcinus magister\WC_ANN_IDW_Metacarcinus_magister_2003.tif
-WC_ANN_IDW_Metacarcinus_magister_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metacarcinus magister\WC_ANN_IDW_Metacarcinus_magister_2004.tif
-WC_ANN_IDW_Metacarcinus_magister_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metacarcinus magister\WC_ANN_IDW_Metacarcinus_magister_2005.tif
-WC_ANN_IDW_Metacarcinus_magister_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metacarcinus magister\WC_ANN_IDW_Metacarcinus_magister_2006.tif
-WC_ANN_IDW_Metacarcinus_magister_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metacarcinus magister\WC_ANN_IDW_Metacarcinus_magister_2007.tif
-WC_ANN_IDW_Metacarcinus_magister_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metacarcinus magister\WC_ANN_IDW_Metacarcinus_magister_2008.tif
-WC_ANN_IDW_Metacarcinus_magister_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metacarcinus magister\WC_ANN_IDW_Metacarcinus_magister_2009.tif
-WC_ANN_IDW_Metacarcinus_magister_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metacarcinus magister\WC_ANN_IDW_Metacarcinus_magister_2010.tif
-WC_ANN_IDW_Metacarcinus_magister_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metacarcinus magister\WC_ANN_IDW_Metacarcinus_magister_2011.tif
-WC_ANN_IDW_Metacarcinus_magister_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metacarcinus magister\WC_ANN_IDW_Metacarcinus_magister_2012.tif
-WC_ANN_IDW_Metacarcinus_magister_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metacarcinus magister\WC_ANN_IDW_Metacarcinus_magister_2013.tif
-WC_ANN_IDW_Metacarcinus_magister_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metacarcinus magister\WC_ANN_IDW_Metacarcinus_magister_2014.tif
-WC_ANN_IDW_Metacarcinus_magister_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metacarcinus magister\WC_ANN_IDW_Metacarcinus_magister_2015.tif
-WC_ANN_IDW_Metacarcinus_magister_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metacarcinus magister\WC_ANN_IDW_Metacarcinus_magister_2016.tif
-WC_ANN_IDW_Metacarcinus_magister_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metacarcinus magister\WC_ANN_IDW_Metacarcinus_magister_2017.tif
-WC_ANN_IDW_Metacarcinus_magister_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metacarcinus magister\WC_ANN_IDW_Metacarcinus_magister_2018.tif
-WC_ANN_IDW_Metacarcinus_magister_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metacarcinus magister\WC_ANN_IDW_Metacarcinus_magister_2019.tif
-WC_ANN_IDW_Metacarcinus_magister_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metacarcinus magister\WC_ANN_IDW_Metacarcinus_magister_2021.tif
-WC_ANN_IDW_Metacarcinus_magister_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metacarcinus magister\WC_ANN_IDW_Metacarcinus_magister_2022.tif
-WC_ANN_IDW_Metridium_farcimen_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metridium farcimen\WC_ANN_IDW_Metridium_farcimen_2003.tif
-WC_ANN_IDW_Metridium_farcimen_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metridium farcimen\WC_ANN_IDW_Metridium_farcimen_2004.tif
-WC_ANN_IDW_Metridium_farcimen_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metridium farcimen\WC_ANN_IDW_Metridium_farcimen_2005.tif
-WC_ANN_IDW_Metridium_farcimen_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metridium farcimen\WC_ANN_IDW_Metridium_farcimen_2006.tif
-WC_ANN_IDW_Metridium_farcimen_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metridium farcimen\WC_ANN_IDW_Metridium_farcimen_2007.tif
-WC_ANN_IDW_Metridium_farcimen_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metridium farcimen\WC_ANN_IDW_Metridium_farcimen_2008.tif
-WC_ANN_IDW_Metridium_farcimen_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metridium farcimen\WC_ANN_IDW_Metridium_farcimen_2009.tif
-WC_ANN_IDW_Metridium_farcimen_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metridium farcimen\WC_ANN_IDW_Metridium_farcimen_2010.tif
-WC_ANN_IDW_Metridium_farcimen_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metridium farcimen\WC_ANN_IDW_Metridium_farcimen_2011.tif
-WC_ANN_IDW_Metridium_farcimen_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metridium farcimen\WC_ANN_IDW_Metridium_farcimen_2012.tif
-WC_ANN_IDW_Metridium_farcimen_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metridium farcimen\WC_ANN_IDW_Metridium_farcimen_2013.tif
-WC_ANN_IDW_Metridium_farcimen_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metridium farcimen\WC_ANN_IDW_Metridium_farcimen_2014.tif
-WC_ANN_IDW_Metridium_farcimen_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metridium farcimen\WC_ANN_IDW_Metridium_farcimen_2015.tif
-WC_ANN_IDW_Metridium_farcimen_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metridium farcimen\WC_ANN_IDW_Metridium_farcimen_2016.tif
-WC_ANN_IDW_Metridium_farcimen_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metridium farcimen\WC_ANN_IDW_Metridium_farcimen_2017.tif
-WC_ANN_IDW_Metridium_farcimen_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metridium farcimen\WC_ANN_IDW_Metridium_farcimen_2018.tif
-WC_ANN_IDW_Metridium_farcimen_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metridium farcimen\WC_ANN_IDW_Metridium_farcimen_2019.tif
-WC_ANN_IDW_Metridium_farcimen_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metridium farcimen\WC_ANN_IDW_Metridium_farcimen_2021.tif
-WC_ANN_IDW_Metridium_farcimen_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Metridium farcimen\WC_ANN_IDW_Metridium_farcimen_2022.tif
-WC_ANN_IDW_Microstomus_pacificus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Microstomus pacificus\WC_ANN_IDW_Microstomus_pacificus_2003.tif
-WC_ANN_IDW_Microstomus_pacificus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Microstomus pacificus\WC_ANN_IDW_Microstomus_pacificus_2004.tif
-WC_ANN_IDW_Microstomus_pacificus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Microstomus pacificus\WC_ANN_IDW_Microstomus_pacificus_2005.tif
-WC_ANN_IDW_Microstomus_pacificus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Microstomus pacificus\WC_ANN_IDW_Microstomus_pacificus_2006.tif
-WC_ANN_IDW_Microstomus_pacificus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Microstomus pacificus\WC_ANN_IDW_Microstomus_pacificus_2007.tif
-WC_ANN_IDW_Microstomus_pacificus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Microstomus pacificus\WC_ANN_IDW_Microstomus_pacificus_2008.tif
-WC_ANN_IDW_Microstomus_pacificus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Microstomus pacificus\WC_ANN_IDW_Microstomus_pacificus_2009.tif
-WC_ANN_IDW_Microstomus_pacificus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Microstomus pacificus\WC_ANN_IDW_Microstomus_pacificus_2010.tif
-WC_ANN_IDW_Microstomus_pacificus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Microstomus pacificus\WC_ANN_IDW_Microstomus_pacificus_2011.tif
-WC_ANN_IDW_Microstomus_pacificus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Microstomus pacificus\WC_ANN_IDW_Microstomus_pacificus_2012.tif
-WC_ANN_IDW_Microstomus_pacificus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Microstomus pacificus\WC_ANN_IDW_Microstomus_pacificus_2013.tif
-WC_ANN_IDW_Microstomus_pacificus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Microstomus pacificus\WC_ANN_IDW_Microstomus_pacificus_2014.tif
-WC_ANN_IDW_Microstomus_pacificus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Microstomus pacificus\WC_ANN_IDW_Microstomus_pacificus_2015.tif
-WC_ANN_IDW_Microstomus_pacificus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Microstomus pacificus\WC_ANN_IDW_Microstomus_pacificus_2016.tif
-WC_ANN_IDW_Microstomus_pacificus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Microstomus pacificus\WC_ANN_IDW_Microstomus_pacificus_2017.tif
-WC_ANN_IDW_Microstomus_pacificus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Microstomus pacificus\WC_ANN_IDW_Microstomus_pacificus_2018.tif
-WC_ANN_IDW_Microstomus_pacificus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Microstomus pacificus\WC_ANN_IDW_Microstomus_pacificus_2019.tif
-WC_ANN_IDW_Microstomus_pacificus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Microstomus pacificus\WC_ANN_IDW_Microstomus_pacificus_2021.tif
-WC_ANN_IDW_Microstomus_pacificus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Microstomus pacificus\WC_ANN_IDW_Microstomus_pacificus_2022.tif
-WC_ANN_IDW_Molpadia_intermedia_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Molpadia intermedia\WC_ANN_IDW_Molpadia_intermedia_2003.tif
-WC_ANN_IDW_Molpadia_intermedia_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Molpadia intermedia\WC_ANN_IDW_Molpadia_intermedia_2004.tif
-WC_ANN_IDW_Molpadia_intermedia_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Molpadia intermedia\WC_ANN_IDW_Molpadia_intermedia_2005.tif
-WC_ANN_IDW_Molpadia_intermedia_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Molpadia intermedia\WC_ANN_IDW_Molpadia_intermedia_2006.tif
-WC_ANN_IDW_Molpadia_intermedia_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Molpadia intermedia\WC_ANN_IDW_Molpadia_intermedia_2007.tif
-WC_ANN_IDW_Molpadia_intermedia_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Molpadia intermedia\WC_ANN_IDW_Molpadia_intermedia_2008.tif
-WC_ANN_IDW_Molpadia_intermedia_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Molpadia intermedia\WC_ANN_IDW_Molpadia_intermedia_2009.tif
-WC_ANN_IDW_Molpadia_intermedia_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Molpadia intermedia\WC_ANN_IDW_Molpadia_intermedia_2010.tif
-WC_ANN_IDW_Molpadia_intermedia_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Molpadia intermedia\WC_ANN_IDW_Molpadia_intermedia_2011.tif
-WC_ANN_IDW_Molpadia_intermedia_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Molpadia intermedia\WC_ANN_IDW_Molpadia_intermedia_2012.tif
-WC_ANN_IDW_Molpadia_intermedia_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Molpadia intermedia\WC_ANN_IDW_Molpadia_intermedia_2013.tif
-WC_ANN_IDW_Molpadia_intermedia_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Molpadia intermedia\WC_ANN_IDW_Molpadia_intermedia_2014.tif
-WC_ANN_IDW_Molpadia_intermedia_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Molpadia intermedia\WC_ANN_IDW_Molpadia_intermedia_2015.tif
-WC_ANN_IDW_Molpadia_intermedia_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Molpadia intermedia\WC_ANN_IDW_Molpadia_intermedia_2016.tif
-WC_ANN_IDW_Molpadia_intermedia_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Molpadia intermedia\WC_ANN_IDW_Molpadia_intermedia_2017.tif
-WC_ANN_IDW_Molpadia_intermedia_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Molpadia intermedia\WC_ANN_IDW_Molpadia_intermedia_2018.tif
-WC_ANN_IDW_Molpadia_intermedia_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Molpadia intermedia\WC_ANN_IDW_Molpadia_intermedia_2019.tif
-WC_ANN_IDW_Molpadia_intermedia_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Molpadia intermedia\WC_ANN_IDW_Molpadia_intermedia_2021.tif
-WC_ANN_IDW_Molpadia_intermedia_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Molpadia intermedia\WC_ANN_IDW_Molpadia_intermedia_2022.tif
-WC_ANN_IDW_Myxoderma_platyacanthum_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Myxoderma platyacanthum\WC_ANN_IDW_Myxoderma_platyacanthum_2003.tif
-WC_ANN_IDW_Myxoderma_platyacanthum_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Myxoderma platyacanthum\WC_ANN_IDW_Myxoderma_platyacanthum_2004.tif
-WC_ANN_IDW_Myxoderma_platyacanthum_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Myxoderma platyacanthum\WC_ANN_IDW_Myxoderma_platyacanthum_2005.tif
-WC_ANN_IDW_Myxoderma_platyacanthum_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Myxoderma platyacanthum\WC_ANN_IDW_Myxoderma_platyacanthum_2006.tif
-WC_ANN_IDW_Myxoderma_platyacanthum_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Myxoderma platyacanthum\WC_ANN_IDW_Myxoderma_platyacanthum_2007.tif
-WC_ANN_IDW_Myxoderma_platyacanthum_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Myxoderma platyacanthum\WC_ANN_IDW_Myxoderma_platyacanthum_2008.tif
-WC_ANN_IDW_Myxoderma_platyacanthum_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Myxoderma platyacanthum\WC_ANN_IDW_Myxoderma_platyacanthum_2009.tif
-WC_ANN_IDW_Myxoderma_platyacanthum_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Myxoderma platyacanthum\WC_ANN_IDW_Myxoderma_platyacanthum_2010.tif
-WC_ANN_IDW_Myxoderma_platyacanthum_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Myxoderma platyacanthum\WC_ANN_IDW_Myxoderma_platyacanthum_2011.tif
-WC_ANN_IDW_Myxoderma_platyacanthum_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Myxoderma platyacanthum\WC_ANN_IDW_Myxoderma_platyacanthum_2012.tif
-WC_ANN_IDW_Myxoderma_platyacanthum_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Myxoderma platyacanthum\WC_ANN_IDW_Myxoderma_platyacanthum_2013.tif
-WC_ANN_IDW_Myxoderma_platyacanthum_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Myxoderma platyacanthum\WC_ANN_IDW_Myxoderma_platyacanthum_2014.tif
-WC_ANN_IDW_Myxoderma_platyacanthum_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Myxoderma platyacanthum\WC_ANN_IDW_Myxoderma_platyacanthum_2015.tif
-WC_ANN_IDW_Myxoderma_platyacanthum_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Myxoderma platyacanthum\WC_ANN_IDW_Myxoderma_platyacanthum_2016.tif
-WC_ANN_IDW_Myxoderma_platyacanthum_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Myxoderma platyacanthum\WC_ANN_IDW_Myxoderma_platyacanthum_2017.tif
-WC_ANN_IDW_Myxoderma_platyacanthum_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Myxoderma platyacanthum\WC_ANN_IDW_Myxoderma_platyacanthum_2018.tif
-WC_ANN_IDW_Myxoderma_platyacanthum_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Myxoderma platyacanthum\WC_ANN_IDW_Myxoderma_platyacanthum_2019.tif
-WC_ANN_IDW_Myxoderma_platyacanthum_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Myxoderma platyacanthum\WC_ANN_IDW_Myxoderma_platyacanthum_2021.tif
-WC_ANN_IDW_Myxoderma_platyacanthum_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Myxoderma platyacanthum\WC_ANN_IDW_Myxoderma_platyacanthum_2022.tif
-WC_ANN_IDW_Nearchaster_aciculosus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nearchaster aciculosus\WC_ANN_IDW_Nearchaster_aciculosus_2003.tif
-WC_ANN_IDW_Nearchaster_aciculosus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nearchaster aciculosus\WC_ANN_IDW_Nearchaster_aciculosus_2004.tif
-WC_ANN_IDW_Nearchaster_aciculosus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nearchaster aciculosus\WC_ANN_IDW_Nearchaster_aciculosus_2005.tif
-WC_ANN_IDW_Nearchaster_aciculosus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nearchaster aciculosus\WC_ANN_IDW_Nearchaster_aciculosus_2006.tif
-WC_ANN_IDW_Nearchaster_aciculosus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nearchaster aciculosus\WC_ANN_IDW_Nearchaster_aciculosus_2007.tif
-WC_ANN_IDW_Nearchaster_aciculosus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nearchaster aciculosus\WC_ANN_IDW_Nearchaster_aciculosus_2008.tif
-WC_ANN_IDW_Nearchaster_aciculosus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nearchaster aciculosus\WC_ANN_IDW_Nearchaster_aciculosus_2009.tif
-WC_ANN_IDW_Nearchaster_aciculosus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nearchaster aciculosus\WC_ANN_IDW_Nearchaster_aciculosus_2010.tif
-WC_ANN_IDW_Nearchaster_aciculosus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nearchaster aciculosus\WC_ANN_IDW_Nearchaster_aciculosus_2011.tif
-WC_ANN_IDW_Nearchaster_aciculosus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nearchaster aciculosus\WC_ANN_IDW_Nearchaster_aciculosus_2012.tif
-WC_ANN_IDW_Nearchaster_aciculosus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nearchaster aciculosus\WC_ANN_IDW_Nearchaster_aciculosus_2013.tif
-WC_ANN_IDW_Nearchaster_aciculosus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nearchaster aciculosus\WC_ANN_IDW_Nearchaster_aciculosus_2014.tif
-WC_ANN_IDW_Nearchaster_aciculosus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nearchaster aciculosus\WC_ANN_IDW_Nearchaster_aciculosus_2015.tif
-WC_ANN_IDW_Nearchaster_aciculosus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nearchaster aciculosus\WC_ANN_IDW_Nearchaster_aciculosus_2016.tif
-WC_ANN_IDW_Nearchaster_aciculosus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nearchaster aciculosus\WC_ANN_IDW_Nearchaster_aciculosus_2017.tif
-WC_ANN_IDW_Nearchaster_aciculosus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nearchaster aciculosus\WC_ANN_IDW_Nearchaster_aciculosus_2018.tif
-WC_ANN_IDW_Nearchaster_aciculosus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nearchaster aciculosus\WC_ANN_IDW_Nearchaster_aciculosus_2019.tif
-WC_ANN_IDW_Nearchaster_aciculosus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nearchaster aciculosus\WC_ANN_IDW_Nearchaster_aciculosus_2021.tif
-WC_ANN_IDW_Nearchaster_aciculosus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nearchaster aciculosus\WC_ANN_IDW_Nearchaster_aciculosus_2022.tif
-WC_ANN_IDW_Neptunea_amianta_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Neptunea amianta\WC_ANN_IDW_Neptunea_amianta_2003.tif
-WC_ANN_IDW_Neptunea_amianta_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Neptunea amianta\WC_ANN_IDW_Neptunea_amianta_2004.tif
-WC_ANN_IDW_Neptunea_amianta_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Neptunea amianta\WC_ANN_IDW_Neptunea_amianta_2005.tif
-WC_ANN_IDW_Neptunea_amianta_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Neptunea amianta\WC_ANN_IDW_Neptunea_amianta_2006.tif
-WC_ANN_IDW_Neptunea_amianta_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Neptunea amianta\WC_ANN_IDW_Neptunea_amianta_2007.tif
-WC_ANN_IDW_Neptunea_amianta_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Neptunea amianta\WC_ANN_IDW_Neptunea_amianta_2008.tif
-WC_ANN_IDW_Neptunea_amianta_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Neptunea amianta\WC_ANN_IDW_Neptunea_amianta_2009.tif
-WC_ANN_IDW_Neptunea_amianta_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Neptunea amianta\WC_ANN_IDW_Neptunea_amianta_2010.tif
-WC_ANN_IDW_Neptunea_amianta_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Neptunea amianta\WC_ANN_IDW_Neptunea_amianta_2011.tif
-WC_ANN_IDW_Neptunea_amianta_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Neptunea amianta\WC_ANN_IDW_Neptunea_amianta_2012.tif
-WC_ANN_IDW_Neptunea_amianta_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Neptunea amianta\WC_ANN_IDW_Neptunea_amianta_2013.tif
-WC_ANN_IDW_Neptunea_amianta_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Neptunea amianta\WC_ANN_IDW_Neptunea_amianta_2014.tif
-WC_ANN_IDW_Neptunea_amianta_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Neptunea amianta\WC_ANN_IDW_Neptunea_amianta_2015.tif
-WC_ANN_IDW_Neptunea_amianta_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Neptunea amianta\WC_ANN_IDW_Neptunea_amianta_2016.tif
-WC_ANN_IDW_Neptunea_amianta_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Neptunea amianta\WC_ANN_IDW_Neptunea_amianta_2017.tif
-WC_ANN_IDW_Neptunea_amianta_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Neptunea amianta\WC_ANN_IDW_Neptunea_amianta_2018.tif
-WC_ANN_IDW_Neptunea_amianta_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Neptunea amianta\WC_ANN_IDW_Neptunea_amianta_2019.tif
-WC_ANN_IDW_Neptunea_amianta_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Neptunea amianta\WC_ANN_IDW_Neptunea_amianta_2021.tif
-WC_ANN_IDW_Neptunea_amianta_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Neptunea amianta\WC_ANN_IDW_Neptunea_amianta_2022.tif
-WC_ANN_IDW_Nezumia_stelgidolepis_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nezumia stelgidolepis\WC_ANN_IDW_Nezumia_stelgidolepis_2003.tif
-WC_ANN_IDW_Nezumia_stelgidolepis_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nezumia stelgidolepis\WC_ANN_IDW_Nezumia_stelgidolepis_2004.tif
-WC_ANN_IDW_Nezumia_stelgidolepis_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nezumia stelgidolepis\WC_ANN_IDW_Nezumia_stelgidolepis_2005.tif
-WC_ANN_IDW_Nezumia_stelgidolepis_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nezumia stelgidolepis\WC_ANN_IDW_Nezumia_stelgidolepis_2006.tif
-WC_ANN_IDW_Nezumia_stelgidolepis_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nezumia stelgidolepis\WC_ANN_IDW_Nezumia_stelgidolepis_2007.tif
-WC_ANN_IDW_Nezumia_stelgidolepis_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nezumia stelgidolepis\WC_ANN_IDW_Nezumia_stelgidolepis_2008.tif
-WC_ANN_IDW_Nezumia_stelgidolepis_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nezumia stelgidolepis\WC_ANN_IDW_Nezumia_stelgidolepis_2009.tif
-WC_ANN_IDW_Nezumia_stelgidolepis_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nezumia stelgidolepis\WC_ANN_IDW_Nezumia_stelgidolepis_2010.tif
-WC_ANN_IDW_Nezumia_stelgidolepis_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nezumia stelgidolepis\WC_ANN_IDW_Nezumia_stelgidolepis_2011.tif
-WC_ANN_IDW_Nezumia_stelgidolepis_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nezumia stelgidolepis\WC_ANN_IDW_Nezumia_stelgidolepis_2012.tif
-WC_ANN_IDW_Nezumia_stelgidolepis_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nezumia stelgidolepis\WC_ANN_IDW_Nezumia_stelgidolepis_2013.tif
-WC_ANN_IDW_Nezumia_stelgidolepis_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nezumia stelgidolepis\WC_ANN_IDW_Nezumia_stelgidolepis_2014.tif
-WC_ANN_IDW_Nezumia_stelgidolepis_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nezumia stelgidolepis\WC_ANN_IDW_Nezumia_stelgidolepis_2015.tif
-WC_ANN_IDW_Nezumia_stelgidolepis_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nezumia stelgidolepis\WC_ANN_IDW_Nezumia_stelgidolepis_2016.tif
-WC_ANN_IDW_Nezumia_stelgidolepis_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nezumia stelgidolepis\WC_ANN_IDW_Nezumia_stelgidolepis_2017.tif
-WC_ANN_IDW_Nezumia_stelgidolepis_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nezumia stelgidolepis\WC_ANN_IDW_Nezumia_stelgidolepis_2018.tif
-WC_ANN_IDW_Nezumia_stelgidolepis_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nezumia stelgidolepis\WC_ANN_IDW_Nezumia_stelgidolepis_2019.tif
-WC_ANN_IDW_Nezumia_stelgidolepis_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nezumia stelgidolepis\WC_ANN_IDW_Nezumia_stelgidolepis_2021.tif
-WC_ANN_IDW_Nezumia_stelgidolepis_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Nezumia stelgidolepis\WC_ANN_IDW_Nezumia_stelgidolepis_2022.tif
-WC_ANN_IDW_Octopoteuthis_deletron_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Octopoteuthis deletron\WC_ANN_IDW_Octopoteuthis_deletron_2003.tif
-WC_ANN_IDW_Octopoteuthis_deletron_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:24:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Octopoteuthis deletron\WC_ANN_IDW_Octopoteuthis_deletron_2004.tif
-WC_ANN_IDW_Octopoteuthis_deletron_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Octopoteuthis deletron\WC_ANN_IDW_Octopoteuthis_deletron_2005.tif
-WC_ANN_IDW_Octopoteuthis_deletron_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Octopoteuthis deletron\WC_ANN_IDW_Octopoteuthis_deletron_2006.tif
-WC_ANN_IDW_Octopoteuthis_deletron_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Octopoteuthis deletron\WC_ANN_IDW_Octopoteuthis_deletron_2007.tif
-WC_ANN_IDW_Octopoteuthis_deletron_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Octopoteuthis deletron\WC_ANN_IDW_Octopoteuthis_deletron_2008.tif
-WC_ANN_IDW_Octopoteuthis_deletron_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Octopoteuthis deletron\WC_ANN_IDW_Octopoteuthis_deletron_2009.tif
-WC_ANN_IDW_Octopoteuthis_deletron_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Octopoteuthis deletron\WC_ANN_IDW_Octopoteuthis_deletron_2010.tif
-WC_ANN_IDW_Octopoteuthis_deletron_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Octopoteuthis deletron\WC_ANN_IDW_Octopoteuthis_deletron_2011.tif
-WC_ANN_IDW_Octopoteuthis_deletron_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Octopoteuthis deletron\WC_ANN_IDW_Octopoteuthis_deletron_2012.tif
-WC_ANN_IDW_Octopoteuthis_deletron_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Octopoteuthis deletron\WC_ANN_IDW_Octopoteuthis_deletron_2013.tif
-WC_ANN_IDW_Octopoteuthis_deletron_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Octopoteuthis deletron\WC_ANN_IDW_Octopoteuthis_deletron_2014.tif
-WC_ANN_IDW_Octopoteuthis_deletron_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Octopoteuthis deletron\WC_ANN_IDW_Octopoteuthis_deletron_2015.tif
-WC_ANN_IDW_Octopoteuthis_deletron_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Octopoteuthis deletron\WC_ANN_IDW_Octopoteuthis_deletron_2016.tif
-WC_ANN_IDW_Octopoteuthis_deletron_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Octopoteuthis deletron\WC_ANN_IDW_Octopoteuthis_deletron_2017.tif
-WC_ANN_IDW_Octopoteuthis_deletron_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Octopoteuthis deletron\WC_ANN_IDW_Octopoteuthis_deletron_2018.tif
-WC_ANN_IDW_Octopoteuthis_deletron_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Octopoteuthis deletron\WC_ANN_IDW_Octopoteuthis_deletron_2019.tif
-WC_ANN_IDW_Octopoteuthis_deletron_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Octopoteuthis deletron\WC_ANN_IDW_Octopoteuthis_deletron_2021.tif
-WC_ANN_IDW_Octopoteuthis_deletron_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Octopoteuthis deletron\WC_ANN_IDW_Octopoteuthis_deletron_2022.tif
-WC_ANN_IDW_Ophiodon_elongatus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Ophiodon elongatus\WC_ANN_IDW_Ophiodon_elongatus_2003.tif
-WC_ANN_IDW_Ophiodon_elongatus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Ophiodon elongatus\WC_ANN_IDW_Ophiodon_elongatus_2004.tif
-WC_ANN_IDW_Ophiodon_elongatus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Ophiodon elongatus\WC_ANN_IDW_Ophiodon_elongatus_2005.tif
-WC_ANN_IDW_Ophiodon_elongatus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Ophiodon elongatus\WC_ANN_IDW_Ophiodon_elongatus_2006.tif
-WC_ANN_IDW_Ophiodon_elongatus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Ophiodon elongatus\WC_ANN_IDW_Ophiodon_elongatus_2007.tif
-WC_ANN_IDW_Ophiodon_elongatus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Ophiodon elongatus\WC_ANN_IDW_Ophiodon_elongatus_2008.tif
-WC_ANN_IDW_Ophiodon_elongatus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Ophiodon elongatus\WC_ANN_IDW_Ophiodon_elongatus_2009.tif
-WC_ANN_IDW_Ophiodon_elongatus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Ophiodon elongatus\WC_ANN_IDW_Ophiodon_elongatus_2010.tif
-WC_ANN_IDW_Ophiodon_elongatus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Ophiodon elongatus\WC_ANN_IDW_Ophiodon_elongatus_2011.tif
-WC_ANN_IDW_Ophiodon_elongatus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Ophiodon elongatus\WC_ANN_IDW_Ophiodon_elongatus_2012.tif
-WC_ANN_IDW_Ophiodon_elongatus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Ophiodon elongatus\WC_ANN_IDW_Ophiodon_elongatus_2013.tif
-WC_ANN_IDW_Ophiodon_elongatus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Ophiodon elongatus\WC_ANN_IDW_Ophiodon_elongatus_2014.tif
-WC_ANN_IDW_Ophiodon_elongatus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Ophiodon elongatus\WC_ANN_IDW_Ophiodon_elongatus_2015.tif
-WC_ANN_IDW_Ophiodon_elongatus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Ophiodon elongatus\WC_ANN_IDW_Ophiodon_elongatus_2016.tif
-WC_ANN_IDW_Ophiodon_elongatus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Ophiodon elongatus\WC_ANN_IDW_Ophiodon_elongatus_2017.tif
-WC_ANN_IDW_Ophiodon_elongatus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Ophiodon elongatus\WC_ANN_IDW_Ophiodon_elongatus_2018.tif
-WC_ANN_IDW_Ophiodon_elongatus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Ophiodon elongatus\WC_ANN_IDW_Ophiodon_elongatus_2019.tif
-WC_ANN_IDW_Ophiodon_elongatus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Ophiodon elongatus\WC_ANN_IDW_Ophiodon_elongatus_2021.tif
-WC_ANN_IDW_Ophiodon_elongatus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Ophiodon elongatus\WC_ANN_IDW_Ophiodon_elongatus_2022.tif
-WC_ANN_IDW_Opisthoteuthis_californiana_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Opisthoteuthis californiana\WC_ANN_IDW_Opisthoteuthis_californiana_2003.tif
-WC_ANN_IDW_Opisthoteuthis_californiana_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Opisthoteuthis californiana\WC_ANN_IDW_Opisthoteuthis_californiana_2004.tif
-WC_ANN_IDW_Opisthoteuthis_californiana_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Opisthoteuthis californiana\WC_ANN_IDW_Opisthoteuthis_californiana_2005.tif
-WC_ANN_IDW_Opisthoteuthis_californiana_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Opisthoteuthis californiana\WC_ANN_IDW_Opisthoteuthis_californiana_2006.tif
-WC_ANN_IDW_Opisthoteuthis_californiana_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Opisthoteuthis californiana\WC_ANN_IDW_Opisthoteuthis_californiana_2007.tif
-WC_ANN_IDW_Opisthoteuthis_californiana_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Opisthoteuthis californiana\WC_ANN_IDW_Opisthoteuthis_californiana_2008.tif
-WC_ANN_IDW_Opisthoteuthis_californiana_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Opisthoteuthis californiana\WC_ANN_IDW_Opisthoteuthis_californiana_2009.tif
-WC_ANN_IDW_Opisthoteuthis_californiana_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Opisthoteuthis californiana\WC_ANN_IDW_Opisthoteuthis_californiana_2010.tif
-WC_ANN_IDW_Opisthoteuthis_californiana_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Opisthoteuthis californiana\WC_ANN_IDW_Opisthoteuthis_californiana_2011.tif
-WC_ANN_IDW_Opisthoteuthis_californiana_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Opisthoteuthis californiana\WC_ANN_IDW_Opisthoteuthis_californiana_2012.tif
-WC_ANN_IDW_Opisthoteuthis_californiana_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Opisthoteuthis californiana\WC_ANN_IDW_Opisthoteuthis_californiana_2013.tif
-WC_ANN_IDW_Opisthoteuthis_californiana_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Opisthoteuthis californiana\WC_ANN_IDW_Opisthoteuthis_californiana_2014.tif
-WC_ANN_IDW_Opisthoteuthis_californiana_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Opisthoteuthis californiana\WC_ANN_IDW_Opisthoteuthis_californiana_2015.tif
-WC_ANN_IDW_Opisthoteuthis_californiana_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Opisthoteuthis californiana\WC_ANN_IDW_Opisthoteuthis_californiana_2016.tif
-WC_ANN_IDW_Opisthoteuthis_californiana_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Opisthoteuthis californiana\WC_ANN_IDW_Opisthoteuthis_californiana_2017.tif
-WC_ANN_IDW_Opisthoteuthis_californiana_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Opisthoteuthis californiana\WC_ANN_IDW_Opisthoteuthis_californiana_2018.tif
-WC_ANN_IDW_Opisthoteuthis_californiana_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Opisthoteuthis californiana\WC_ANN_IDW_Opisthoteuthis_californiana_2019.tif
-WC_ANN_IDW_Opisthoteuthis_californiana_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Opisthoteuthis californiana\WC_ANN_IDW_Opisthoteuthis_californiana_2021.tif
-WC_ANN_IDW_Opisthoteuthis_californiana_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Opisthoteuthis californiana\WC_ANN_IDW_Opisthoteuthis_californiana_2022.tif
-WC_ANN_IDW_Pandalus_jordani_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus jordani\WC_ANN_IDW_Pandalus_jordani_2003.tif
-WC_ANN_IDW_Pandalus_jordani_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus jordani\WC_ANN_IDW_Pandalus_jordani_2004.tif
-WC_ANN_IDW_Pandalus_jordani_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus jordani\WC_ANN_IDW_Pandalus_jordani_2005.tif
-WC_ANN_IDW_Pandalus_jordani_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus jordani\WC_ANN_IDW_Pandalus_jordani_2006.tif
-WC_ANN_IDW_Pandalus_jordani_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus jordani\WC_ANN_IDW_Pandalus_jordani_2007.tif
-WC_ANN_IDW_Pandalus_jordani_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus jordani\WC_ANN_IDW_Pandalus_jordani_2008.tif
-WC_ANN_IDW_Pandalus_jordani_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus jordani\WC_ANN_IDW_Pandalus_jordani_2009.tif
-WC_ANN_IDW_Pandalus_jordani_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus jordani\WC_ANN_IDW_Pandalus_jordani_2010.tif
-WC_ANN_IDW_Pandalus_jordani_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus jordani\WC_ANN_IDW_Pandalus_jordani_2011.tif
-WC_ANN_IDW_Pandalus_jordani_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus jordani\WC_ANN_IDW_Pandalus_jordani_2012.tif
-WC_ANN_IDW_Pandalus_jordani_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus jordani\WC_ANN_IDW_Pandalus_jordani_2013.tif
-WC_ANN_IDW_Pandalus_jordani_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus jordani\WC_ANN_IDW_Pandalus_jordani_2014.tif
-WC_ANN_IDW_Pandalus_jordani_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus jordani\WC_ANN_IDW_Pandalus_jordani_2015.tif
-WC_ANN_IDW_Pandalus_jordani_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus jordani\WC_ANN_IDW_Pandalus_jordani_2016.tif
-WC_ANN_IDW_Pandalus_jordani_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus jordani\WC_ANN_IDW_Pandalus_jordani_2017.tif
-WC_ANN_IDW_Pandalus_jordani_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus jordani\WC_ANN_IDW_Pandalus_jordani_2018.tif
-WC_ANN_IDW_Pandalus_jordani_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus jordani\WC_ANN_IDW_Pandalus_jordani_2019.tif
-WC_ANN_IDW_Pandalus_jordani_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus jordani\WC_ANN_IDW_Pandalus_jordani_2021.tif
-WC_ANN_IDW_Pandalus_jordani_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus jordani\WC_ANN_IDW_Pandalus_jordani_2022.tif
-WC_ANN_IDW_Pandalus_platyceros_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus platyceros\WC_ANN_IDW_Pandalus_platyceros_2003.tif
-WC_ANN_IDW_Pandalus_platyceros_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus platyceros\WC_ANN_IDW_Pandalus_platyceros_2004.tif
-WC_ANN_IDW_Pandalus_platyceros_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus platyceros\WC_ANN_IDW_Pandalus_platyceros_2005.tif
-WC_ANN_IDW_Pandalus_platyceros_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus platyceros\WC_ANN_IDW_Pandalus_platyceros_2006.tif
-WC_ANN_IDW_Pandalus_platyceros_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus platyceros\WC_ANN_IDW_Pandalus_platyceros_2007.tif
-WC_ANN_IDW_Pandalus_platyceros_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus platyceros\WC_ANN_IDW_Pandalus_platyceros_2008.tif
-WC_ANN_IDW_Pandalus_platyceros_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus platyceros\WC_ANN_IDW_Pandalus_platyceros_2009.tif
-WC_ANN_IDW_Pandalus_platyceros_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus platyceros\WC_ANN_IDW_Pandalus_platyceros_2010.tif
-WC_ANN_IDW_Pandalus_platyceros_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus platyceros\WC_ANN_IDW_Pandalus_platyceros_2011.tif
-WC_ANN_IDW_Pandalus_platyceros_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus platyceros\WC_ANN_IDW_Pandalus_platyceros_2012.tif
-WC_ANN_IDW_Pandalus_platyceros_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus platyceros\WC_ANN_IDW_Pandalus_platyceros_2013.tif
-WC_ANN_IDW_Pandalus_platyceros_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus platyceros\WC_ANN_IDW_Pandalus_platyceros_2014.tif
-WC_ANN_IDW_Pandalus_platyceros_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus platyceros\WC_ANN_IDW_Pandalus_platyceros_2015.tif
-WC_ANN_IDW_Pandalus_platyceros_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus platyceros\WC_ANN_IDW_Pandalus_platyceros_2016.tif
-WC_ANN_IDW_Pandalus_platyceros_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus platyceros\WC_ANN_IDW_Pandalus_platyceros_2017.tif
-WC_ANN_IDW_Pandalus_platyceros_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus platyceros\WC_ANN_IDW_Pandalus_platyceros_2018.tif
-WC_ANN_IDW_Pandalus_platyceros_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus platyceros\WC_ANN_IDW_Pandalus_platyceros_2019.tif
-WC_ANN_IDW_Pandalus_platyceros_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus platyceros\WC_ANN_IDW_Pandalus_platyceros_2021.tif
-WC_ANN_IDW_Pandalus_platyceros_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pandalus platyceros\WC_ANN_IDW_Pandalus_platyceros_2022.tif
-WC_ANN_IDW_Parmaturus_xaniurus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parmaturus xaniurus\WC_ANN_IDW_Parmaturus_xaniurus_2003.tif
-WC_ANN_IDW_Parmaturus_xaniurus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parmaturus xaniurus\WC_ANN_IDW_Parmaturus_xaniurus_2004.tif
-WC_ANN_IDW_Parmaturus_xaniurus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parmaturus xaniurus\WC_ANN_IDW_Parmaturus_xaniurus_2005.tif
-WC_ANN_IDW_Parmaturus_xaniurus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parmaturus xaniurus\WC_ANN_IDW_Parmaturus_xaniurus_2006.tif
-WC_ANN_IDW_Parmaturus_xaniurus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parmaturus xaniurus\WC_ANN_IDW_Parmaturus_xaniurus_2007.tif
-WC_ANN_IDW_Parmaturus_xaniurus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parmaturus xaniurus\WC_ANN_IDW_Parmaturus_xaniurus_2008.tif
-WC_ANN_IDW_Parmaturus_xaniurus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parmaturus xaniurus\WC_ANN_IDW_Parmaturus_xaniurus_2009.tif
-WC_ANN_IDW_Parmaturus_xaniurus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parmaturus xaniurus\WC_ANN_IDW_Parmaturus_xaniurus_2010.tif
-WC_ANN_IDW_Parmaturus_xaniurus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parmaturus xaniurus\WC_ANN_IDW_Parmaturus_xaniurus_2011.tif
-WC_ANN_IDW_Parmaturus_xaniurus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parmaturus xaniurus\WC_ANN_IDW_Parmaturus_xaniurus_2012.tif
-WC_ANN_IDW_Parmaturus_xaniurus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parmaturus xaniurus\WC_ANN_IDW_Parmaturus_xaniurus_2013.tif
-WC_ANN_IDW_Parmaturus_xaniurus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parmaturus xaniurus\WC_ANN_IDW_Parmaturus_xaniurus_2014.tif
-WC_ANN_IDW_Parmaturus_xaniurus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parmaturus xaniurus\WC_ANN_IDW_Parmaturus_xaniurus_2015.tif
-WC_ANN_IDW_Parmaturus_xaniurus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parmaturus xaniurus\WC_ANN_IDW_Parmaturus_xaniurus_2016.tif
-WC_ANN_IDW_Parmaturus_xaniurus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parmaturus xaniurus\WC_ANN_IDW_Parmaturus_xaniurus_2017.tif
-WC_ANN_IDW_Parmaturus_xaniurus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parmaturus xaniurus\WC_ANN_IDW_Parmaturus_xaniurus_2018.tif
-WC_ANN_IDW_Parmaturus_xaniurus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parmaturus xaniurus\WC_ANN_IDW_Parmaturus_xaniurus_2019.tif
-WC_ANN_IDW_Parmaturus_xaniurus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parmaturus xaniurus\WC_ANN_IDW_Parmaturus_xaniurus_2021.tif
-WC_ANN_IDW_Parmaturus_xaniurus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parmaturus xaniurus\WC_ANN_IDW_Parmaturus_xaniurus_2022.tif
-WC_ANN_IDW_Parophrys_vetulus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parophrys vetulus\WC_ANN_IDW_Parophrys_vetulus_2003.tif
-WC_ANN_IDW_Parophrys_vetulus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parophrys vetulus\WC_ANN_IDW_Parophrys_vetulus_2004.tif
-WC_ANN_IDW_Parophrys_vetulus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parophrys vetulus\WC_ANN_IDW_Parophrys_vetulus_2005.tif
-WC_ANN_IDW_Parophrys_vetulus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parophrys vetulus\WC_ANN_IDW_Parophrys_vetulus_2006.tif
-WC_ANN_IDW_Parophrys_vetulus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parophrys vetulus\WC_ANN_IDW_Parophrys_vetulus_2007.tif
-WC_ANN_IDW_Parophrys_vetulus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parophrys vetulus\WC_ANN_IDW_Parophrys_vetulus_2008.tif
-WC_ANN_IDW_Parophrys_vetulus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parophrys vetulus\WC_ANN_IDW_Parophrys_vetulus_2009.tif
-WC_ANN_IDW_Parophrys_vetulus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parophrys vetulus\WC_ANN_IDW_Parophrys_vetulus_2010.tif
-WC_ANN_IDW_Parophrys_vetulus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parophrys vetulus\WC_ANN_IDW_Parophrys_vetulus_2011.tif
-WC_ANN_IDW_Parophrys_vetulus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parophrys vetulus\WC_ANN_IDW_Parophrys_vetulus_2012.tif
-WC_ANN_IDW_Parophrys_vetulus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parophrys vetulus\WC_ANN_IDW_Parophrys_vetulus_2013.tif
-WC_ANN_IDW_Parophrys_vetulus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parophrys vetulus\WC_ANN_IDW_Parophrys_vetulus_2014.tif
-WC_ANN_IDW_Parophrys_vetulus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parophrys vetulus\WC_ANN_IDW_Parophrys_vetulus_2015.tif
-WC_ANN_IDW_Parophrys_vetulus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parophrys vetulus\WC_ANN_IDW_Parophrys_vetulus_2016.tif
-WC_ANN_IDW_Parophrys_vetulus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parophrys vetulus\WC_ANN_IDW_Parophrys_vetulus_2017.tif
-WC_ANN_IDW_Parophrys_vetulus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parophrys vetulus\WC_ANN_IDW_Parophrys_vetulus_2018.tif
-WC_ANN_IDW_Parophrys_vetulus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parophrys vetulus\WC_ANN_IDW_Parophrys_vetulus_2019.tif
-WC_ANN_IDW_Parophrys_vetulus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parophrys vetulus\WC_ANN_IDW_Parophrys_vetulus_2021.tif
-WC_ANN_IDW_Parophrys_vetulus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Parophrys vetulus\WC_ANN_IDW_Parophrys_vetulus_2022.tif
-WC_ANN_IDW_Pasiphaea_pacifica_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea pacifica\WC_ANN_IDW_Pasiphaea_pacifica_2003.tif
-WC_ANN_IDW_Pasiphaea_pacifica_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea pacifica\WC_ANN_IDW_Pasiphaea_pacifica_2004.tif
-WC_ANN_IDW_Pasiphaea_pacifica_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea pacifica\WC_ANN_IDW_Pasiphaea_pacifica_2005.tif
-WC_ANN_IDW_Pasiphaea_pacifica_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea pacifica\WC_ANN_IDW_Pasiphaea_pacifica_2006.tif
-WC_ANN_IDW_Pasiphaea_pacifica_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea pacifica\WC_ANN_IDW_Pasiphaea_pacifica_2007.tif
-WC_ANN_IDW_Pasiphaea_pacifica_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea pacifica\WC_ANN_IDW_Pasiphaea_pacifica_2008.tif
-WC_ANN_IDW_Pasiphaea_pacifica_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea pacifica\WC_ANN_IDW_Pasiphaea_pacifica_2009.tif
-WC_ANN_IDW_Pasiphaea_pacifica_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea pacifica\WC_ANN_IDW_Pasiphaea_pacifica_2010.tif
-WC_ANN_IDW_Pasiphaea_pacifica_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea pacifica\WC_ANN_IDW_Pasiphaea_pacifica_2011.tif
-WC_ANN_IDW_Pasiphaea_pacifica_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea pacifica\WC_ANN_IDW_Pasiphaea_pacifica_2012.tif
-WC_ANN_IDW_Pasiphaea_pacifica_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea pacifica\WC_ANN_IDW_Pasiphaea_pacifica_2013.tif
-WC_ANN_IDW_Pasiphaea_pacifica_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea pacifica\WC_ANN_IDW_Pasiphaea_pacifica_2014.tif
-WC_ANN_IDW_Pasiphaea_pacifica_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea pacifica\WC_ANN_IDW_Pasiphaea_pacifica_2015.tif
-WC_ANN_IDW_Pasiphaea_pacifica_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea pacifica\WC_ANN_IDW_Pasiphaea_pacifica_2016.tif
-WC_ANN_IDW_Pasiphaea_pacifica_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea pacifica\WC_ANN_IDW_Pasiphaea_pacifica_2017.tif
-WC_ANN_IDW_Pasiphaea_pacifica_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea pacifica\WC_ANN_IDW_Pasiphaea_pacifica_2018.tif
-WC_ANN_IDW_Pasiphaea_pacifica_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea pacifica\WC_ANN_IDW_Pasiphaea_pacifica_2019.tif
-WC_ANN_IDW_Pasiphaea_pacifica_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea pacifica\WC_ANN_IDW_Pasiphaea_pacifica_2021.tif
-WC_ANN_IDW_Pasiphaea_pacifica_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea pacifica\WC_ANN_IDW_Pasiphaea_pacifica_2022.tif
-WC_ANN_IDW_Pasiphaea_tarda_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea tarda\WC_ANN_IDW_Pasiphaea_tarda_2003.tif
-WC_ANN_IDW_Pasiphaea_tarda_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea tarda\WC_ANN_IDW_Pasiphaea_tarda_2004.tif
-WC_ANN_IDW_Pasiphaea_tarda_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea tarda\WC_ANN_IDW_Pasiphaea_tarda_2005.tif
-WC_ANN_IDW_Pasiphaea_tarda_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea tarda\WC_ANN_IDW_Pasiphaea_tarda_2006.tif
-WC_ANN_IDW_Pasiphaea_tarda_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea tarda\WC_ANN_IDW_Pasiphaea_tarda_2007.tif
-WC_ANN_IDW_Pasiphaea_tarda_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea tarda\WC_ANN_IDW_Pasiphaea_tarda_2008.tif
-WC_ANN_IDW_Pasiphaea_tarda_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea tarda\WC_ANN_IDW_Pasiphaea_tarda_2009.tif
-WC_ANN_IDW_Pasiphaea_tarda_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea tarda\WC_ANN_IDW_Pasiphaea_tarda_2010.tif
-WC_ANN_IDW_Pasiphaea_tarda_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea tarda\WC_ANN_IDW_Pasiphaea_tarda_2011.tif
-WC_ANN_IDW_Pasiphaea_tarda_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea tarda\WC_ANN_IDW_Pasiphaea_tarda_2012.tif
-WC_ANN_IDW_Pasiphaea_tarda_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea tarda\WC_ANN_IDW_Pasiphaea_tarda_2013.tif
-WC_ANN_IDW_Pasiphaea_tarda_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea tarda\WC_ANN_IDW_Pasiphaea_tarda_2014.tif
-WC_ANN_IDW_Pasiphaea_tarda_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea tarda\WC_ANN_IDW_Pasiphaea_tarda_2015.tif
-WC_ANN_IDW_Pasiphaea_tarda_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea tarda\WC_ANN_IDW_Pasiphaea_tarda_2016.tif
-WC_ANN_IDW_Pasiphaea_tarda_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea tarda\WC_ANN_IDW_Pasiphaea_tarda_2017.tif
-WC_ANN_IDW_Pasiphaea_tarda_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea tarda\WC_ANN_IDW_Pasiphaea_tarda_2018.tif
-WC_ANN_IDW_Pasiphaea_tarda_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea tarda\WC_ANN_IDW_Pasiphaea_tarda_2019.tif
-WC_ANN_IDW_Pasiphaea_tarda_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea tarda\WC_ANN_IDW_Pasiphaea_tarda_2021.tif
-WC_ANN_IDW_Pasiphaea_tarda_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pasiphaea tarda\WC_ANN_IDW_Pasiphaea_tarda_2022.tif
-WC_ANN_IDW_Platymera_gaudichaudii_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Platymera gaudichaudii\WC_ANN_IDW_Platymera_gaudichaudii_2003.tif
-WC_ANN_IDW_Platymera_gaudichaudii_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Platymera gaudichaudii\WC_ANN_IDW_Platymera_gaudichaudii_2004.tif
-WC_ANN_IDW_Platymera_gaudichaudii_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Platymera gaudichaudii\WC_ANN_IDW_Platymera_gaudichaudii_2005.tif
-WC_ANN_IDW_Platymera_gaudichaudii_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Platymera gaudichaudii\WC_ANN_IDW_Platymera_gaudichaudii_2006.tif
-WC_ANN_IDW_Platymera_gaudichaudii_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Platymera gaudichaudii\WC_ANN_IDW_Platymera_gaudichaudii_2007.tif
-WC_ANN_IDW_Platymera_gaudichaudii_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Platymera gaudichaudii\WC_ANN_IDW_Platymera_gaudichaudii_2008.tif
-WC_ANN_IDW_Platymera_gaudichaudii_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Platymera gaudichaudii\WC_ANN_IDW_Platymera_gaudichaudii_2009.tif
-WC_ANN_IDW_Platymera_gaudichaudii_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Platymera gaudichaudii\WC_ANN_IDW_Platymera_gaudichaudii_2010.tif
-WC_ANN_IDW_Platymera_gaudichaudii_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Platymera gaudichaudii\WC_ANN_IDW_Platymera_gaudichaudii_2011.tif
-WC_ANN_IDW_Platymera_gaudichaudii_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Platymera gaudichaudii\WC_ANN_IDW_Platymera_gaudichaudii_2012.tif
-WC_ANN_IDW_Platymera_gaudichaudii_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Platymera gaudichaudii\WC_ANN_IDW_Platymera_gaudichaudii_2013.tif
-WC_ANN_IDW_Platymera_gaudichaudii_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Platymera gaudichaudii\WC_ANN_IDW_Platymera_gaudichaudii_2014.tif
-WC_ANN_IDW_Platymera_gaudichaudii_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Platymera gaudichaudii\WC_ANN_IDW_Platymera_gaudichaudii_2015.tif
-WC_ANN_IDW_Platymera_gaudichaudii_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Platymera gaudichaudii\WC_ANN_IDW_Platymera_gaudichaudii_2016.tif
-WC_ANN_IDW_Platymera_gaudichaudii_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Platymera gaudichaudii\WC_ANN_IDW_Platymera_gaudichaudii_2017.tif
-WC_ANN_IDW_Platymera_gaudichaudii_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Platymera gaudichaudii\WC_ANN_IDW_Platymera_gaudichaudii_2018.tif
-WC_ANN_IDW_Platymera_gaudichaudii_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Platymera gaudichaudii\WC_ANN_IDW_Platymera_gaudichaudii_2019.tif
-WC_ANN_IDW_Platymera_gaudichaudii_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Platymera gaudichaudii\WC_ANN_IDW_Platymera_gaudichaudii_2021.tif
-WC_ANN_IDW_Platymera_gaudichaudii_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Platymera gaudichaudii\WC_ANN_IDW_Platymera_gaudichaudii_2022.tif
-WC_ANN_IDW_Pleurobranchaea_californica_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleurobranchaea californica\WC_ANN_IDW_Pleurobranchaea_californica_2003.tif
-WC_ANN_IDW_Pleurobranchaea_californica_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleurobranchaea californica\WC_ANN_IDW_Pleurobranchaea_californica_2004.tif
-WC_ANN_IDW_Pleurobranchaea_californica_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleurobranchaea californica\WC_ANN_IDW_Pleurobranchaea_californica_2005.tif
-WC_ANN_IDW_Pleurobranchaea_californica_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleurobranchaea californica\WC_ANN_IDW_Pleurobranchaea_californica_2006.tif
-WC_ANN_IDW_Pleurobranchaea_californica_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleurobranchaea californica\WC_ANN_IDW_Pleurobranchaea_californica_2007.tif
-WC_ANN_IDW_Pleurobranchaea_californica_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleurobranchaea californica\WC_ANN_IDW_Pleurobranchaea_californica_2008.tif
-WC_ANN_IDW_Pleurobranchaea_californica_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleurobranchaea californica\WC_ANN_IDW_Pleurobranchaea_californica_2009.tif
-WC_ANN_IDW_Pleurobranchaea_californica_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleurobranchaea californica\WC_ANN_IDW_Pleurobranchaea_californica_2010.tif
-WC_ANN_IDW_Pleurobranchaea_californica_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleurobranchaea californica\WC_ANN_IDW_Pleurobranchaea_californica_2011.tif
-WC_ANN_IDW_Pleurobranchaea_californica_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleurobranchaea californica\WC_ANN_IDW_Pleurobranchaea_californica_2012.tif
-WC_ANN_IDW_Pleurobranchaea_californica_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleurobranchaea californica\WC_ANN_IDW_Pleurobranchaea_californica_2013.tif
-WC_ANN_IDW_Pleurobranchaea_californica_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleurobranchaea californica\WC_ANN_IDW_Pleurobranchaea_californica_2014.tif
-WC_ANN_IDW_Pleurobranchaea_californica_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleurobranchaea californica\WC_ANN_IDW_Pleurobranchaea_californica_2015.tif
-WC_ANN_IDW_Pleurobranchaea_californica_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleurobranchaea californica\WC_ANN_IDW_Pleurobranchaea_californica_2016.tif
-WC_ANN_IDW_Pleurobranchaea_californica_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleurobranchaea californica\WC_ANN_IDW_Pleurobranchaea_californica_2017.tif
-WC_ANN_IDW_Pleurobranchaea_californica_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleurobranchaea californica\WC_ANN_IDW_Pleurobranchaea_californica_2018.tif
-WC_ANN_IDW_Pleurobranchaea_californica_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleurobranchaea californica\WC_ANN_IDW_Pleurobranchaea_californica_2019.tif
-WC_ANN_IDW_Pleurobranchaea_californica_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleurobranchaea californica\WC_ANN_IDW_Pleurobranchaea_californica_2021.tif
-WC_ANN_IDW_Pleurobranchaea_californica_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleurobranchaea californica\WC_ANN_IDW_Pleurobranchaea_californica_2022.tif
-WC_ANN_IDW_Pleuronichthys_decurrens_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleuronichthys decurrens\WC_ANN_IDW_Pleuronichthys_decurrens_2003.tif
-WC_ANN_IDW_Pleuronichthys_decurrens_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleuronichthys decurrens\WC_ANN_IDW_Pleuronichthys_decurrens_2004.tif
-WC_ANN_IDW_Pleuronichthys_decurrens_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleuronichthys decurrens\WC_ANN_IDW_Pleuronichthys_decurrens_2005.tif
-WC_ANN_IDW_Pleuronichthys_decurrens_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleuronichthys decurrens\WC_ANN_IDW_Pleuronichthys_decurrens_2006.tif
-WC_ANN_IDW_Pleuronichthys_decurrens_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleuronichthys decurrens\WC_ANN_IDW_Pleuronichthys_decurrens_2007.tif
-WC_ANN_IDW_Pleuronichthys_decurrens_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleuronichthys decurrens\WC_ANN_IDW_Pleuronichthys_decurrens_2008.tif
-WC_ANN_IDW_Pleuronichthys_decurrens_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleuronichthys decurrens\WC_ANN_IDW_Pleuronichthys_decurrens_2009.tif
-WC_ANN_IDW_Pleuronichthys_decurrens_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleuronichthys decurrens\WC_ANN_IDW_Pleuronichthys_decurrens_2010.tif
-WC_ANN_IDW_Pleuronichthys_decurrens_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleuronichthys decurrens\WC_ANN_IDW_Pleuronichthys_decurrens_2011.tif
-WC_ANN_IDW_Pleuronichthys_decurrens_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleuronichthys decurrens\WC_ANN_IDW_Pleuronichthys_decurrens_2012.tif
-WC_ANN_IDW_Pleuronichthys_decurrens_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleuronichthys decurrens\WC_ANN_IDW_Pleuronichthys_decurrens_2013.tif
-WC_ANN_IDW_Pleuronichthys_decurrens_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleuronichthys decurrens\WC_ANN_IDW_Pleuronichthys_decurrens_2014.tif
-WC_ANN_IDW_Pleuronichthys_decurrens_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleuronichthys decurrens\WC_ANN_IDW_Pleuronichthys_decurrens_2015.tif
-WC_ANN_IDW_Pleuronichthys_decurrens_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleuronichthys decurrens\WC_ANN_IDW_Pleuronichthys_decurrens_2016.tif
-WC_ANN_IDW_Pleuronichthys_decurrens_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleuronichthys decurrens\WC_ANN_IDW_Pleuronichthys_decurrens_2017.tif
-WC_ANN_IDW_Pleuronichthys_decurrens_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleuronichthys decurrens\WC_ANN_IDW_Pleuronichthys_decurrens_2018.tif
-WC_ANN_IDW_Pleuronichthys_decurrens_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleuronichthys decurrens\WC_ANN_IDW_Pleuronichthys_decurrens_2019.tif
-WC_ANN_IDW_Pleuronichthys_decurrens_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleuronichthys decurrens\WC_ANN_IDW_Pleuronichthys_decurrens_2021.tif
-WC_ANN_IDW_Pleuronichthys_decurrens_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pleuronichthys decurrens\WC_ANN_IDW_Pleuronichthys_decurrens_2022.tif
-WC_ANN_IDW_Porichthys_notatus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Porichthys notatus\WC_ANN_IDW_Porichthys_notatus_2003.tif
-WC_ANN_IDW_Porichthys_notatus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Porichthys notatus\WC_ANN_IDW_Porichthys_notatus_2004.tif
-WC_ANN_IDW_Porichthys_notatus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Porichthys notatus\WC_ANN_IDW_Porichthys_notatus_2005.tif
-WC_ANN_IDW_Porichthys_notatus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Porichthys notatus\WC_ANN_IDW_Porichthys_notatus_2006.tif
-WC_ANN_IDW_Porichthys_notatus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Porichthys notatus\WC_ANN_IDW_Porichthys_notatus_2007.tif
-WC_ANN_IDW_Porichthys_notatus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Porichthys notatus\WC_ANN_IDW_Porichthys_notatus_2008.tif
-WC_ANN_IDW_Porichthys_notatus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Porichthys notatus\WC_ANN_IDW_Porichthys_notatus_2009.tif
-WC_ANN_IDW_Porichthys_notatus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Porichthys notatus\WC_ANN_IDW_Porichthys_notatus_2010.tif
-WC_ANN_IDW_Porichthys_notatus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Porichthys notatus\WC_ANN_IDW_Porichthys_notatus_2011.tif
-WC_ANN_IDW_Porichthys_notatus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Porichthys notatus\WC_ANN_IDW_Porichthys_notatus_2012.tif
-WC_ANN_IDW_Porichthys_notatus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Porichthys notatus\WC_ANN_IDW_Porichthys_notatus_2013.tif
-WC_ANN_IDW_Porichthys_notatus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Porichthys notatus\WC_ANN_IDW_Porichthys_notatus_2014.tif
-WC_ANN_IDW_Porichthys_notatus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Porichthys notatus\WC_ANN_IDW_Porichthys_notatus_2015.tif
-WC_ANN_IDW_Porichthys_notatus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Porichthys notatus\WC_ANN_IDW_Porichthys_notatus_2016.tif
-WC_ANN_IDW_Porichthys_notatus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Porichthys notatus\WC_ANN_IDW_Porichthys_notatus_2017.tif
-WC_ANN_IDW_Porichthys_notatus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Porichthys notatus\WC_ANN_IDW_Porichthys_notatus_2018.tif
-WC_ANN_IDW_Porichthys_notatus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Porichthys notatus\WC_ANN_IDW_Porichthys_notatus_2019.tif
-WC_ANN_IDW_Porichthys_notatus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Porichthys notatus\WC_ANN_IDW_Porichthys_notatus_2021.tif
-WC_ANN_IDW_Porichthys_notatus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Porichthys notatus\WC_ANN_IDW_Porichthys_notatus_2022.tif
-WC_ANN_IDW_Pseudostichopus_mollis_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pseudostichopus mollis\WC_ANN_IDW_Pseudostichopus_mollis_2003.tif
-WC_ANN_IDW_Pseudostichopus_mollis_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pseudostichopus mollis\WC_ANN_IDW_Pseudostichopus_mollis_2004.tif
-WC_ANN_IDW_Pseudostichopus_mollis_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pseudostichopus mollis\WC_ANN_IDW_Pseudostichopus_mollis_2005.tif
-WC_ANN_IDW_Pseudostichopus_mollis_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pseudostichopus mollis\WC_ANN_IDW_Pseudostichopus_mollis_2006.tif
-WC_ANN_IDW_Pseudostichopus_mollis_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pseudostichopus mollis\WC_ANN_IDW_Pseudostichopus_mollis_2007.tif
-WC_ANN_IDW_Pseudostichopus_mollis_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pseudostichopus mollis\WC_ANN_IDW_Pseudostichopus_mollis_2008.tif
-WC_ANN_IDW_Pseudostichopus_mollis_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pseudostichopus mollis\WC_ANN_IDW_Pseudostichopus_mollis_2009.tif
-WC_ANN_IDW_Pseudostichopus_mollis_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pseudostichopus mollis\WC_ANN_IDW_Pseudostichopus_mollis_2010.tif
-WC_ANN_IDW_Pseudostichopus_mollis_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pseudostichopus mollis\WC_ANN_IDW_Pseudostichopus_mollis_2011.tif
-WC_ANN_IDW_Pseudostichopus_mollis_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pseudostichopus mollis\WC_ANN_IDW_Pseudostichopus_mollis_2012.tif
-WC_ANN_IDW_Pseudostichopus_mollis_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pseudostichopus mollis\WC_ANN_IDW_Pseudostichopus_mollis_2013.tif
-WC_ANN_IDW_Pseudostichopus_mollis_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pseudostichopus mollis\WC_ANN_IDW_Pseudostichopus_mollis_2014.tif
-WC_ANN_IDW_Pseudostichopus_mollis_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pseudostichopus mollis\WC_ANN_IDW_Pseudostichopus_mollis_2015.tif
-WC_ANN_IDW_Pseudostichopus_mollis_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pseudostichopus mollis\WC_ANN_IDW_Pseudostichopus_mollis_2016.tif
-WC_ANN_IDW_Pseudostichopus_mollis_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pseudostichopus mollis\WC_ANN_IDW_Pseudostichopus_mollis_2017.tif
-WC_ANN_IDW_Pseudostichopus_mollis_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pseudostichopus mollis\WC_ANN_IDW_Pseudostichopus_mollis_2018.tif
-WC_ANN_IDW_Pseudostichopus_mollis_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pseudostichopus mollis\WC_ANN_IDW_Pseudostichopus_mollis_2019.tif
-WC_ANN_IDW_Pseudostichopus_mollis_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pseudostichopus mollis\WC_ANN_IDW_Pseudostichopus_mollis_2021.tif
-WC_ANN_IDW_Pseudostichopus_mollis_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Pseudostichopus mollis\WC_ANN_IDW_Pseudostichopus_mollis_2022.tif
-WC_ANN_IDW_Rathbunaster_californicus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rathbunaster californicus\WC_ANN_IDW_Rathbunaster_californicus_2003.tif
-WC_ANN_IDW_Rathbunaster_californicus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rathbunaster californicus\WC_ANN_IDW_Rathbunaster_californicus_2004.tif
-WC_ANN_IDW_Rathbunaster_californicus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rathbunaster californicus\WC_ANN_IDW_Rathbunaster_californicus_2005.tif
-WC_ANN_IDW_Rathbunaster_californicus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rathbunaster californicus\WC_ANN_IDW_Rathbunaster_californicus_2006.tif
-WC_ANN_IDW_Rathbunaster_californicus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rathbunaster californicus\WC_ANN_IDW_Rathbunaster_californicus_2007.tif
-WC_ANN_IDW_Rathbunaster_californicus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rathbunaster californicus\WC_ANN_IDW_Rathbunaster_californicus_2008.tif
-WC_ANN_IDW_Rathbunaster_californicus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rathbunaster californicus\WC_ANN_IDW_Rathbunaster_californicus_2009.tif
-WC_ANN_IDW_Rathbunaster_californicus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rathbunaster californicus\WC_ANN_IDW_Rathbunaster_californicus_2010.tif
-WC_ANN_IDW_Rathbunaster_californicus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rathbunaster californicus\WC_ANN_IDW_Rathbunaster_californicus_2011.tif
-WC_ANN_IDW_Rathbunaster_californicus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rathbunaster californicus\WC_ANN_IDW_Rathbunaster_californicus_2012.tif
-WC_ANN_IDW_Rathbunaster_californicus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rathbunaster californicus\WC_ANN_IDW_Rathbunaster_californicus_2013.tif
-WC_ANN_IDW_Rathbunaster_californicus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rathbunaster californicus\WC_ANN_IDW_Rathbunaster_californicus_2014.tif
-WC_ANN_IDW_Rathbunaster_californicus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rathbunaster californicus\WC_ANN_IDW_Rathbunaster_californicus_2015.tif
-WC_ANN_IDW_Rathbunaster_californicus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rathbunaster californicus\WC_ANN_IDW_Rathbunaster_californicus_2016.tif
-WC_ANN_IDW_Rathbunaster_californicus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rathbunaster californicus\WC_ANN_IDW_Rathbunaster_californicus_2017.tif
-WC_ANN_IDW_Rathbunaster_californicus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rathbunaster californicus\WC_ANN_IDW_Rathbunaster_californicus_2018.tif
-WC_ANN_IDW_Rathbunaster_californicus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rathbunaster californicus\WC_ANN_IDW_Rathbunaster_californicus_2019.tif
-WC_ANN_IDW_Rathbunaster_californicus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rathbunaster californicus\WC_ANN_IDW_Rathbunaster_californicus_2021.tif
-WC_ANN_IDW_Rathbunaster_californicus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rathbunaster californicus\WC_ANN_IDW_Rathbunaster_californicus_2022.tif
-WC_ANN_IDW_Rossia_pacifica_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rossia pacifica\WC_ANN_IDW_Rossia_pacifica_2003.tif
-WC_ANN_IDW_Rossia_pacifica_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rossia pacifica\WC_ANN_IDW_Rossia_pacifica_2004.tif
-WC_ANN_IDW_Rossia_pacifica_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rossia pacifica\WC_ANN_IDW_Rossia_pacifica_2005.tif
-WC_ANN_IDW_Rossia_pacifica_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rossia pacifica\WC_ANN_IDW_Rossia_pacifica_2006.tif
-WC_ANN_IDW_Rossia_pacifica_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rossia pacifica\WC_ANN_IDW_Rossia_pacifica_2007.tif
-WC_ANN_IDW_Rossia_pacifica_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rossia pacifica\WC_ANN_IDW_Rossia_pacifica_2008.tif
-WC_ANN_IDW_Rossia_pacifica_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rossia pacifica\WC_ANN_IDW_Rossia_pacifica_2009.tif
-WC_ANN_IDW_Rossia_pacifica_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rossia pacifica\WC_ANN_IDW_Rossia_pacifica_2010.tif
-WC_ANN_IDW_Rossia_pacifica_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rossia pacifica\WC_ANN_IDW_Rossia_pacifica_2011.tif
-WC_ANN_IDW_Rossia_pacifica_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rossia pacifica\WC_ANN_IDW_Rossia_pacifica_2012.tif
-WC_ANN_IDW_Rossia_pacifica_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rossia pacifica\WC_ANN_IDW_Rossia_pacifica_2013.tif
-WC_ANN_IDW_Rossia_pacifica_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rossia pacifica\WC_ANN_IDW_Rossia_pacifica_2014.tif
-WC_ANN_IDW_Rossia_pacifica_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rossia pacifica\WC_ANN_IDW_Rossia_pacifica_2015.tif
-WC_ANN_IDW_Rossia_pacifica_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rossia pacifica\WC_ANN_IDW_Rossia_pacifica_2016.tif
-WC_ANN_IDW_Rossia_pacifica_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rossia pacifica\WC_ANN_IDW_Rossia_pacifica_2017.tif
-WC_ANN_IDW_Rossia_pacifica_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rossia pacifica\WC_ANN_IDW_Rossia_pacifica_2018.tif
-WC_ANN_IDW_Rossia_pacifica_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rossia pacifica\WC_ANN_IDW_Rossia_pacifica_2019.tif
-WC_ANN_IDW_Rossia_pacifica_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rossia pacifica\WC_ANN_IDW_Rossia_pacifica_2021.tif
-WC_ANN_IDW_Rossia_pacifica_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Rossia pacifica\WC_ANN_IDW_Rossia_pacifica_2022.tif
-WC_ANN_IDW_Sagenaster_evermanni_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sagenaster evermanni\WC_ANN_IDW_Sagenaster_evermanni_2003.tif
-WC_ANN_IDW_Sagenaster_evermanni_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sagenaster evermanni\WC_ANN_IDW_Sagenaster_evermanni_2004.tif
-WC_ANN_IDW_Sagenaster_evermanni_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sagenaster evermanni\WC_ANN_IDW_Sagenaster_evermanni_2005.tif
-WC_ANN_IDW_Sagenaster_evermanni_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sagenaster evermanni\WC_ANN_IDW_Sagenaster_evermanni_2006.tif
-WC_ANN_IDW_Sagenaster_evermanni_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sagenaster evermanni\WC_ANN_IDW_Sagenaster_evermanni_2007.tif
-WC_ANN_IDW_Sagenaster_evermanni_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sagenaster evermanni\WC_ANN_IDW_Sagenaster_evermanni_2008.tif
-WC_ANN_IDW_Sagenaster_evermanni_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sagenaster evermanni\WC_ANN_IDW_Sagenaster_evermanni_2009.tif
-WC_ANN_IDW_Sagenaster_evermanni_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sagenaster evermanni\WC_ANN_IDW_Sagenaster_evermanni_2010.tif
-WC_ANN_IDW_Sagenaster_evermanni_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sagenaster evermanni\WC_ANN_IDW_Sagenaster_evermanni_2011.tif
-WC_ANN_IDW_Sagenaster_evermanni_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sagenaster evermanni\WC_ANN_IDW_Sagenaster_evermanni_2012.tif
-WC_ANN_IDW_Sagenaster_evermanni_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sagenaster evermanni\WC_ANN_IDW_Sagenaster_evermanni_2013.tif
-WC_ANN_IDW_Sagenaster_evermanni_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sagenaster evermanni\WC_ANN_IDW_Sagenaster_evermanni_2014.tif
-WC_ANN_IDW_Sagenaster_evermanni_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sagenaster evermanni\WC_ANN_IDW_Sagenaster_evermanni_2015.tif
-WC_ANN_IDW_Sagenaster_evermanni_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sagenaster evermanni\WC_ANN_IDW_Sagenaster_evermanni_2016.tif
-WC_ANN_IDW_Sagenaster_evermanni_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sagenaster evermanni\WC_ANN_IDW_Sagenaster_evermanni_2017.tif
-WC_ANN_IDW_Sagenaster_evermanni_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sagenaster evermanni\WC_ANN_IDW_Sagenaster_evermanni_2018.tif
-WC_ANN_IDW_Sagenaster_evermanni_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sagenaster evermanni\WC_ANN_IDW_Sagenaster_evermanni_2019.tif
-WC_ANN_IDW_Sagenaster_evermanni_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sagenaster evermanni\WC_ANN_IDW_Sagenaster_evermanni_2021.tif
-WC_ANN_IDW_Sagenaster_evermanni_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sagenaster evermanni\WC_ANN_IDW_Sagenaster_evermanni_2022.tif
-WC_ANN_IDW_Sebastes_alutus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes alutus\WC_ANN_IDW_Sebastes_alutus_2003.tif
-WC_ANN_IDW_Sebastes_alutus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes alutus\WC_ANN_IDW_Sebastes_alutus_2004.tif
-WC_ANN_IDW_Sebastes_alutus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes alutus\WC_ANN_IDW_Sebastes_alutus_2005.tif
-WC_ANN_IDW_Sebastes_alutus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes alutus\WC_ANN_IDW_Sebastes_alutus_2006.tif
-WC_ANN_IDW_Sebastes_alutus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes alutus\WC_ANN_IDW_Sebastes_alutus_2007.tif
-WC_ANN_IDW_Sebastes_alutus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes alutus\WC_ANN_IDW_Sebastes_alutus_2008.tif
-WC_ANN_IDW_Sebastes_alutus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes alutus\WC_ANN_IDW_Sebastes_alutus_2009.tif
-WC_ANN_IDW_Sebastes_alutus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes alutus\WC_ANN_IDW_Sebastes_alutus_2010.tif
-WC_ANN_IDW_Sebastes_alutus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes alutus\WC_ANN_IDW_Sebastes_alutus_2011.tif
-WC_ANN_IDW_Sebastes_alutus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes alutus\WC_ANN_IDW_Sebastes_alutus_2012.tif
-WC_ANN_IDW_Sebastes_alutus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes alutus\WC_ANN_IDW_Sebastes_alutus_2013.tif
-WC_ANN_IDW_Sebastes_alutus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes alutus\WC_ANN_IDW_Sebastes_alutus_2014.tif
-WC_ANN_IDW_Sebastes_alutus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes alutus\WC_ANN_IDW_Sebastes_alutus_2015.tif
-WC_ANN_IDW_Sebastes_alutus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes alutus\WC_ANN_IDW_Sebastes_alutus_2016.tif
-WC_ANN_IDW_Sebastes_alutus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes alutus\WC_ANN_IDW_Sebastes_alutus_2017.tif
-WC_ANN_IDW_Sebastes_alutus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes alutus\WC_ANN_IDW_Sebastes_alutus_2018.tif
-WC_ANN_IDW_Sebastes_alutus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes alutus\WC_ANN_IDW_Sebastes_alutus_2019.tif
-WC_ANN_IDW_Sebastes_alutus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes alutus\WC_ANN_IDW_Sebastes_alutus_2021.tif
-WC_ANN_IDW_Sebastes_alutus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes alutus\WC_ANN_IDW_Sebastes_alutus_2022.tif
-WC_ANN_IDW_Sebastes_aurora_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes aurora\WC_ANN_IDW_Sebastes_aurora_2003.tif
-WC_ANN_IDW_Sebastes_aurora_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes aurora\WC_ANN_IDW_Sebastes_aurora_2004.tif
-WC_ANN_IDW_Sebastes_aurora_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes aurora\WC_ANN_IDW_Sebastes_aurora_2005.tif
-WC_ANN_IDW_Sebastes_aurora_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes aurora\WC_ANN_IDW_Sebastes_aurora_2006.tif
-WC_ANN_IDW_Sebastes_aurora_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes aurora\WC_ANN_IDW_Sebastes_aurora_2007.tif
-WC_ANN_IDW_Sebastes_aurora_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes aurora\WC_ANN_IDW_Sebastes_aurora_2008.tif
-WC_ANN_IDW_Sebastes_aurora_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes aurora\WC_ANN_IDW_Sebastes_aurora_2009.tif
-WC_ANN_IDW_Sebastes_aurora_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes aurora\WC_ANN_IDW_Sebastes_aurora_2010.tif
-WC_ANN_IDW_Sebastes_aurora_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes aurora\WC_ANN_IDW_Sebastes_aurora_2011.tif
-WC_ANN_IDW_Sebastes_aurora_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes aurora\WC_ANN_IDW_Sebastes_aurora_2012.tif
-WC_ANN_IDW_Sebastes_aurora_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes aurora\WC_ANN_IDW_Sebastes_aurora_2013.tif
-WC_ANN_IDW_Sebastes_aurora_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes aurora\WC_ANN_IDW_Sebastes_aurora_2014.tif
-WC_ANN_IDW_Sebastes_aurora_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes aurora\WC_ANN_IDW_Sebastes_aurora_2015.tif
-WC_ANN_IDW_Sebastes_aurora_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes aurora\WC_ANN_IDW_Sebastes_aurora_2016.tif
-WC_ANN_IDW_Sebastes_aurora_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes aurora\WC_ANN_IDW_Sebastes_aurora_2017.tif
-WC_ANN_IDW_Sebastes_aurora_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes aurora\WC_ANN_IDW_Sebastes_aurora_2018.tif
-WC_ANN_IDW_Sebastes_aurora_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes aurora\WC_ANN_IDW_Sebastes_aurora_2019.tif
-WC_ANN_IDW_Sebastes_aurora_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes aurora\WC_ANN_IDW_Sebastes_aurora_2021.tif
-WC_ANN_IDW_Sebastes_aurora_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes aurora\WC_ANN_IDW_Sebastes_aurora_2022.tif
-WC_ANN_IDW_Sebastes_babcocki_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes babcocki\WC_ANN_IDW_Sebastes_babcocki_2003.tif
-WC_ANN_IDW_Sebastes_babcocki_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes babcocki\WC_ANN_IDW_Sebastes_babcocki_2004.tif
-WC_ANN_IDW_Sebastes_babcocki_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes babcocki\WC_ANN_IDW_Sebastes_babcocki_2005.tif
-WC_ANN_IDW_Sebastes_babcocki_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes babcocki\WC_ANN_IDW_Sebastes_babcocki_2006.tif
-WC_ANN_IDW_Sebastes_babcocki_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes babcocki\WC_ANN_IDW_Sebastes_babcocki_2007.tif
-WC_ANN_IDW_Sebastes_babcocki_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes babcocki\WC_ANN_IDW_Sebastes_babcocki_2008.tif
-WC_ANN_IDW_Sebastes_babcocki_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes babcocki\WC_ANN_IDW_Sebastes_babcocki_2009.tif
-WC_ANN_IDW_Sebastes_babcocki_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes babcocki\WC_ANN_IDW_Sebastes_babcocki_2010.tif
-WC_ANN_IDW_Sebastes_babcocki_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes babcocki\WC_ANN_IDW_Sebastes_babcocki_2011.tif
-WC_ANN_IDW_Sebastes_babcocki_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes babcocki\WC_ANN_IDW_Sebastes_babcocki_2012.tif
-WC_ANN_IDW_Sebastes_babcocki_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes babcocki\WC_ANN_IDW_Sebastes_babcocki_2013.tif
-WC_ANN_IDW_Sebastes_babcocki_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes babcocki\WC_ANN_IDW_Sebastes_babcocki_2014.tif
-WC_ANN_IDW_Sebastes_babcocki_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes babcocki\WC_ANN_IDW_Sebastes_babcocki_2015.tif
-WC_ANN_IDW_Sebastes_babcocki_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes babcocki\WC_ANN_IDW_Sebastes_babcocki_2016.tif
-WC_ANN_IDW_Sebastes_babcocki_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes babcocki\WC_ANN_IDW_Sebastes_babcocki_2017.tif
-WC_ANN_IDW_Sebastes_babcocki_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes babcocki\WC_ANN_IDW_Sebastes_babcocki_2018.tif
-WC_ANN_IDW_Sebastes_babcocki_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes babcocki\WC_ANN_IDW_Sebastes_babcocki_2019.tif
-WC_ANN_IDW_Sebastes_babcocki_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes babcocki\WC_ANN_IDW_Sebastes_babcocki_2021.tif
-WC_ANN_IDW_Sebastes_babcocki_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes babcocki\WC_ANN_IDW_Sebastes_babcocki_2022.tif
-WC_ANN_IDW_Sebastes_chlorostictus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes chlorostictus\WC_ANN_IDW_Sebastes_chlorostictus_2003.tif
-WC_ANN_IDW_Sebastes_chlorostictus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes chlorostictus\WC_ANN_IDW_Sebastes_chlorostictus_2004.tif
-WC_ANN_IDW_Sebastes_chlorostictus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes chlorostictus\WC_ANN_IDW_Sebastes_chlorostictus_2005.tif
-WC_ANN_IDW_Sebastes_chlorostictus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes chlorostictus\WC_ANN_IDW_Sebastes_chlorostictus_2006.tif
-WC_ANN_IDW_Sebastes_chlorostictus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes chlorostictus\WC_ANN_IDW_Sebastes_chlorostictus_2007.tif
-WC_ANN_IDW_Sebastes_chlorostictus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes chlorostictus\WC_ANN_IDW_Sebastes_chlorostictus_2008.tif
-WC_ANN_IDW_Sebastes_chlorostictus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes chlorostictus\WC_ANN_IDW_Sebastes_chlorostictus_2009.tif
-WC_ANN_IDW_Sebastes_chlorostictus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes chlorostictus\WC_ANN_IDW_Sebastes_chlorostictus_2010.tif
-WC_ANN_IDW_Sebastes_chlorostictus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes chlorostictus\WC_ANN_IDW_Sebastes_chlorostictus_2011.tif
-WC_ANN_IDW_Sebastes_chlorostictus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes chlorostictus\WC_ANN_IDW_Sebastes_chlorostictus_2012.tif
-WC_ANN_IDW_Sebastes_chlorostictus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes chlorostictus\WC_ANN_IDW_Sebastes_chlorostictus_2013.tif
-WC_ANN_IDW_Sebastes_chlorostictus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes chlorostictus\WC_ANN_IDW_Sebastes_chlorostictus_2014.tif
-WC_ANN_IDW_Sebastes_chlorostictus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes chlorostictus\WC_ANN_IDW_Sebastes_chlorostictus_2015.tif
-WC_ANN_IDW_Sebastes_chlorostictus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes chlorostictus\WC_ANN_IDW_Sebastes_chlorostictus_2016.tif
-WC_ANN_IDW_Sebastes_chlorostictus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes chlorostictus\WC_ANN_IDW_Sebastes_chlorostictus_2017.tif
-WC_ANN_IDW_Sebastes_chlorostictus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes chlorostictus\WC_ANN_IDW_Sebastes_chlorostictus_2018.tif
-WC_ANN_IDW_Sebastes_chlorostictus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes chlorostictus\WC_ANN_IDW_Sebastes_chlorostictus_2019.tif
-WC_ANN_IDW_Sebastes_chlorostictus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes chlorostictus\WC_ANN_IDW_Sebastes_chlorostictus_2021.tif
-WC_ANN_IDW_Sebastes_chlorostictus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes chlorostictus\WC_ANN_IDW_Sebastes_chlorostictus_2022.tif
-WC_ANN_IDW_Sebastes_crameri_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes crameri\WC_ANN_IDW_Sebastes_crameri_2003.tif
-WC_ANN_IDW_Sebastes_crameri_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes crameri\WC_ANN_IDW_Sebastes_crameri_2004.tif
-WC_ANN_IDW_Sebastes_crameri_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes crameri\WC_ANN_IDW_Sebastes_crameri_2005.tif
-WC_ANN_IDW_Sebastes_crameri_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes crameri\WC_ANN_IDW_Sebastes_crameri_2006.tif
-WC_ANN_IDW_Sebastes_crameri_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes crameri\WC_ANN_IDW_Sebastes_crameri_2007.tif
-WC_ANN_IDW_Sebastes_crameri_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes crameri\WC_ANN_IDW_Sebastes_crameri_2008.tif
-WC_ANN_IDW_Sebastes_crameri_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes crameri\WC_ANN_IDW_Sebastes_crameri_2009.tif
-WC_ANN_IDW_Sebastes_crameri_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes crameri\WC_ANN_IDW_Sebastes_crameri_2010.tif
-WC_ANN_IDW_Sebastes_crameri_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes crameri\WC_ANN_IDW_Sebastes_crameri_2011.tif
-WC_ANN_IDW_Sebastes_crameri_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes crameri\WC_ANN_IDW_Sebastes_crameri_2012.tif
-WC_ANN_IDW_Sebastes_crameri_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes crameri\WC_ANN_IDW_Sebastes_crameri_2013.tif
-WC_ANN_IDW_Sebastes_crameri_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes crameri\WC_ANN_IDW_Sebastes_crameri_2014.tif
-WC_ANN_IDW_Sebastes_crameri_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes crameri\WC_ANN_IDW_Sebastes_crameri_2015.tif
-WC_ANN_IDW_Sebastes_crameri_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes crameri\WC_ANN_IDW_Sebastes_crameri_2016.tif
-WC_ANN_IDW_Sebastes_crameri_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes crameri\WC_ANN_IDW_Sebastes_crameri_2017.tif
-WC_ANN_IDW_Sebastes_crameri_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes crameri\WC_ANN_IDW_Sebastes_crameri_2018.tif
-WC_ANN_IDW_Sebastes_crameri_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes crameri\WC_ANN_IDW_Sebastes_crameri_2019.tif
-WC_ANN_IDW_Sebastes_crameri_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes crameri\WC_ANN_IDW_Sebastes_crameri_2021.tif
-WC_ANN_IDW_Sebastes_crameri_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes crameri\WC_ANN_IDW_Sebastes_crameri_2022.tif
-WC_ANN_IDW_Sebastes_diploproa_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes diploproa\WC_ANN_IDW_Sebastes_diploproa_2003.tif
-WC_ANN_IDW_Sebastes_diploproa_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes diploproa\WC_ANN_IDW_Sebastes_diploproa_2004.tif
-WC_ANN_IDW_Sebastes_diploproa_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes diploproa\WC_ANN_IDW_Sebastes_diploproa_2005.tif
-WC_ANN_IDW_Sebastes_diploproa_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes diploproa\WC_ANN_IDW_Sebastes_diploproa_2006.tif
-WC_ANN_IDW_Sebastes_diploproa_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes diploproa\WC_ANN_IDW_Sebastes_diploproa_2007.tif
-WC_ANN_IDW_Sebastes_diploproa_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes diploproa\WC_ANN_IDW_Sebastes_diploproa_2008.tif
-WC_ANN_IDW_Sebastes_diploproa_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes diploproa\WC_ANN_IDW_Sebastes_diploproa_2009.tif
-WC_ANN_IDW_Sebastes_diploproa_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes diploproa\WC_ANN_IDW_Sebastes_diploproa_2010.tif
-WC_ANN_IDW_Sebastes_diploproa_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes diploproa\WC_ANN_IDW_Sebastes_diploproa_2011.tif
-WC_ANN_IDW_Sebastes_diploproa_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes diploproa\WC_ANN_IDW_Sebastes_diploproa_2012.tif
-WC_ANN_IDW_Sebastes_diploproa_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes diploproa\WC_ANN_IDW_Sebastes_diploproa_2013.tif
-WC_ANN_IDW_Sebastes_diploproa_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes diploproa\WC_ANN_IDW_Sebastes_diploproa_2014.tif
-WC_ANN_IDW_Sebastes_diploproa_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes diploproa\WC_ANN_IDW_Sebastes_diploproa_2015.tif
-WC_ANN_IDW_Sebastes_diploproa_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes diploproa\WC_ANN_IDW_Sebastes_diploproa_2016.tif
-WC_ANN_IDW_Sebastes_diploproa_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes diploproa\WC_ANN_IDW_Sebastes_diploproa_2017.tif
-WC_ANN_IDW_Sebastes_diploproa_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes diploproa\WC_ANN_IDW_Sebastes_diploproa_2018.tif
-WC_ANN_IDW_Sebastes_diploproa_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes diploproa\WC_ANN_IDW_Sebastes_diploproa_2019.tif
-WC_ANN_IDW_Sebastes_diploproa_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes diploproa\WC_ANN_IDW_Sebastes_diploproa_2021.tif
-WC_ANN_IDW_Sebastes_diploproa_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes diploproa\WC_ANN_IDW_Sebastes_diploproa_2022.tif
-WC_ANN_IDW_Sebastes_elongatus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes elongatus\WC_ANN_IDW_Sebastes_elongatus_2003.tif
-WC_ANN_IDW_Sebastes_elongatus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes elongatus\WC_ANN_IDW_Sebastes_elongatus_2004.tif
-WC_ANN_IDW_Sebastes_elongatus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes elongatus\WC_ANN_IDW_Sebastes_elongatus_2005.tif
-WC_ANN_IDW_Sebastes_elongatus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes elongatus\WC_ANN_IDW_Sebastes_elongatus_2006.tif
-WC_ANN_IDW_Sebastes_elongatus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes elongatus\WC_ANN_IDW_Sebastes_elongatus_2007.tif
-WC_ANN_IDW_Sebastes_elongatus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes elongatus\WC_ANN_IDW_Sebastes_elongatus_2008.tif
-WC_ANN_IDW_Sebastes_elongatus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes elongatus\WC_ANN_IDW_Sebastes_elongatus_2009.tif
-WC_ANN_IDW_Sebastes_elongatus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes elongatus\WC_ANN_IDW_Sebastes_elongatus_2010.tif
-WC_ANN_IDW_Sebastes_elongatus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes elongatus\WC_ANN_IDW_Sebastes_elongatus_2011.tif
-WC_ANN_IDW_Sebastes_elongatus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes elongatus\WC_ANN_IDW_Sebastes_elongatus_2012.tif
-WC_ANN_IDW_Sebastes_elongatus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes elongatus\WC_ANN_IDW_Sebastes_elongatus_2013.tif
-WC_ANN_IDW_Sebastes_elongatus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes elongatus\WC_ANN_IDW_Sebastes_elongatus_2014.tif
-WC_ANN_IDW_Sebastes_elongatus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes elongatus\WC_ANN_IDW_Sebastes_elongatus_2015.tif
-WC_ANN_IDW_Sebastes_elongatus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes elongatus\WC_ANN_IDW_Sebastes_elongatus_2016.tif
-WC_ANN_IDW_Sebastes_elongatus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes elongatus\WC_ANN_IDW_Sebastes_elongatus_2017.tif
-WC_ANN_IDW_Sebastes_elongatus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes elongatus\WC_ANN_IDW_Sebastes_elongatus_2018.tif
-WC_ANN_IDW_Sebastes_elongatus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes elongatus\WC_ANN_IDW_Sebastes_elongatus_2019.tif
-WC_ANN_IDW_Sebastes_elongatus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes elongatus\WC_ANN_IDW_Sebastes_elongatus_2021.tif
-WC_ANN_IDW_Sebastes_elongatus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes elongatus\WC_ANN_IDW_Sebastes_elongatus_2022.tif
-WC_ANN_IDW_Sebastes_flavidus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes flavidus\WC_ANN_IDW_Sebastes_flavidus_2003.tif
-WC_ANN_IDW_Sebastes_flavidus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes flavidus\WC_ANN_IDW_Sebastes_flavidus_2004.tif
-WC_ANN_IDW_Sebastes_flavidus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes flavidus\WC_ANN_IDW_Sebastes_flavidus_2005.tif
-WC_ANN_IDW_Sebastes_flavidus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes flavidus\WC_ANN_IDW_Sebastes_flavidus_2006.tif
-WC_ANN_IDW_Sebastes_flavidus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes flavidus\WC_ANN_IDW_Sebastes_flavidus_2007.tif
-WC_ANN_IDW_Sebastes_flavidus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes flavidus\WC_ANN_IDW_Sebastes_flavidus_2008.tif
-WC_ANN_IDW_Sebastes_flavidus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes flavidus\WC_ANN_IDW_Sebastes_flavidus_2009.tif
-WC_ANN_IDW_Sebastes_flavidus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes flavidus\WC_ANN_IDW_Sebastes_flavidus_2010.tif
-WC_ANN_IDW_Sebastes_flavidus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes flavidus\WC_ANN_IDW_Sebastes_flavidus_2011.tif
-WC_ANN_IDW_Sebastes_flavidus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes flavidus\WC_ANN_IDW_Sebastes_flavidus_2012.tif
-WC_ANN_IDW_Sebastes_flavidus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes flavidus\WC_ANN_IDW_Sebastes_flavidus_2013.tif
-WC_ANN_IDW_Sebastes_flavidus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes flavidus\WC_ANN_IDW_Sebastes_flavidus_2014.tif
-WC_ANN_IDW_Sebastes_flavidus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes flavidus\WC_ANN_IDW_Sebastes_flavidus_2015.tif
-WC_ANN_IDW_Sebastes_flavidus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes flavidus\WC_ANN_IDW_Sebastes_flavidus_2016.tif
-WC_ANN_IDW_Sebastes_flavidus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes flavidus\WC_ANN_IDW_Sebastes_flavidus_2017.tif
-WC_ANN_IDW_Sebastes_flavidus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes flavidus\WC_ANN_IDW_Sebastes_flavidus_2018.tif
-WC_ANN_IDW_Sebastes_flavidus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes flavidus\WC_ANN_IDW_Sebastes_flavidus_2019.tif
-WC_ANN_IDW_Sebastes_flavidus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes flavidus\WC_ANN_IDW_Sebastes_flavidus_2021.tif
-WC_ANN_IDW_Sebastes_flavidus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes flavidus\WC_ANN_IDW_Sebastes_flavidus_2022.tif
-WC_ANN_IDW_Sebastes_goodei_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes goodei\WC_ANN_IDW_Sebastes_goodei_2003.tif
-WC_ANN_IDW_Sebastes_goodei_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes goodei\WC_ANN_IDW_Sebastes_goodei_2004.tif
-WC_ANN_IDW_Sebastes_goodei_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes goodei\WC_ANN_IDW_Sebastes_goodei_2005.tif
-WC_ANN_IDW_Sebastes_goodei_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes goodei\WC_ANN_IDW_Sebastes_goodei_2006.tif
-WC_ANN_IDW_Sebastes_goodei_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes goodei\WC_ANN_IDW_Sebastes_goodei_2007.tif
-WC_ANN_IDW_Sebastes_goodei_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes goodei\WC_ANN_IDW_Sebastes_goodei_2008.tif
-WC_ANN_IDW_Sebastes_goodei_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes goodei\WC_ANN_IDW_Sebastes_goodei_2009.tif
-WC_ANN_IDW_Sebastes_goodei_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes goodei\WC_ANN_IDW_Sebastes_goodei_2010.tif
-WC_ANN_IDW_Sebastes_goodei_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes goodei\WC_ANN_IDW_Sebastes_goodei_2011.tif
-WC_ANN_IDW_Sebastes_goodei_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:25:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes goodei\WC_ANN_IDW_Sebastes_goodei_2012.tif
-WC_ANN_IDW_Sebastes_goodei_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes goodei\WC_ANN_IDW_Sebastes_goodei_2013.tif
-WC_ANN_IDW_Sebastes_goodei_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes goodei\WC_ANN_IDW_Sebastes_goodei_2014.tif
-WC_ANN_IDW_Sebastes_goodei_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes goodei\WC_ANN_IDW_Sebastes_goodei_2015.tif
-WC_ANN_IDW_Sebastes_goodei_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes goodei\WC_ANN_IDW_Sebastes_goodei_2016.tif
-WC_ANN_IDW_Sebastes_goodei_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes goodei\WC_ANN_IDW_Sebastes_goodei_2017.tif
-WC_ANN_IDW_Sebastes_goodei_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes goodei\WC_ANN_IDW_Sebastes_goodei_2018.tif
-WC_ANN_IDW_Sebastes_goodei_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes goodei\WC_ANN_IDW_Sebastes_goodei_2019.tif
-WC_ANN_IDW_Sebastes_goodei_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes goodei\WC_ANN_IDW_Sebastes_goodei_2021.tif
-WC_ANN_IDW_Sebastes_goodei_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes goodei\WC_ANN_IDW_Sebastes_goodei_2022.tif
-WC_ANN_IDW_Sebastes_helvomaculatus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes helvomaculatus\WC_ANN_IDW_Sebastes_helvomaculatus_2003.tif
-WC_ANN_IDW_Sebastes_helvomaculatus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes helvomaculatus\WC_ANN_IDW_Sebastes_helvomaculatus_2004.tif
-WC_ANN_IDW_Sebastes_helvomaculatus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes helvomaculatus\WC_ANN_IDW_Sebastes_helvomaculatus_2005.tif
-WC_ANN_IDW_Sebastes_helvomaculatus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes helvomaculatus\WC_ANN_IDW_Sebastes_helvomaculatus_2006.tif
-WC_ANN_IDW_Sebastes_helvomaculatus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes helvomaculatus\WC_ANN_IDW_Sebastes_helvomaculatus_2007.tif
-WC_ANN_IDW_Sebastes_helvomaculatus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes helvomaculatus\WC_ANN_IDW_Sebastes_helvomaculatus_2008.tif
-WC_ANN_IDW_Sebastes_helvomaculatus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes helvomaculatus\WC_ANN_IDW_Sebastes_helvomaculatus_2009.tif
-WC_ANN_IDW_Sebastes_helvomaculatus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes helvomaculatus\WC_ANN_IDW_Sebastes_helvomaculatus_2010.tif
-WC_ANN_IDW_Sebastes_helvomaculatus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes helvomaculatus\WC_ANN_IDW_Sebastes_helvomaculatus_2011.tif
-WC_ANN_IDW_Sebastes_helvomaculatus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes helvomaculatus\WC_ANN_IDW_Sebastes_helvomaculatus_2012.tif
-WC_ANN_IDW_Sebastes_helvomaculatus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes helvomaculatus\WC_ANN_IDW_Sebastes_helvomaculatus_2013.tif
-WC_ANN_IDW_Sebastes_helvomaculatus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes helvomaculatus\WC_ANN_IDW_Sebastes_helvomaculatus_2014.tif
-WC_ANN_IDW_Sebastes_helvomaculatus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes helvomaculatus\WC_ANN_IDW_Sebastes_helvomaculatus_2015.tif
-WC_ANN_IDW_Sebastes_helvomaculatus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes helvomaculatus\WC_ANN_IDW_Sebastes_helvomaculatus_2016.tif
-WC_ANN_IDW_Sebastes_helvomaculatus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes helvomaculatus\WC_ANN_IDW_Sebastes_helvomaculatus_2017.tif
-WC_ANN_IDW_Sebastes_helvomaculatus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes helvomaculatus\WC_ANN_IDW_Sebastes_helvomaculatus_2018.tif
-WC_ANN_IDW_Sebastes_helvomaculatus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes helvomaculatus\WC_ANN_IDW_Sebastes_helvomaculatus_2019.tif
-WC_ANN_IDW_Sebastes_helvomaculatus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes helvomaculatus\WC_ANN_IDW_Sebastes_helvomaculatus_2021.tif
-WC_ANN_IDW_Sebastes_helvomaculatus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes helvomaculatus\WC_ANN_IDW_Sebastes_helvomaculatus_2022.tif
-WC_ANN_IDW_Sebastes_jordani_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes jordani\WC_ANN_IDW_Sebastes_jordani_2003.tif
-WC_ANN_IDW_Sebastes_jordani_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes jordani\WC_ANN_IDW_Sebastes_jordani_2004.tif
-WC_ANN_IDW_Sebastes_jordani_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes jordani\WC_ANN_IDW_Sebastes_jordani_2005.tif
-WC_ANN_IDW_Sebastes_jordani_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes jordani\WC_ANN_IDW_Sebastes_jordani_2006.tif
-WC_ANN_IDW_Sebastes_jordani_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes jordani\WC_ANN_IDW_Sebastes_jordani_2007.tif
-WC_ANN_IDW_Sebastes_jordani_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes jordani\WC_ANN_IDW_Sebastes_jordani_2008.tif
-WC_ANN_IDW_Sebastes_jordani_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes jordani\WC_ANN_IDW_Sebastes_jordani_2009.tif
-WC_ANN_IDW_Sebastes_jordani_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes jordani\WC_ANN_IDW_Sebastes_jordani_2010.tif
-WC_ANN_IDW_Sebastes_jordani_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes jordani\WC_ANN_IDW_Sebastes_jordani_2011.tif
-WC_ANN_IDW_Sebastes_jordani_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes jordani\WC_ANN_IDW_Sebastes_jordani_2012.tif
-WC_ANN_IDW_Sebastes_jordani_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes jordani\WC_ANN_IDW_Sebastes_jordani_2013.tif
-WC_ANN_IDW_Sebastes_jordani_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes jordani\WC_ANN_IDW_Sebastes_jordani_2014.tif
-WC_ANN_IDW_Sebastes_jordani_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes jordani\WC_ANN_IDW_Sebastes_jordani_2015.tif
-WC_ANN_IDW_Sebastes_jordani_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes jordani\WC_ANN_IDW_Sebastes_jordani_2016.tif
-WC_ANN_IDW_Sebastes_jordani_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes jordani\WC_ANN_IDW_Sebastes_jordani_2017.tif
-WC_ANN_IDW_Sebastes_jordani_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes jordani\WC_ANN_IDW_Sebastes_jordani_2018.tif
-WC_ANN_IDW_Sebastes_jordani_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes jordani\WC_ANN_IDW_Sebastes_jordani_2019.tif
-WC_ANN_IDW_Sebastes_jordani_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes jordani\WC_ANN_IDW_Sebastes_jordani_2021.tif
-WC_ANN_IDW_Sebastes_jordani_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes jordani\WC_ANN_IDW_Sebastes_jordani_2022.tif
-WC_ANN_IDW_Sebastes_paucispinis_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes paucispinis\WC_ANN_IDW_Sebastes_paucispinis_2003.tif
-WC_ANN_IDW_Sebastes_paucispinis_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes paucispinis\WC_ANN_IDW_Sebastes_paucispinis_2004.tif
-WC_ANN_IDW_Sebastes_paucispinis_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes paucispinis\WC_ANN_IDW_Sebastes_paucispinis_2005.tif
-WC_ANN_IDW_Sebastes_paucispinis_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes paucispinis\WC_ANN_IDW_Sebastes_paucispinis_2006.tif
-WC_ANN_IDW_Sebastes_paucispinis_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes paucispinis\WC_ANN_IDW_Sebastes_paucispinis_2007.tif
-WC_ANN_IDW_Sebastes_paucispinis_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes paucispinis\WC_ANN_IDW_Sebastes_paucispinis_2008.tif
-WC_ANN_IDW_Sebastes_paucispinis_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes paucispinis\WC_ANN_IDW_Sebastes_paucispinis_2009.tif
-WC_ANN_IDW_Sebastes_paucispinis_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes paucispinis\WC_ANN_IDW_Sebastes_paucispinis_2010.tif
-WC_ANN_IDW_Sebastes_paucispinis_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes paucispinis\WC_ANN_IDW_Sebastes_paucispinis_2011.tif
-WC_ANN_IDW_Sebastes_paucispinis_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes paucispinis\WC_ANN_IDW_Sebastes_paucispinis_2012.tif
-WC_ANN_IDW_Sebastes_paucispinis_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes paucispinis\WC_ANN_IDW_Sebastes_paucispinis_2013.tif
-WC_ANN_IDW_Sebastes_paucispinis_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes paucispinis\WC_ANN_IDW_Sebastes_paucispinis_2014.tif
-WC_ANN_IDW_Sebastes_paucispinis_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes paucispinis\WC_ANN_IDW_Sebastes_paucispinis_2015.tif
-WC_ANN_IDW_Sebastes_paucispinis_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes paucispinis\WC_ANN_IDW_Sebastes_paucispinis_2016.tif
-WC_ANN_IDW_Sebastes_paucispinis_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes paucispinis\WC_ANN_IDW_Sebastes_paucispinis_2017.tif
-WC_ANN_IDW_Sebastes_paucispinis_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes paucispinis\WC_ANN_IDW_Sebastes_paucispinis_2018.tif
-WC_ANN_IDW_Sebastes_paucispinis_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes paucispinis\WC_ANN_IDW_Sebastes_paucispinis_2019.tif
-WC_ANN_IDW_Sebastes_paucispinis_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes paucispinis\WC_ANN_IDW_Sebastes_paucispinis_2021.tif
-WC_ANN_IDW_Sebastes_paucispinis_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes paucispinis\WC_ANN_IDW_Sebastes_paucispinis_2022.tif
-WC_ANN_IDW_Sebastes_pinniger_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes pinniger\WC_ANN_IDW_Sebastes_pinniger_2003.tif
-WC_ANN_IDW_Sebastes_pinniger_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes pinniger\WC_ANN_IDW_Sebastes_pinniger_2004.tif
-WC_ANN_IDW_Sebastes_pinniger_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes pinniger\WC_ANN_IDW_Sebastes_pinniger_2005.tif
-WC_ANN_IDW_Sebastes_pinniger_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes pinniger\WC_ANN_IDW_Sebastes_pinniger_2006.tif
-WC_ANN_IDW_Sebastes_pinniger_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes pinniger\WC_ANN_IDW_Sebastes_pinniger_2007.tif
-WC_ANN_IDW_Sebastes_pinniger_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes pinniger\WC_ANN_IDW_Sebastes_pinniger_2008.tif
-WC_ANN_IDW_Sebastes_pinniger_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes pinniger\WC_ANN_IDW_Sebastes_pinniger_2009.tif
-WC_ANN_IDW_Sebastes_pinniger_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes pinniger\WC_ANN_IDW_Sebastes_pinniger_2010.tif
-WC_ANN_IDW_Sebastes_pinniger_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes pinniger\WC_ANN_IDW_Sebastes_pinniger_2011.tif
-WC_ANN_IDW_Sebastes_pinniger_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes pinniger\WC_ANN_IDW_Sebastes_pinniger_2012.tif
-WC_ANN_IDW_Sebastes_pinniger_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes pinniger\WC_ANN_IDW_Sebastes_pinniger_2013.tif
-WC_ANN_IDW_Sebastes_pinniger_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes pinniger\WC_ANN_IDW_Sebastes_pinniger_2014.tif
-WC_ANN_IDW_Sebastes_pinniger_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes pinniger\WC_ANN_IDW_Sebastes_pinniger_2015.tif
-WC_ANN_IDW_Sebastes_pinniger_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes pinniger\WC_ANN_IDW_Sebastes_pinniger_2016.tif
-WC_ANN_IDW_Sebastes_pinniger_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes pinniger\WC_ANN_IDW_Sebastes_pinniger_2017.tif
-WC_ANN_IDW_Sebastes_pinniger_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes pinniger\WC_ANN_IDW_Sebastes_pinniger_2018.tif
-WC_ANN_IDW_Sebastes_pinniger_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes pinniger\WC_ANN_IDW_Sebastes_pinniger_2019.tif
-WC_ANN_IDW_Sebastes_pinniger_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes pinniger\WC_ANN_IDW_Sebastes_pinniger_2021.tif
-WC_ANN_IDW_Sebastes_pinniger_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes pinniger\WC_ANN_IDW_Sebastes_pinniger_2022.tif
-WC_ANN_IDW_Sebastes_saxicola_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes saxicola\WC_ANN_IDW_Sebastes_saxicola_2003.tif
-WC_ANN_IDW_Sebastes_saxicola_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes saxicola\WC_ANN_IDW_Sebastes_saxicola_2004.tif
-WC_ANN_IDW_Sebastes_saxicola_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes saxicola\WC_ANN_IDW_Sebastes_saxicola_2005.tif
-WC_ANN_IDW_Sebastes_saxicola_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes saxicola\WC_ANN_IDW_Sebastes_saxicola_2006.tif
-WC_ANN_IDW_Sebastes_saxicola_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes saxicola\WC_ANN_IDW_Sebastes_saxicola_2007.tif
-WC_ANN_IDW_Sebastes_saxicola_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes saxicola\WC_ANN_IDW_Sebastes_saxicola_2008.tif
-WC_ANN_IDW_Sebastes_saxicola_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes saxicola\WC_ANN_IDW_Sebastes_saxicola_2009.tif
-WC_ANN_IDW_Sebastes_saxicola_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes saxicola\WC_ANN_IDW_Sebastes_saxicola_2010.tif
-WC_ANN_IDW_Sebastes_saxicola_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes saxicola\WC_ANN_IDW_Sebastes_saxicola_2011.tif
-WC_ANN_IDW_Sebastes_saxicola_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes saxicola\WC_ANN_IDW_Sebastes_saxicola_2012.tif
-WC_ANN_IDW_Sebastes_saxicola_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes saxicola\WC_ANN_IDW_Sebastes_saxicola_2013.tif
-WC_ANN_IDW_Sebastes_saxicola_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes saxicola\WC_ANN_IDW_Sebastes_saxicola_2014.tif
-WC_ANN_IDW_Sebastes_saxicola_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes saxicola\WC_ANN_IDW_Sebastes_saxicola_2015.tif
-WC_ANN_IDW_Sebastes_saxicola_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes saxicola\WC_ANN_IDW_Sebastes_saxicola_2016.tif
-WC_ANN_IDW_Sebastes_saxicola_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes saxicola\WC_ANN_IDW_Sebastes_saxicola_2017.tif
-WC_ANN_IDW_Sebastes_saxicola_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes saxicola\WC_ANN_IDW_Sebastes_saxicola_2018.tif
-WC_ANN_IDW_Sebastes_saxicola_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes saxicola\WC_ANN_IDW_Sebastes_saxicola_2019.tif
-WC_ANN_IDW_Sebastes_saxicola_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes saxicola\WC_ANN_IDW_Sebastes_saxicola_2021.tif
-WC_ANN_IDW_Sebastes_saxicola_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes saxicola\WC_ANN_IDW_Sebastes_saxicola_2022.tif
-WC_ANN_IDW_Sebastes_semicinctus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes semicinctus\WC_ANN_IDW_Sebastes_semicinctus_2003.tif
-WC_ANN_IDW_Sebastes_semicinctus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes semicinctus\WC_ANN_IDW_Sebastes_semicinctus_2004.tif
-WC_ANN_IDW_Sebastes_semicinctus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes semicinctus\WC_ANN_IDW_Sebastes_semicinctus_2005.tif
-WC_ANN_IDW_Sebastes_semicinctus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes semicinctus\WC_ANN_IDW_Sebastes_semicinctus_2006.tif
-WC_ANN_IDW_Sebastes_semicinctus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes semicinctus\WC_ANN_IDW_Sebastes_semicinctus_2007.tif
-WC_ANN_IDW_Sebastes_semicinctus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes semicinctus\WC_ANN_IDW_Sebastes_semicinctus_2008.tif
-WC_ANN_IDW_Sebastes_semicinctus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes semicinctus\WC_ANN_IDW_Sebastes_semicinctus_2009.tif
-WC_ANN_IDW_Sebastes_semicinctus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes semicinctus\WC_ANN_IDW_Sebastes_semicinctus_2010.tif
-WC_ANN_IDW_Sebastes_semicinctus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes semicinctus\WC_ANN_IDW_Sebastes_semicinctus_2011.tif
-WC_ANN_IDW_Sebastes_semicinctus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes semicinctus\WC_ANN_IDW_Sebastes_semicinctus_2012.tif
-WC_ANN_IDW_Sebastes_semicinctus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes semicinctus\WC_ANN_IDW_Sebastes_semicinctus_2013.tif
-WC_ANN_IDW_Sebastes_semicinctus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes semicinctus\WC_ANN_IDW_Sebastes_semicinctus_2014.tif
-WC_ANN_IDW_Sebastes_semicinctus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes semicinctus\WC_ANN_IDW_Sebastes_semicinctus_2015.tif
-WC_ANN_IDW_Sebastes_semicinctus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes semicinctus\WC_ANN_IDW_Sebastes_semicinctus_2016.tif
-WC_ANN_IDW_Sebastes_semicinctus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes semicinctus\WC_ANN_IDW_Sebastes_semicinctus_2017.tif
-WC_ANN_IDW_Sebastes_semicinctus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes semicinctus\WC_ANN_IDW_Sebastes_semicinctus_2018.tif
-WC_ANN_IDW_Sebastes_semicinctus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes semicinctus\WC_ANN_IDW_Sebastes_semicinctus_2019.tif
-WC_ANN_IDW_Sebastes_semicinctus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes semicinctus\WC_ANN_IDW_Sebastes_semicinctus_2021.tif
-WC_ANN_IDW_Sebastes_semicinctus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes semicinctus\WC_ANN_IDW_Sebastes_semicinctus_2022.tif
-WC_ANN_IDW_Sebastes_zacentrus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes zacentrus\WC_ANN_IDW_Sebastes_zacentrus_2003.tif
-WC_ANN_IDW_Sebastes_zacentrus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes zacentrus\WC_ANN_IDW_Sebastes_zacentrus_2004.tif
-WC_ANN_IDW_Sebastes_zacentrus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes zacentrus\WC_ANN_IDW_Sebastes_zacentrus_2005.tif
-WC_ANN_IDW_Sebastes_zacentrus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes zacentrus\WC_ANN_IDW_Sebastes_zacentrus_2006.tif
-WC_ANN_IDW_Sebastes_zacentrus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes zacentrus\WC_ANN_IDW_Sebastes_zacentrus_2007.tif
-WC_ANN_IDW_Sebastes_zacentrus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes zacentrus\WC_ANN_IDW_Sebastes_zacentrus_2008.tif
-WC_ANN_IDW_Sebastes_zacentrus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes zacentrus\WC_ANN_IDW_Sebastes_zacentrus_2009.tif
-WC_ANN_IDW_Sebastes_zacentrus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes zacentrus\WC_ANN_IDW_Sebastes_zacentrus_2010.tif
-WC_ANN_IDW_Sebastes_zacentrus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes zacentrus\WC_ANN_IDW_Sebastes_zacentrus_2011.tif
-WC_ANN_IDW_Sebastes_zacentrus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes zacentrus\WC_ANN_IDW_Sebastes_zacentrus_2012.tif
-WC_ANN_IDW_Sebastes_zacentrus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes zacentrus\WC_ANN_IDW_Sebastes_zacentrus_2013.tif
-WC_ANN_IDW_Sebastes_zacentrus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes zacentrus\WC_ANN_IDW_Sebastes_zacentrus_2014.tif
-WC_ANN_IDW_Sebastes_zacentrus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes zacentrus\WC_ANN_IDW_Sebastes_zacentrus_2015.tif
-WC_ANN_IDW_Sebastes_zacentrus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes zacentrus\WC_ANN_IDW_Sebastes_zacentrus_2016.tif
-WC_ANN_IDW_Sebastes_zacentrus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes zacentrus\WC_ANN_IDW_Sebastes_zacentrus_2017.tif
-WC_ANN_IDW_Sebastes_zacentrus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes zacentrus\WC_ANN_IDW_Sebastes_zacentrus_2018.tif
-WC_ANN_IDW_Sebastes_zacentrus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes zacentrus\WC_ANN_IDW_Sebastes_zacentrus_2019.tif
-WC_ANN_IDW_Sebastes_zacentrus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes zacentrus\WC_ANN_IDW_Sebastes_zacentrus_2021.tif
-WC_ANN_IDW_Sebastes_zacentrus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastes zacentrus\WC_ANN_IDW_Sebastes_zacentrus_2022.tif
-WC_ANN_IDW_Sebastolobus_alascanus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus alascanus\WC_ANN_IDW_Sebastolobus_alascanus_2003.tif
-WC_ANN_IDW_Sebastolobus_alascanus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus alascanus\WC_ANN_IDW_Sebastolobus_alascanus_2004.tif
-WC_ANN_IDW_Sebastolobus_alascanus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus alascanus\WC_ANN_IDW_Sebastolobus_alascanus_2005.tif
-WC_ANN_IDW_Sebastolobus_alascanus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus alascanus\WC_ANN_IDW_Sebastolobus_alascanus_2006.tif
-WC_ANN_IDW_Sebastolobus_alascanus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus alascanus\WC_ANN_IDW_Sebastolobus_alascanus_2007.tif
-WC_ANN_IDW_Sebastolobus_alascanus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus alascanus\WC_ANN_IDW_Sebastolobus_alascanus_2008.tif
-WC_ANN_IDW_Sebastolobus_alascanus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus alascanus\WC_ANN_IDW_Sebastolobus_alascanus_2009.tif
-WC_ANN_IDW_Sebastolobus_alascanus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus alascanus\WC_ANN_IDW_Sebastolobus_alascanus_2010.tif
-WC_ANN_IDW_Sebastolobus_alascanus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus alascanus\WC_ANN_IDW_Sebastolobus_alascanus_2011.tif
-WC_ANN_IDW_Sebastolobus_alascanus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus alascanus\WC_ANN_IDW_Sebastolobus_alascanus_2012.tif
-WC_ANN_IDW_Sebastolobus_alascanus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus alascanus\WC_ANN_IDW_Sebastolobus_alascanus_2013.tif
-WC_ANN_IDW_Sebastolobus_alascanus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus alascanus\WC_ANN_IDW_Sebastolobus_alascanus_2014.tif
-WC_ANN_IDW_Sebastolobus_alascanus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus alascanus\WC_ANN_IDW_Sebastolobus_alascanus_2015.tif
-WC_ANN_IDW_Sebastolobus_alascanus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus alascanus\WC_ANN_IDW_Sebastolobus_alascanus_2016.tif
-WC_ANN_IDW_Sebastolobus_alascanus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus alascanus\WC_ANN_IDW_Sebastolobus_alascanus_2017.tif
-WC_ANN_IDW_Sebastolobus_alascanus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus alascanus\WC_ANN_IDW_Sebastolobus_alascanus_2018.tif
-WC_ANN_IDW_Sebastolobus_alascanus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus alascanus\WC_ANN_IDW_Sebastolobus_alascanus_2019.tif
-WC_ANN_IDW_Sebastolobus_alascanus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus alascanus\WC_ANN_IDW_Sebastolobus_alascanus_2021.tif
-WC_ANN_IDW_Sebastolobus_alascanus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus alascanus\WC_ANN_IDW_Sebastolobus_alascanus_2022.tif
-WC_ANN_IDW_Sebastolobus_altivelis_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus altivelis\WC_ANN_IDW_Sebastolobus_altivelis_2003.tif
-WC_ANN_IDW_Sebastolobus_altivelis_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus altivelis\WC_ANN_IDW_Sebastolobus_altivelis_2004.tif
-WC_ANN_IDW_Sebastolobus_altivelis_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus altivelis\WC_ANN_IDW_Sebastolobus_altivelis_2005.tif
-WC_ANN_IDW_Sebastolobus_altivelis_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus altivelis\WC_ANN_IDW_Sebastolobus_altivelis_2006.tif
-WC_ANN_IDW_Sebastolobus_altivelis_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus altivelis\WC_ANN_IDW_Sebastolobus_altivelis_2007.tif
-WC_ANN_IDW_Sebastolobus_altivelis_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus altivelis\WC_ANN_IDW_Sebastolobus_altivelis_2008.tif
-WC_ANN_IDW_Sebastolobus_altivelis_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus altivelis\WC_ANN_IDW_Sebastolobus_altivelis_2009.tif
-WC_ANN_IDW_Sebastolobus_altivelis_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus altivelis\WC_ANN_IDW_Sebastolobus_altivelis_2010.tif
-WC_ANN_IDW_Sebastolobus_altivelis_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus altivelis\WC_ANN_IDW_Sebastolobus_altivelis_2011.tif
-WC_ANN_IDW_Sebastolobus_altivelis_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus altivelis\WC_ANN_IDW_Sebastolobus_altivelis_2012.tif
-WC_ANN_IDW_Sebastolobus_altivelis_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus altivelis\WC_ANN_IDW_Sebastolobus_altivelis_2013.tif
-WC_ANN_IDW_Sebastolobus_altivelis_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus altivelis\WC_ANN_IDW_Sebastolobus_altivelis_2014.tif
-WC_ANN_IDW_Sebastolobus_altivelis_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus altivelis\WC_ANN_IDW_Sebastolobus_altivelis_2015.tif
-WC_ANN_IDW_Sebastolobus_altivelis_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus altivelis\WC_ANN_IDW_Sebastolobus_altivelis_2016.tif
-WC_ANN_IDW_Sebastolobus_altivelis_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus altivelis\WC_ANN_IDW_Sebastolobus_altivelis_2017.tif
-WC_ANN_IDW_Sebastolobus_altivelis_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus altivelis\WC_ANN_IDW_Sebastolobus_altivelis_2018.tif
-WC_ANN_IDW_Sebastolobus_altivelis_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus altivelis\WC_ANN_IDW_Sebastolobus_altivelis_2019.tif
-WC_ANN_IDW_Sebastolobus_altivelis_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus altivelis\WC_ANN_IDW_Sebastolobus_altivelis_2021.tif
-WC_ANN_IDW_Sebastolobus_altivelis_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Sebastolobus altivelis\WC_ANN_IDW_Sebastolobus_altivelis_2022.tif
-WC_ANN_IDW_Squalus_suckleyi_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Squalus suckleyi\WC_ANN_IDW_Squalus_suckleyi_2003.tif
-WC_ANN_IDW_Squalus_suckleyi_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Squalus suckleyi\WC_ANN_IDW_Squalus_suckleyi_2004.tif
-WC_ANN_IDW_Squalus_suckleyi_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Squalus suckleyi\WC_ANN_IDW_Squalus_suckleyi_2005.tif
-WC_ANN_IDW_Squalus_suckleyi_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Squalus suckleyi\WC_ANN_IDW_Squalus_suckleyi_2006.tif
-WC_ANN_IDW_Squalus_suckleyi_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Squalus suckleyi\WC_ANN_IDW_Squalus_suckleyi_2007.tif
-WC_ANN_IDW_Squalus_suckleyi_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Squalus suckleyi\WC_ANN_IDW_Squalus_suckleyi_2008.tif
-WC_ANN_IDW_Squalus_suckleyi_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Squalus suckleyi\WC_ANN_IDW_Squalus_suckleyi_2009.tif
-WC_ANN_IDW_Squalus_suckleyi_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Squalus suckleyi\WC_ANN_IDW_Squalus_suckleyi_2010.tif
-WC_ANN_IDW_Squalus_suckleyi_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Squalus suckleyi\WC_ANN_IDW_Squalus_suckleyi_2011.tif
-WC_ANN_IDW_Squalus_suckleyi_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Squalus suckleyi\WC_ANN_IDW_Squalus_suckleyi_2012.tif
-WC_ANN_IDW_Squalus_suckleyi_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Squalus suckleyi\WC_ANN_IDW_Squalus_suckleyi_2013.tif
-WC_ANN_IDW_Squalus_suckleyi_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Squalus suckleyi\WC_ANN_IDW_Squalus_suckleyi_2014.tif
-WC_ANN_IDW_Squalus_suckleyi_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Squalus suckleyi\WC_ANN_IDW_Squalus_suckleyi_2015.tif
-WC_ANN_IDW_Squalus_suckleyi_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Squalus suckleyi\WC_ANN_IDW_Squalus_suckleyi_2016.tif
-WC_ANN_IDW_Squalus_suckleyi_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Squalus suckleyi\WC_ANN_IDW_Squalus_suckleyi_2017.tif
-WC_ANN_IDW_Squalus_suckleyi_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Squalus suckleyi\WC_ANN_IDW_Squalus_suckleyi_2018.tif
-WC_ANN_IDW_Squalus_suckleyi_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Squalus suckleyi\WC_ANN_IDW_Squalus_suckleyi_2019.tif
-WC_ANN_IDW_Squalus_suckleyi_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Squalus suckleyi\WC_ANN_IDW_Squalus_suckleyi_2021.tif
-WC_ANN_IDW_Squalus_suckleyi_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Squalus suckleyi\WC_ANN_IDW_Squalus_suckleyi_2022.tif
-WC_ANN_IDW_Stylasterias_forreri_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Stylasterias forreri\WC_ANN_IDW_Stylasterias_forreri_2003.tif
-WC_ANN_IDW_Stylasterias_forreri_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Stylasterias forreri\WC_ANN_IDW_Stylasterias_forreri_2004.tif
-WC_ANN_IDW_Stylasterias_forreri_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Stylasterias forreri\WC_ANN_IDW_Stylasterias_forreri_2005.tif
-WC_ANN_IDW_Stylasterias_forreri_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Stylasterias forreri\WC_ANN_IDW_Stylasterias_forreri_2006.tif
-WC_ANN_IDW_Stylasterias_forreri_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Stylasterias forreri\WC_ANN_IDW_Stylasterias_forreri_2007.tif
-WC_ANN_IDW_Stylasterias_forreri_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Stylasterias forreri\WC_ANN_IDW_Stylasterias_forreri_2008.tif
-WC_ANN_IDW_Stylasterias_forreri_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Stylasterias forreri\WC_ANN_IDW_Stylasterias_forreri_2009.tif
-WC_ANN_IDW_Stylasterias_forreri_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Stylasterias forreri\WC_ANN_IDW_Stylasterias_forreri_2010.tif
-WC_ANN_IDW_Stylasterias_forreri_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Stylasterias forreri\WC_ANN_IDW_Stylasterias_forreri_2011.tif
-WC_ANN_IDW_Stylasterias_forreri_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Stylasterias forreri\WC_ANN_IDW_Stylasterias_forreri_2012.tif
-WC_ANN_IDW_Stylasterias_forreri_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Stylasterias forreri\WC_ANN_IDW_Stylasterias_forreri_2013.tif
-WC_ANN_IDW_Stylasterias_forreri_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Stylasterias forreri\WC_ANN_IDW_Stylasterias_forreri_2014.tif
-WC_ANN_IDW_Stylasterias_forreri_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Stylasterias forreri\WC_ANN_IDW_Stylasterias_forreri_2015.tif
-WC_ANN_IDW_Stylasterias_forreri_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Stylasterias forreri\WC_ANN_IDW_Stylasterias_forreri_2016.tif
-WC_ANN_IDW_Stylasterias_forreri_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Stylasterias forreri\WC_ANN_IDW_Stylasterias_forreri_2017.tif
-WC_ANN_IDW_Stylasterias_forreri_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Stylasterias forreri\WC_ANN_IDW_Stylasterias_forreri_2018.tif
-WC_ANN_IDW_Stylasterias_forreri_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Stylasterias forreri\WC_ANN_IDW_Stylasterias_forreri_2019.tif
-WC_ANN_IDW_Stylasterias_forreri_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Stylasterias forreri\WC_ANN_IDW_Stylasterias_forreri_2021.tif
-WC_ANN_IDW_Stylasterias_forreri_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Stylasterias forreri\WC_ANN_IDW_Stylasterias_forreri_2022.tif
-WC_ANN_IDW_Talismania_bifurcata_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Talismania bifurcata\WC_ANN_IDW_Talismania_bifurcata_2003.tif
-WC_ANN_IDW_Talismania_bifurcata_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Talismania bifurcata\WC_ANN_IDW_Talismania_bifurcata_2004.tif
-WC_ANN_IDW_Talismania_bifurcata_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Talismania bifurcata\WC_ANN_IDW_Talismania_bifurcata_2005.tif
-WC_ANN_IDW_Talismania_bifurcata_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Talismania bifurcata\WC_ANN_IDW_Talismania_bifurcata_2006.tif
-WC_ANN_IDW_Talismania_bifurcata_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Talismania bifurcata\WC_ANN_IDW_Talismania_bifurcata_2007.tif
-WC_ANN_IDW_Talismania_bifurcata_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Talismania bifurcata\WC_ANN_IDW_Talismania_bifurcata_2008.tif
-WC_ANN_IDW_Talismania_bifurcata_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Talismania bifurcata\WC_ANN_IDW_Talismania_bifurcata_2009.tif
-WC_ANN_IDW_Talismania_bifurcata_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Talismania bifurcata\WC_ANN_IDW_Talismania_bifurcata_2010.tif
-WC_ANN_IDW_Talismania_bifurcata_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Talismania bifurcata\WC_ANN_IDW_Talismania_bifurcata_2011.tif
-WC_ANN_IDW_Talismania_bifurcata_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Talismania bifurcata\WC_ANN_IDW_Talismania_bifurcata_2012.tif
-WC_ANN_IDW_Talismania_bifurcata_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Talismania bifurcata\WC_ANN_IDW_Talismania_bifurcata_2013.tif
-WC_ANN_IDW_Talismania_bifurcata_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Talismania bifurcata\WC_ANN_IDW_Talismania_bifurcata_2014.tif
-WC_ANN_IDW_Talismania_bifurcata_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Talismania bifurcata\WC_ANN_IDW_Talismania_bifurcata_2015.tif
-WC_ANN_IDW_Talismania_bifurcata_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Talismania bifurcata\WC_ANN_IDW_Talismania_bifurcata_2016.tif
-WC_ANN_IDW_Talismania_bifurcata_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Talismania bifurcata\WC_ANN_IDW_Talismania_bifurcata_2017.tif
-WC_ANN_IDW_Talismania_bifurcata_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Talismania bifurcata\WC_ANN_IDW_Talismania_bifurcata_2018.tif
-WC_ANN_IDW_Talismania_bifurcata_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Talismania bifurcata\WC_ANN_IDW_Talismania_bifurcata_2019.tif
-WC_ANN_IDW_Talismania_bifurcata_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Talismania bifurcata\WC_ANN_IDW_Talismania_bifurcata_2021.tif
-WC_ANN_IDW_Talismania_bifurcata_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Talismania bifurcata\WC_ANN_IDW_Talismania_bifurcata_2022.tif
-WC_ANN_IDW_Thrissacanthias_penicillatus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Thrissacanthias penicillatus\WC_ANN_IDW_Thrissacanthias_penicillatus_2003.tif
-WC_ANN_IDW_Thrissacanthias_penicillatus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Thrissacanthias penicillatus\WC_ANN_IDW_Thrissacanthias_penicillatus_2004.tif
-WC_ANN_IDW_Thrissacanthias_penicillatus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Thrissacanthias penicillatus\WC_ANN_IDW_Thrissacanthias_penicillatus_2005.tif
-WC_ANN_IDW_Thrissacanthias_penicillatus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Thrissacanthias penicillatus\WC_ANN_IDW_Thrissacanthias_penicillatus_2006.tif
-WC_ANN_IDW_Thrissacanthias_penicillatus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Thrissacanthias penicillatus\WC_ANN_IDW_Thrissacanthias_penicillatus_2007.tif
-WC_ANN_IDW_Thrissacanthias_penicillatus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Thrissacanthias penicillatus\WC_ANN_IDW_Thrissacanthias_penicillatus_2008.tif
-WC_ANN_IDW_Thrissacanthias_penicillatus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Thrissacanthias penicillatus\WC_ANN_IDW_Thrissacanthias_penicillatus_2009.tif
-WC_ANN_IDW_Thrissacanthias_penicillatus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Thrissacanthias penicillatus\WC_ANN_IDW_Thrissacanthias_penicillatus_2010.tif
-WC_ANN_IDW_Thrissacanthias_penicillatus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Thrissacanthias penicillatus\WC_ANN_IDW_Thrissacanthias_penicillatus_2011.tif
-WC_ANN_IDW_Thrissacanthias_penicillatus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Thrissacanthias penicillatus\WC_ANN_IDW_Thrissacanthias_penicillatus_2012.tif
-WC_ANN_IDW_Thrissacanthias_penicillatus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Thrissacanthias penicillatus\WC_ANN_IDW_Thrissacanthias_penicillatus_2013.tif
-WC_ANN_IDW_Thrissacanthias_penicillatus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Thrissacanthias penicillatus\WC_ANN_IDW_Thrissacanthias_penicillatus_2014.tif
-WC_ANN_IDW_Thrissacanthias_penicillatus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Thrissacanthias penicillatus\WC_ANN_IDW_Thrissacanthias_penicillatus_2015.tif
-WC_ANN_IDW_Thrissacanthias_penicillatus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Thrissacanthias penicillatus\WC_ANN_IDW_Thrissacanthias_penicillatus_2016.tif
-WC_ANN_IDW_Thrissacanthias_penicillatus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Thrissacanthias penicillatus\WC_ANN_IDW_Thrissacanthias_penicillatus_2017.tif
-WC_ANN_IDW_Thrissacanthias_penicillatus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Thrissacanthias penicillatus\WC_ANN_IDW_Thrissacanthias_penicillatus_2018.tif
-WC_ANN_IDW_Thrissacanthias_penicillatus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Thrissacanthias penicillatus\WC_ANN_IDW_Thrissacanthias_penicillatus_2019.tif
-WC_ANN_IDW_Thrissacanthias_penicillatus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Thrissacanthias penicillatus\WC_ANN_IDW_Thrissacanthias_penicillatus_2021.tif
-WC_ANN_IDW_Thrissacanthias_penicillatus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Thrissacanthias penicillatus\WC_ANN_IDW_Thrissacanthias_penicillatus_2022.tif
-WC_ANN_IDW_Tritonia_tetraquetra_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Tritonia tetraquetra\WC_ANN_IDW_Tritonia_tetraquetra_2003.tif
-WC_ANN_IDW_Tritonia_tetraquetra_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Tritonia tetraquetra\WC_ANN_IDW_Tritonia_tetraquetra_2004.tif
-WC_ANN_IDW_Tritonia_tetraquetra_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Tritonia tetraquetra\WC_ANN_IDW_Tritonia_tetraquetra_2005.tif
-WC_ANN_IDW_Tritonia_tetraquetra_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Tritonia tetraquetra\WC_ANN_IDW_Tritonia_tetraquetra_2006.tif
-WC_ANN_IDW_Tritonia_tetraquetra_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Tritonia tetraquetra\WC_ANN_IDW_Tritonia_tetraquetra_2007.tif
-WC_ANN_IDW_Tritonia_tetraquetra_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Tritonia tetraquetra\WC_ANN_IDW_Tritonia_tetraquetra_2008.tif
-WC_ANN_IDW_Tritonia_tetraquetra_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Tritonia tetraquetra\WC_ANN_IDW_Tritonia_tetraquetra_2009.tif
-WC_ANN_IDW_Tritonia_tetraquetra_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Tritonia tetraquetra\WC_ANN_IDW_Tritonia_tetraquetra_2010.tif
-WC_ANN_IDW_Tritonia_tetraquetra_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Tritonia tetraquetra\WC_ANN_IDW_Tritonia_tetraquetra_2011.tif
-WC_ANN_IDW_Tritonia_tetraquetra_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Tritonia tetraquetra\WC_ANN_IDW_Tritonia_tetraquetra_2012.tif
-WC_ANN_IDW_Tritonia_tetraquetra_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Tritonia tetraquetra\WC_ANN_IDW_Tritonia_tetraquetra_2013.tif
-WC_ANN_IDW_Tritonia_tetraquetra_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Tritonia tetraquetra\WC_ANN_IDW_Tritonia_tetraquetra_2014.tif
-WC_ANN_IDW_Tritonia_tetraquetra_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Tritonia tetraquetra\WC_ANN_IDW_Tritonia_tetraquetra_2015.tif
-WC_ANN_IDW_Tritonia_tetraquetra_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Tritonia tetraquetra\WC_ANN_IDW_Tritonia_tetraquetra_2016.tif
-WC_ANN_IDW_Tritonia_tetraquetra_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Tritonia tetraquetra\WC_ANN_IDW_Tritonia_tetraquetra_2017.tif
-WC_ANN_IDW_Tritonia_tetraquetra_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Tritonia tetraquetra\WC_ANN_IDW_Tritonia_tetraquetra_2018.tif
-WC_ANN_IDW_Tritonia_tetraquetra_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Tritonia tetraquetra\WC_ANN_IDW_Tritonia_tetraquetra_2019.tif
-WC_ANN_IDW_Tritonia_tetraquetra_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Tritonia tetraquetra\WC_ANN_IDW_Tritonia_tetraquetra_2021.tif
-WC_ANN_IDW_Tritonia_tetraquetra_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Tritonia tetraquetra\WC_ANN_IDW_Tritonia_tetraquetra_2022.tif
-WC_ANN_IDW_Zalembius_rosaceus_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zalembius rosaceus\WC_ANN_IDW_Zalembius_rosaceus_2003.tif
-WC_ANN_IDW_Zalembius_rosaceus_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zalembius rosaceus\WC_ANN_IDW_Zalembius_rosaceus_2004.tif
-WC_ANN_IDW_Zalembius_rosaceus_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zalembius rosaceus\WC_ANN_IDW_Zalembius_rosaceus_2005.tif
-WC_ANN_IDW_Zalembius_rosaceus_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zalembius rosaceus\WC_ANN_IDW_Zalembius_rosaceus_2006.tif
-WC_ANN_IDW_Zalembius_rosaceus_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zalembius rosaceus\WC_ANN_IDW_Zalembius_rosaceus_2007.tif
-WC_ANN_IDW_Zalembius_rosaceus_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zalembius rosaceus\WC_ANN_IDW_Zalembius_rosaceus_2008.tif
-WC_ANN_IDW_Zalembius_rosaceus_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zalembius rosaceus\WC_ANN_IDW_Zalembius_rosaceus_2009.tif
-WC_ANN_IDW_Zalembius_rosaceus_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zalembius rosaceus\WC_ANN_IDW_Zalembius_rosaceus_2010.tif
-WC_ANN_IDW_Zalembius_rosaceus_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zalembius rosaceus\WC_ANN_IDW_Zalembius_rosaceus_2011.tif
-WC_ANN_IDW_Zalembius_rosaceus_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zalembius rosaceus\WC_ANN_IDW_Zalembius_rosaceus_2012.tif
-WC_ANN_IDW_Zalembius_rosaceus_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zalembius rosaceus\WC_ANN_IDW_Zalembius_rosaceus_2013.tif
-WC_ANN_IDW_Zalembius_rosaceus_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zalembius rosaceus\WC_ANN_IDW_Zalembius_rosaceus_2014.tif
-WC_ANN_IDW_Zalembius_rosaceus_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zalembius rosaceus\WC_ANN_IDW_Zalembius_rosaceus_2015.tif
-WC_ANN_IDW_Zalembius_rosaceus_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zalembius rosaceus\WC_ANN_IDW_Zalembius_rosaceus_2016.tif
-WC_ANN_IDW_Zalembius_rosaceus_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zalembius rosaceus\WC_ANN_IDW_Zalembius_rosaceus_2017.tif
-WC_ANN_IDW_Zalembius_rosaceus_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zalembius rosaceus\WC_ANN_IDW_Zalembius_rosaceus_2018.tif
-WC_ANN_IDW_Zalembius_rosaceus_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zalembius rosaceus\WC_ANN_IDW_Zalembius_rosaceus_2019.tif
-WC_ANN_IDW_Zalembius_rosaceus_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zalembius rosaceus\WC_ANN_IDW_Zalembius_rosaceus_2021.tif
-WC_ANN_IDW_Zalembius_rosaceus_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zalembius rosaceus\WC_ANN_IDW_Zalembius_rosaceus_2022.tif
-WC_ANN_IDW_Zaniolepis_latipinnis_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zaniolepis latipinnis\WC_ANN_IDW_Zaniolepis_latipinnis_2003.tif
-WC_ANN_IDW_Zaniolepis_latipinnis_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zaniolepis latipinnis\WC_ANN_IDW_Zaniolepis_latipinnis_2004.tif
-WC_ANN_IDW_Zaniolepis_latipinnis_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zaniolepis latipinnis\WC_ANN_IDW_Zaniolepis_latipinnis_2005.tif
-WC_ANN_IDW_Zaniolepis_latipinnis_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zaniolepis latipinnis\WC_ANN_IDW_Zaniolepis_latipinnis_2006.tif
-WC_ANN_IDW_Zaniolepis_latipinnis_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zaniolepis latipinnis\WC_ANN_IDW_Zaniolepis_latipinnis_2007.tif
-WC_ANN_IDW_Zaniolepis_latipinnis_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zaniolepis latipinnis\WC_ANN_IDW_Zaniolepis_latipinnis_2008.tif
-WC_ANN_IDW_Zaniolepis_latipinnis_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zaniolepis latipinnis\WC_ANN_IDW_Zaniolepis_latipinnis_2009.tif
-WC_ANN_IDW_Zaniolepis_latipinnis_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zaniolepis latipinnis\WC_ANN_IDW_Zaniolepis_latipinnis_2010.tif
-WC_ANN_IDW_Zaniolepis_latipinnis_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zaniolepis latipinnis\WC_ANN_IDW_Zaniolepis_latipinnis_2011.tif
-WC_ANN_IDW_Zaniolepis_latipinnis_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zaniolepis latipinnis\WC_ANN_IDW_Zaniolepis_latipinnis_2012.tif
-WC_ANN_IDW_Zaniolepis_latipinnis_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zaniolepis latipinnis\WC_ANN_IDW_Zaniolepis_latipinnis_2013.tif
-WC_ANN_IDW_Zaniolepis_latipinnis_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zaniolepis latipinnis\WC_ANN_IDW_Zaniolepis_latipinnis_2014.tif
-WC_ANN_IDW_Zaniolepis_latipinnis_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zaniolepis latipinnis\WC_ANN_IDW_Zaniolepis_latipinnis_2015.tif
-WC_ANN_IDW_Zaniolepis_latipinnis_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zaniolepis latipinnis\WC_ANN_IDW_Zaniolepis_latipinnis_2016.tif
-WC_ANN_IDW_Zaniolepis_latipinnis_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zaniolepis latipinnis\WC_ANN_IDW_Zaniolepis_latipinnis_2017.tif
-WC_ANN_IDW_Zaniolepis_latipinnis_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zaniolepis latipinnis\WC_ANN_IDW_Zaniolepis_latipinnis_2018.tif
-WC_ANN_IDW_Zaniolepis_latipinnis_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zaniolepis latipinnis\WC_ANN_IDW_Zaniolepis_latipinnis_2019.tif
-WC_ANN_IDW_Zaniolepis_latipinnis_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zaniolepis latipinnis\WC_ANN_IDW_Zaniolepis_latipinnis_2021.tif
-WC_ANN_IDW_Zaniolepis_latipinnis_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\Zaniolepis latipinnis\WC_ANN_IDW_Zaniolepis_latipinnis_2022.tif
-WC_ANN_IDW_Core_Species_Richness_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Core Species Richness\WC_ANN_IDW_Core_Species_Richness_2003.tif
-WC_ANN_IDW_Core_Species_Richness_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Core Species Richness\WC_ANN_IDW_Core_Species_Richness_2004.tif
-WC_ANN_IDW_Core_Species_Richness_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Core Species Richness\WC_ANN_IDW_Core_Species_Richness_2005.tif
-WC_ANN_IDW_Core_Species_Richness_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Core Species Richness\WC_ANN_IDW_Core_Species_Richness_2006.tif
-WC_ANN_IDW_Core_Species_Richness_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Core Species Richness\WC_ANN_IDW_Core_Species_Richness_2007.tif
-WC_ANN_IDW_Core_Species_Richness_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Core Species Richness\WC_ANN_IDW_Core_Species_Richness_2008.tif
-WC_ANN_IDW_Core_Species_Richness_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Core Species Richness\WC_ANN_IDW_Core_Species_Richness_2009.tif
-WC_ANN_IDW_Core_Species_Richness_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Core Species Richness\WC_ANN_IDW_Core_Species_Richness_2010.tif
-WC_ANN_IDW_Core_Species_Richness_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Core Species Richness\WC_ANN_IDW_Core_Species_Richness_2011.tif
-WC_ANN_IDW_Core_Species_Richness_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Core Species Richness\WC_ANN_IDW_Core_Species_Richness_2012.tif
-WC_ANN_IDW_Core_Species_Richness_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Core Species Richness\WC_ANN_IDW_Core_Species_Richness_2013.tif
-WC_ANN_IDW_Core_Species_Richness_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Core Species Richness\WC_ANN_IDW_Core_Species_Richness_2014.tif
-WC_ANN_IDW_Core_Species_Richness_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Core Species Richness\WC_ANN_IDW_Core_Species_Richness_2015.tif
-WC_ANN_IDW_Core_Species_Richness_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Core Species Richness\WC_ANN_IDW_Core_Species_Richness_2016.tif
-WC_ANN_IDW_Core_Species_Richness_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Core Species Richness\WC_ANN_IDW_Core_Species_Richness_2017.tif
-WC_ANN_IDW_Core_Species_Richness_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Core Species Richness\WC_ANN_IDW_Core_Species_Richness_2018.tif
-WC_ANN_IDW_Core_Species_Richness_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Core Species Richness\WC_ANN_IDW_Core_Species_Richness_2019.tif
-WC_ANN_IDW_Core_Species_Richness_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Core Species Richness\WC_ANN_IDW_Core_Species_Richness_2021.tif
-WC_ANN_IDW_Core_Species_Richness_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Core Species Richness\WC_ANN_IDW_Core_Species_Richness_2022.tif
-WC_ANN_IDW_Species_Richness_2003.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Species Richness\WC_ANN_IDW_Species_Richness_2003.tif
-WC_ANN_IDW_Species_Richness_2004.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Species Richness\WC_ANN_IDW_Species_Richness_2004.tif
-WC_ANN_IDW_Species_Richness_2005.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Species Richness\WC_ANN_IDW_Species_Richness_2005.tif
-WC_ANN_IDW_Species_Richness_2006.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Species Richness\WC_ANN_IDW_Species_Richness_2006.tif
-WC_ANN_IDW_Species_Richness_2007.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Species Richness\WC_ANN_IDW_Species_Richness_2007.tif
-WC_ANN_IDW_Species_Richness_2008.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Species Richness\WC_ANN_IDW_Species_Richness_2008.tif
-WC_ANN_IDW_Species_Richness_2009.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Species Richness\WC_ANN_IDW_Species_Richness_2009.tif
-WC_ANN_IDW_Species_Richness_2010.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Species Richness\WC_ANN_IDW_Species_Richness_2010.tif
-WC_ANN_IDW_Species_Richness_2011.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Species Richness\WC_ANN_IDW_Species_Richness_2011.tif
-WC_ANN_IDW_Species_Richness_2012.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Species Richness\WC_ANN_IDW_Species_Richness_2012.tif
-WC_ANN_IDW_Species_Richness_2013.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Species Richness\WC_ANN_IDW_Species_Richness_2013.tif
-WC_ANN_IDW_Species_Richness_2014.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Species Richness\WC_ANN_IDW_Species_Richness_2014.tif
-WC_ANN_IDW_Species_Richness_2015.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Species Richness\WC_ANN_IDW_Species_Richness_2015.tif
-WC_ANN_IDW_Species_Richness_2016.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Species Richness\WC_ANN_IDW_Species_Richness_2016.tif
-WC_ANN_IDW_Species_Richness_2017.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Species Richness\WC_ANN_IDW_Species_Richness_2017.tif
-WC_ANN_IDW_Species_Richness_2018.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Species Richness\WC_ANN_IDW_Species_Richness_2018.tif
-WC_ANN_IDW_Species_Richness_2019.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Species Richness\WC_ANN_IDW_Species_Richness_2019.tif
-WC_ANN_IDW_Species_Richness_2021.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Species Richness\WC_ANN_IDW_Species_Richness_2021.tif
-WC_ANN_IDW_Species_Richness_2022.tif,.tif,2.00 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:26:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_ANN_IDW\_Species Richness\WC_ANN_IDW_Species_Richness_2022.tif
-WC_TRI_IDW_Alosa_sapidissima_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Alosa sapidissima\WC_TRI_IDW_Alosa_sapidissima_1977.tif
-WC_TRI_IDW_Alosa_sapidissima_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Alosa sapidissima\WC_TRI_IDW_Alosa_sapidissima_1980.tif
-WC_TRI_IDW_Alosa_sapidissima_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Alosa sapidissima\WC_TRI_IDW_Alosa_sapidissima_1983.tif
-WC_TRI_IDW_Alosa_sapidissima_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Alosa sapidissima\WC_TRI_IDW_Alosa_sapidissima_1986.tif
-WC_TRI_IDW_Alosa_sapidissima_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Alosa sapidissima\WC_TRI_IDW_Alosa_sapidissima_1989.tif
-WC_TRI_IDW_Alosa_sapidissima_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Alosa sapidissima\WC_TRI_IDW_Alosa_sapidissima_1992.tif
-WC_TRI_IDW_Alosa_sapidissima_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Alosa sapidissima\WC_TRI_IDW_Alosa_sapidissima_1995.tif
-WC_TRI_IDW_Alosa_sapidissima_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Alosa sapidissima\WC_TRI_IDW_Alosa_sapidissima_1998.tif
-WC_TRI_IDW_Alosa_sapidissima_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Alosa sapidissima\WC_TRI_IDW_Alosa_sapidissima_2001.tif
-WC_TRI_IDW_Alosa_sapidissima_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Alosa sapidissima\WC_TRI_IDW_Alosa_sapidissima_2004.tif
-WC_TRI_IDW_Anoplopoma_fimbria_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Anoplopoma fimbria\WC_TRI_IDW_Anoplopoma_fimbria_1977.tif
-WC_TRI_IDW_Anoplopoma_fimbria_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Anoplopoma fimbria\WC_TRI_IDW_Anoplopoma_fimbria_1980.tif
-WC_TRI_IDW_Anoplopoma_fimbria_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Anoplopoma fimbria\WC_TRI_IDW_Anoplopoma_fimbria_1983.tif
-WC_TRI_IDW_Anoplopoma_fimbria_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Anoplopoma fimbria\WC_TRI_IDW_Anoplopoma_fimbria_1986.tif
-WC_TRI_IDW_Anoplopoma_fimbria_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Anoplopoma fimbria\WC_TRI_IDW_Anoplopoma_fimbria_1989.tif
-WC_TRI_IDW_Anoplopoma_fimbria_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Anoplopoma fimbria\WC_TRI_IDW_Anoplopoma_fimbria_1992.tif
-WC_TRI_IDW_Anoplopoma_fimbria_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Anoplopoma fimbria\WC_TRI_IDW_Anoplopoma_fimbria_1995.tif
-WC_TRI_IDW_Anoplopoma_fimbria_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Anoplopoma fimbria\WC_TRI_IDW_Anoplopoma_fimbria_1998.tif
-WC_TRI_IDW_Anoplopoma_fimbria_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Anoplopoma fimbria\WC_TRI_IDW_Anoplopoma_fimbria_2001.tif
-WC_TRI_IDW_Anoplopoma_fimbria_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Anoplopoma fimbria\WC_TRI_IDW_Anoplopoma_fimbria_2004.tif
-WC_TRI_IDW_Atheresthes_stomias_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Atheresthes stomias\WC_TRI_IDW_Atheresthes_stomias_1977.tif
-WC_TRI_IDW_Atheresthes_stomias_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Atheresthes stomias\WC_TRI_IDW_Atheresthes_stomias_1980.tif
-WC_TRI_IDW_Atheresthes_stomias_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Atheresthes stomias\WC_TRI_IDW_Atheresthes_stomias_1983.tif
-WC_TRI_IDW_Atheresthes_stomias_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Atheresthes stomias\WC_TRI_IDW_Atheresthes_stomias_1986.tif
-WC_TRI_IDW_Atheresthes_stomias_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Atheresthes stomias\WC_TRI_IDW_Atheresthes_stomias_1989.tif
-WC_TRI_IDW_Atheresthes_stomias_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Atheresthes stomias\WC_TRI_IDW_Atheresthes_stomias_1992.tif
-WC_TRI_IDW_Atheresthes_stomias_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Atheresthes stomias\WC_TRI_IDW_Atheresthes_stomias_1995.tif
-WC_TRI_IDW_Atheresthes_stomias_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Atheresthes stomias\WC_TRI_IDW_Atheresthes_stomias_1998.tif
-WC_TRI_IDW_Atheresthes_stomias_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Atheresthes stomias\WC_TRI_IDW_Atheresthes_stomias_2001.tif
-WC_TRI_IDW_Atheresthes_stomias_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Atheresthes stomias\WC_TRI_IDW_Atheresthes_stomias_2004.tif
-WC_TRI_IDW_Bathyraja_spp_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Bathyraja spp\WC_TRI_IDW_Bathyraja_spp_1977.tif
-WC_TRI_IDW_Bathyraja_spp_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Bathyraja spp\WC_TRI_IDW_Bathyraja_spp_1980.tif
-WC_TRI_IDW_Bathyraja_spp_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Bathyraja spp\WC_TRI_IDW_Bathyraja_spp_1983.tif
-WC_TRI_IDW_Bathyraja_spp_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Bathyraja spp\WC_TRI_IDW_Bathyraja_spp_1986.tif
-WC_TRI_IDW_Bathyraja_spp_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Bathyraja spp\WC_TRI_IDW_Bathyraja_spp_1989.tif
-WC_TRI_IDW_Bathyraja_spp_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Bathyraja spp\WC_TRI_IDW_Bathyraja_spp_1992.tif
-WC_TRI_IDW_Bathyraja_spp_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Bathyraja spp\WC_TRI_IDW_Bathyraja_spp_1995.tif
-WC_TRI_IDW_Bathyraja_spp_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Bathyraja spp\WC_TRI_IDW_Bathyraja_spp_1998.tif
-WC_TRI_IDW_Bathyraja_spp_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Bathyraja spp\WC_TRI_IDW_Bathyraja_spp_2001.tif
-WC_TRI_IDW_Bathyraja_spp_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Bathyraja spp\WC_TRI_IDW_Bathyraja_spp_2004.tif
-WC_TRI_IDW_Beringraja_binoculata_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Beringraja binoculata\WC_TRI_IDW_Beringraja_binoculata_1977.tif
-WC_TRI_IDW_Beringraja_binoculata_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Beringraja binoculata\WC_TRI_IDW_Beringraja_binoculata_1980.tif
-WC_TRI_IDW_Beringraja_binoculata_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Beringraja binoculata\WC_TRI_IDW_Beringraja_binoculata_1983.tif
-WC_TRI_IDW_Beringraja_binoculata_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Beringraja binoculata\WC_TRI_IDW_Beringraja_binoculata_1986.tif
-WC_TRI_IDW_Beringraja_binoculata_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Beringraja binoculata\WC_TRI_IDW_Beringraja_binoculata_1989.tif
-WC_TRI_IDW_Beringraja_binoculata_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Beringraja binoculata\WC_TRI_IDW_Beringraja_binoculata_1992.tif
-WC_TRI_IDW_Beringraja_binoculata_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Beringraja binoculata\WC_TRI_IDW_Beringraja_binoculata_1995.tif
-WC_TRI_IDW_Beringraja_binoculata_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Beringraja binoculata\WC_TRI_IDW_Beringraja_binoculata_1998.tif
-WC_TRI_IDW_Beringraja_binoculata_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Beringraja binoculata\WC_TRI_IDW_Beringraja_binoculata_2001.tif
-WC_TRI_IDW_Beringraja_binoculata_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Beringraja binoculata\WC_TRI_IDW_Beringraja_binoculata_2004.tif
-WC_TRI_IDW_Beringraja_rhina_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Beringraja rhina\WC_TRI_IDW_Beringraja_rhina_1977.tif
-WC_TRI_IDW_Beringraja_rhina_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Beringraja rhina\WC_TRI_IDW_Beringraja_rhina_1980.tif
-WC_TRI_IDW_Beringraja_rhina_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Beringraja rhina\WC_TRI_IDW_Beringraja_rhina_1983.tif
-WC_TRI_IDW_Beringraja_rhina_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Beringraja rhina\WC_TRI_IDW_Beringraja_rhina_1986.tif
-WC_TRI_IDW_Beringraja_rhina_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Beringraja rhina\WC_TRI_IDW_Beringraja_rhina_1989.tif
-WC_TRI_IDW_Beringraja_rhina_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Beringraja rhina\WC_TRI_IDW_Beringraja_rhina_1992.tif
-WC_TRI_IDW_Beringraja_rhina_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Beringraja rhina\WC_TRI_IDW_Beringraja_rhina_1995.tif
-WC_TRI_IDW_Beringraja_rhina_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Beringraja rhina\WC_TRI_IDW_Beringraja_rhina_1998.tif
-WC_TRI_IDW_Beringraja_rhina_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Beringraja rhina\WC_TRI_IDW_Beringraja_rhina_2001.tif
-WC_TRI_IDW_Beringraja_rhina_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Beringraja rhina\WC_TRI_IDW_Beringraja_rhina_2004.tif
-WC_TRI_IDW_Citharichthys_sordidus_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Citharichthys sordidus\WC_TRI_IDW_Citharichthys_sordidus_1977.tif
-WC_TRI_IDW_Citharichthys_sordidus_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Citharichthys sordidus\WC_TRI_IDW_Citharichthys_sordidus_1980.tif
-WC_TRI_IDW_Citharichthys_sordidus_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Citharichthys sordidus\WC_TRI_IDW_Citharichthys_sordidus_1983.tif
-WC_TRI_IDW_Citharichthys_sordidus_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Citharichthys sordidus\WC_TRI_IDW_Citharichthys_sordidus_1986.tif
-WC_TRI_IDW_Citharichthys_sordidus_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Citharichthys sordidus\WC_TRI_IDW_Citharichthys_sordidus_1989.tif
-WC_TRI_IDW_Citharichthys_sordidus_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Citharichthys sordidus\WC_TRI_IDW_Citharichthys_sordidus_1992.tif
-WC_TRI_IDW_Citharichthys_sordidus_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Citharichthys sordidus\WC_TRI_IDW_Citharichthys_sordidus_1995.tif
-WC_TRI_IDW_Citharichthys_sordidus_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Citharichthys sordidus\WC_TRI_IDW_Citharichthys_sordidus_1998.tif
-WC_TRI_IDW_Citharichthys_sordidus_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Citharichthys sordidus\WC_TRI_IDW_Citharichthys_sordidus_2001.tif
-WC_TRI_IDW_Citharichthys_sordidus_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Citharichthys sordidus\WC_TRI_IDW_Citharichthys_sordidus_2004.tif
-WC_TRI_IDW_Clupea_pallasii_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Clupea pallasii\WC_TRI_IDW_Clupea_pallasii_1977.tif
-WC_TRI_IDW_Clupea_pallasii_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Clupea pallasii\WC_TRI_IDW_Clupea_pallasii_1980.tif
-WC_TRI_IDW_Clupea_pallasii_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Clupea pallasii\WC_TRI_IDW_Clupea_pallasii_1983.tif
-WC_TRI_IDW_Clupea_pallasii_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Clupea pallasii\WC_TRI_IDW_Clupea_pallasii_1986.tif
-WC_TRI_IDW_Clupea_pallasii_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Clupea pallasii\WC_TRI_IDW_Clupea_pallasii_1989.tif
-WC_TRI_IDW_Clupea_pallasii_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Clupea pallasii\WC_TRI_IDW_Clupea_pallasii_1992.tif
-WC_TRI_IDW_Clupea_pallasii_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Clupea pallasii\WC_TRI_IDW_Clupea_pallasii_1995.tif
-WC_TRI_IDW_Clupea_pallasii_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Clupea pallasii\WC_TRI_IDW_Clupea_pallasii_1998.tif
-WC_TRI_IDW_Clupea_pallasii_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Clupea pallasii\WC_TRI_IDW_Clupea_pallasii_2001.tif
-WC_TRI_IDW_Clupea_pallasii_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Clupea pallasii\WC_TRI_IDW_Clupea_pallasii_2004.tif
-WC_TRI_IDW_Doryteuthis_opalescens_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Doryteuthis opalescens\WC_TRI_IDW_Doryteuthis_opalescens_1977.tif
-WC_TRI_IDW_Doryteuthis_opalescens_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Doryteuthis opalescens\WC_TRI_IDW_Doryteuthis_opalescens_1980.tif
-WC_TRI_IDW_Doryteuthis_opalescens_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Doryteuthis opalescens\WC_TRI_IDW_Doryteuthis_opalescens_1983.tif
-WC_TRI_IDW_Doryteuthis_opalescens_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Doryteuthis opalescens\WC_TRI_IDW_Doryteuthis_opalescens_1986.tif
-WC_TRI_IDW_Doryteuthis_opalescens_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Doryteuthis opalescens\WC_TRI_IDW_Doryteuthis_opalescens_1989.tif
-WC_TRI_IDW_Doryteuthis_opalescens_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Doryteuthis opalescens\WC_TRI_IDW_Doryteuthis_opalescens_1992.tif
-WC_TRI_IDW_Doryteuthis_opalescens_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Doryteuthis opalescens\WC_TRI_IDW_Doryteuthis_opalescens_1995.tif
-WC_TRI_IDW_Doryteuthis_opalescens_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Doryteuthis opalescens\WC_TRI_IDW_Doryteuthis_opalescens_1998.tif
-WC_TRI_IDW_Doryteuthis_opalescens_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Doryteuthis opalescens\WC_TRI_IDW_Doryteuthis_opalescens_2001.tif
-WC_TRI_IDW_Doryteuthis_opalescens_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Doryteuthis opalescens\WC_TRI_IDW_Doryteuthis_opalescens_2004.tif
-WC_TRI_IDW_Eopsetta_jordani_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Eopsetta jordani\WC_TRI_IDW_Eopsetta_jordani_1977.tif
-WC_TRI_IDW_Eopsetta_jordani_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Eopsetta jordani\WC_TRI_IDW_Eopsetta_jordani_1980.tif
-WC_TRI_IDW_Eopsetta_jordani_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Eopsetta jordani\WC_TRI_IDW_Eopsetta_jordani_1983.tif
-WC_TRI_IDW_Eopsetta_jordani_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Eopsetta jordani\WC_TRI_IDW_Eopsetta_jordani_1986.tif
-WC_TRI_IDW_Eopsetta_jordani_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Eopsetta jordani\WC_TRI_IDW_Eopsetta_jordani_1989.tif
-WC_TRI_IDW_Eopsetta_jordani_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Eopsetta jordani\WC_TRI_IDW_Eopsetta_jordani_1992.tif
-WC_TRI_IDW_Eopsetta_jordani_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Eopsetta jordani\WC_TRI_IDW_Eopsetta_jordani_1995.tif
-WC_TRI_IDW_Eopsetta_jordani_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Eopsetta jordani\WC_TRI_IDW_Eopsetta_jordani_1998.tif
-WC_TRI_IDW_Eopsetta_jordani_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Eopsetta jordani\WC_TRI_IDW_Eopsetta_jordani_2001.tif
-WC_TRI_IDW_Eopsetta_jordani_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Eopsetta jordani\WC_TRI_IDW_Eopsetta_jordani_2004.tif
-WC_TRI_IDW_Gadus_chalcogrammus_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gadus chalcogrammus\WC_TRI_IDW_Gadus_chalcogrammus_1977.tif
-WC_TRI_IDW_Gadus_chalcogrammus_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gadus chalcogrammus\WC_TRI_IDW_Gadus_chalcogrammus_1980.tif
-WC_TRI_IDW_Gadus_chalcogrammus_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gadus chalcogrammus\WC_TRI_IDW_Gadus_chalcogrammus_1983.tif
-WC_TRI_IDW_Gadus_chalcogrammus_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gadus chalcogrammus\WC_TRI_IDW_Gadus_chalcogrammus_1986.tif
-WC_TRI_IDW_Gadus_chalcogrammus_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gadus chalcogrammus\WC_TRI_IDW_Gadus_chalcogrammus_1989.tif
-WC_TRI_IDW_Gadus_chalcogrammus_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gadus chalcogrammus\WC_TRI_IDW_Gadus_chalcogrammus_1992.tif
-WC_TRI_IDW_Gadus_chalcogrammus_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gadus chalcogrammus\WC_TRI_IDW_Gadus_chalcogrammus_1995.tif
-WC_TRI_IDW_Gadus_chalcogrammus_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gadus chalcogrammus\WC_TRI_IDW_Gadus_chalcogrammus_1998.tif
-WC_TRI_IDW_Gadus_chalcogrammus_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gadus chalcogrammus\WC_TRI_IDW_Gadus_chalcogrammus_2001.tif
-WC_TRI_IDW_Gadus_chalcogrammus_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gadus chalcogrammus\WC_TRI_IDW_Gadus_chalcogrammus_2004.tif
-WC_TRI_IDW_Gadus_macrocephalus_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gadus macrocephalus\WC_TRI_IDW_Gadus_macrocephalus_1977.tif
-WC_TRI_IDW_Gadus_macrocephalus_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gadus macrocephalus\WC_TRI_IDW_Gadus_macrocephalus_1980.tif
-WC_TRI_IDW_Gadus_macrocephalus_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gadus macrocephalus\WC_TRI_IDW_Gadus_macrocephalus_1983.tif
-WC_TRI_IDW_Gadus_macrocephalus_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gadus macrocephalus\WC_TRI_IDW_Gadus_macrocephalus_1986.tif
-WC_TRI_IDW_Gadus_macrocephalus_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gadus macrocephalus\WC_TRI_IDW_Gadus_macrocephalus_1989.tif
-WC_TRI_IDW_Gadus_macrocephalus_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gadus macrocephalus\WC_TRI_IDW_Gadus_macrocephalus_1992.tif
-WC_TRI_IDW_Gadus_macrocephalus_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gadus macrocephalus\WC_TRI_IDW_Gadus_macrocephalus_1995.tif
-WC_TRI_IDW_Gadus_macrocephalus_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gadus macrocephalus\WC_TRI_IDW_Gadus_macrocephalus_1998.tif
-WC_TRI_IDW_Gadus_macrocephalus_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gadus macrocephalus\WC_TRI_IDW_Gadus_macrocephalus_2001.tif
-WC_TRI_IDW_Gadus_macrocephalus_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gadus macrocephalus\WC_TRI_IDW_Gadus_macrocephalus_2004.tif
-WC_TRI_IDW_Glyptocephalus_zachirus_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Glyptocephalus zachirus\WC_TRI_IDW_Glyptocephalus_zachirus_1977.tif
-WC_TRI_IDW_Glyptocephalus_zachirus_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Glyptocephalus zachirus\WC_TRI_IDW_Glyptocephalus_zachirus_1980.tif
-WC_TRI_IDW_Glyptocephalus_zachirus_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Glyptocephalus zachirus\WC_TRI_IDW_Glyptocephalus_zachirus_1983.tif
-WC_TRI_IDW_Glyptocephalus_zachirus_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Glyptocephalus zachirus\WC_TRI_IDW_Glyptocephalus_zachirus_1986.tif
-WC_TRI_IDW_Glyptocephalus_zachirus_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Glyptocephalus zachirus\WC_TRI_IDW_Glyptocephalus_zachirus_1989.tif
-WC_TRI_IDW_Glyptocephalus_zachirus_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Glyptocephalus zachirus\WC_TRI_IDW_Glyptocephalus_zachirus_1992.tif
-WC_TRI_IDW_Glyptocephalus_zachirus_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Glyptocephalus zachirus\WC_TRI_IDW_Glyptocephalus_zachirus_1995.tif
-WC_TRI_IDW_Glyptocephalus_zachirus_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Glyptocephalus zachirus\WC_TRI_IDW_Glyptocephalus_zachirus_1998.tif
-WC_TRI_IDW_Glyptocephalus_zachirus_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Glyptocephalus zachirus\WC_TRI_IDW_Glyptocephalus_zachirus_2001.tif
-WC_TRI_IDW_Glyptocephalus_zachirus_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Glyptocephalus zachirus\WC_TRI_IDW_Glyptocephalus_zachirus_2004.tif
-WC_TRI_IDW_Gorgonocephalus_eucnemis_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gorgonocephalus eucnemis\WC_TRI_IDW_Gorgonocephalus_eucnemis_1977.tif
-WC_TRI_IDW_Gorgonocephalus_eucnemis_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gorgonocephalus eucnemis\WC_TRI_IDW_Gorgonocephalus_eucnemis_1980.tif
-WC_TRI_IDW_Gorgonocephalus_eucnemis_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gorgonocephalus eucnemis\WC_TRI_IDW_Gorgonocephalus_eucnemis_1983.tif
-WC_TRI_IDW_Gorgonocephalus_eucnemis_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gorgonocephalus eucnemis\WC_TRI_IDW_Gorgonocephalus_eucnemis_1986.tif
-WC_TRI_IDW_Gorgonocephalus_eucnemis_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gorgonocephalus eucnemis\WC_TRI_IDW_Gorgonocephalus_eucnemis_1989.tif
-WC_TRI_IDW_Gorgonocephalus_eucnemis_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gorgonocephalus eucnemis\WC_TRI_IDW_Gorgonocephalus_eucnemis_1992.tif
-WC_TRI_IDW_Gorgonocephalus_eucnemis_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gorgonocephalus eucnemis\WC_TRI_IDW_Gorgonocephalus_eucnemis_1995.tif
-WC_TRI_IDW_Gorgonocephalus_eucnemis_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gorgonocephalus eucnemis\WC_TRI_IDW_Gorgonocephalus_eucnemis_1998.tif
-WC_TRI_IDW_Gorgonocephalus_eucnemis_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gorgonocephalus eucnemis\WC_TRI_IDW_Gorgonocephalus_eucnemis_2001.tif
-WC_TRI_IDW_Gorgonocephalus_eucnemis_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Gorgonocephalus eucnemis\WC_TRI_IDW_Gorgonocephalus_eucnemis_2004.tif
-WC_TRI_IDW_Hippoglossoides_elassodon_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hippoglossoides elassodon\WC_TRI_IDW_Hippoglossoides_elassodon_1977.tif
-WC_TRI_IDW_Hippoglossoides_elassodon_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hippoglossoides elassodon\WC_TRI_IDW_Hippoglossoides_elassodon_1980.tif
-WC_TRI_IDW_Hippoglossoides_elassodon_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hippoglossoides elassodon\WC_TRI_IDW_Hippoglossoides_elassodon_1983.tif
-WC_TRI_IDW_Hippoglossoides_elassodon_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hippoglossoides elassodon\WC_TRI_IDW_Hippoglossoides_elassodon_1986.tif
-WC_TRI_IDW_Hippoglossoides_elassodon_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hippoglossoides elassodon\WC_TRI_IDW_Hippoglossoides_elassodon_1989.tif
-WC_TRI_IDW_Hippoglossoides_elassodon_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hippoglossoides elassodon\WC_TRI_IDW_Hippoglossoides_elassodon_1992.tif
-WC_TRI_IDW_Hippoglossoides_elassodon_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hippoglossoides elassodon\WC_TRI_IDW_Hippoglossoides_elassodon_1995.tif
-WC_TRI_IDW_Hippoglossoides_elassodon_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hippoglossoides elassodon\WC_TRI_IDW_Hippoglossoides_elassodon_1998.tif
-WC_TRI_IDW_Hippoglossoides_elassodon_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hippoglossoides elassodon\WC_TRI_IDW_Hippoglossoides_elassodon_2001.tif
-WC_TRI_IDW_Hippoglossoides_elassodon_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hippoglossoides elassodon\WC_TRI_IDW_Hippoglossoides_elassodon_2004.tif
-WC_TRI_IDW_Hippoglossus_stenolepis_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hippoglossus stenolepis\WC_TRI_IDW_Hippoglossus_stenolepis_1977.tif
-WC_TRI_IDW_Hippoglossus_stenolepis_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hippoglossus stenolepis\WC_TRI_IDW_Hippoglossus_stenolepis_1980.tif
-WC_TRI_IDW_Hippoglossus_stenolepis_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hippoglossus stenolepis\WC_TRI_IDW_Hippoglossus_stenolepis_1983.tif
-WC_TRI_IDW_Hippoglossus_stenolepis_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hippoglossus stenolepis\WC_TRI_IDW_Hippoglossus_stenolepis_1986.tif
-WC_TRI_IDW_Hippoglossus_stenolepis_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hippoglossus stenolepis\WC_TRI_IDW_Hippoglossus_stenolepis_1989.tif
-WC_TRI_IDW_Hippoglossus_stenolepis_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hippoglossus stenolepis\WC_TRI_IDW_Hippoglossus_stenolepis_1992.tif
-WC_TRI_IDW_Hippoglossus_stenolepis_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hippoglossus stenolepis\WC_TRI_IDW_Hippoglossus_stenolepis_1995.tif
-WC_TRI_IDW_Hippoglossus_stenolepis_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hippoglossus stenolepis\WC_TRI_IDW_Hippoglossus_stenolepis_1998.tif
-WC_TRI_IDW_Hippoglossus_stenolepis_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hippoglossus stenolepis\WC_TRI_IDW_Hippoglossus_stenolepis_2001.tif
-WC_TRI_IDW_Hippoglossus_stenolepis_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hippoglossus stenolepis\WC_TRI_IDW_Hippoglossus_stenolepis_2004.tif
-WC_TRI_IDW_Hydrolagus_colliei_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hydrolagus colliei\WC_TRI_IDW_Hydrolagus_colliei_1977.tif
-WC_TRI_IDW_Hydrolagus_colliei_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hydrolagus colliei\WC_TRI_IDW_Hydrolagus_colliei_1980.tif
-WC_TRI_IDW_Hydrolagus_colliei_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hydrolagus colliei\WC_TRI_IDW_Hydrolagus_colliei_1983.tif
-WC_TRI_IDW_Hydrolagus_colliei_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hydrolagus colliei\WC_TRI_IDW_Hydrolagus_colliei_1986.tif
-WC_TRI_IDW_Hydrolagus_colliei_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hydrolagus colliei\WC_TRI_IDW_Hydrolagus_colliei_1989.tif
-WC_TRI_IDW_Hydrolagus_colliei_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hydrolagus colliei\WC_TRI_IDW_Hydrolagus_colliei_1992.tif
-WC_TRI_IDW_Hydrolagus_colliei_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hydrolagus colliei\WC_TRI_IDW_Hydrolagus_colliei_1995.tif
-WC_TRI_IDW_Hydrolagus_colliei_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hydrolagus colliei\WC_TRI_IDW_Hydrolagus_colliei_1998.tif
-WC_TRI_IDW_Hydrolagus_colliei_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hydrolagus colliei\WC_TRI_IDW_Hydrolagus_colliei_2001.tif
-WC_TRI_IDW_Hydrolagus_colliei_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Hydrolagus colliei\WC_TRI_IDW_Hydrolagus_colliei_2004.tif
-WC_TRI_IDW_Icelinus_filamentosus_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Icelinus filamentosus\WC_TRI_IDW_Icelinus_filamentosus_1977.tif
-WC_TRI_IDW_Icelinus_filamentosus_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Icelinus filamentosus\WC_TRI_IDW_Icelinus_filamentosus_1980.tif
-WC_TRI_IDW_Icelinus_filamentosus_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Icelinus filamentosus\WC_TRI_IDW_Icelinus_filamentosus_1983.tif
-WC_TRI_IDW_Icelinus_filamentosus_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Icelinus filamentosus\WC_TRI_IDW_Icelinus_filamentosus_1986.tif
-WC_TRI_IDW_Icelinus_filamentosus_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Icelinus filamentosus\WC_TRI_IDW_Icelinus_filamentosus_1989.tif
-WC_TRI_IDW_Icelinus_filamentosus_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:04:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Icelinus filamentosus\WC_TRI_IDW_Icelinus_filamentosus_1992.tif
-WC_TRI_IDW_Icelinus_filamentosus_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Icelinus filamentosus\WC_TRI_IDW_Icelinus_filamentosus_1995.tif
-WC_TRI_IDW_Icelinus_filamentosus_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Icelinus filamentosus\WC_TRI_IDW_Icelinus_filamentosus_1998.tif
-WC_TRI_IDW_Icelinus_filamentosus_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Icelinus filamentosus\WC_TRI_IDW_Icelinus_filamentosus_2001.tif
-WC_TRI_IDW_Icelinus_filamentosus_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Icelinus filamentosus\WC_TRI_IDW_Icelinus_filamentosus_2004.tif
-WC_TRI_IDW_Lepidopsetta_sp_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lepidopsetta sp\WC_TRI_IDW_Lepidopsetta_sp_1977.tif
-WC_TRI_IDW_Lepidopsetta_sp_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lepidopsetta sp\WC_TRI_IDW_Lepidopsetta_sp_1980.tif
-WC_TRI_IDW_Lepidopsetta_sp_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lepidopsetta sp\WC_TRI_IDW_Lepidopsetta_sp_1983.tif
-WC_TRI_IDW_Lepidopsetta_sp_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lepidopsetta sp\WC_TRI_IDW_Lepidopsetta_sp_1986.tif
-WC_TRI_IDW_Lepidopsetta_sp_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lepidopsetta sp\WC_TRI_IDW_Lepidopsetta_sp_1989.tif
-WC_TRI_IDW_Lepidopsetta_sp_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lepidopsetta sp\WC_TRI_IDW_Lepidopsetta_sp_1992.tif
-WC_TRI_IDW_Lepidopsetta_sp_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lepidopsetta sp\WC_TRI_IDW_Lepidopsetta_sp_1995.tif
-WC_TRI_IDW_Lepidopsetta_sp_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lepidopsetta sp\WC_TRI_IDW_Lepidopsetta_sp_1998.tif
-WC_TRI_IDW_Lepidopsetta_sp_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lepidopsetta sp\WC_TRI_IDW_Lepidopsetta_sp_2001.tif
-WC_TRI_IDW_Lepidopsetta_sp_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lepidopsetta sp\WC_TRI_IDW_Lepidopsetta_sp_2004.tif
-WC_TRI_IDW_Lycodes_cortezianus_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lycodes cortezianus\WC_TRI_IDW_Lycodes_cortezianus_1977.tif
-WC_TRI_IDW_Lycodes_cortezianus_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lycodes cortezianus\WC_TRI_IDW_Lycodes_cortezianus_1980.tif
-WC_TRI_IDW_Lycodes_cortezianus_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lycodes cortezianus\WC_TRI_IDW_Lycodes_cortezianus_1983.tif
-WC_TRI_IDW_Lycodes_cortezianus_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lycodes cortezianus\WC_TRI_IDW_Lycodes_cortezianus_1986.tif
-WC_TRI_IDW_Lycodes_cortezianus_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lycodes cortezianus\WC_TRI_IDW_Lycodes_cortezianus_1989.tif
-WC_TRI_IDW_Lycodes_cortezianus_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lycodes cortezianus\WC_TRI_IDW_Lycodes_cortezianus_1992.tif
-WC_TRI_IDW_Lycodes_cortezianus_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lycodes cortezianus\WC_TRI_IDW_Lycodes_cortezianus_1995.tif
-WC_TRI_IDW_Lycodes_cortezianus_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lycodes cortezianus\WC_TRI_IDW_Lycodes_cortezianus_1998.tif
-WC_TRI_IDW_Lycodes_cortezianus_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lycodes cortezianus\WC_TRI_IDW_Lycodes_cortezianus_2001.tif
-WC_TRI_IDW_Lycodes_cortezianus_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lycodes cortezianus\WC_TRI_IDW_Lycodes_cortezianus_2004.tif
-WC_TRI_IDW_Lycodes_pacificus_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lycodes pacificus\WC_TRI_IDW_Lycodes_pacificus_1977.tif
-WC_TRI_IDW_Lycodes_pacificus_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lycodes pacificus\WC_TRI_IDW_Lycodes_pacificus_1980.tif
-WC_TRI_IDW_Lycodes_pacificus_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lycodes pacificus\WC_TRI_IDW_Lycodes_pacificus_1983.tif
-WC_TRI_IDW_Lycodes_pacificus_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lycodes pacificus\WC_TRI_IDW_Lycodes_pacificus_1986.tif
-WC_TRI_IDW_Lycodes_pacificus_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lycodes pacificus\WC_TRI_IDW_Lycodes_pacificus_1989.tif
-WC_TRI_IDW_Lycodes_pacificus_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lycodes pacificus\WC_TRI_IDW_Lycodes_pacificus_1992.tif
-WC_TRI_IDW_Lycodes_pacificus_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lycodes pacificus\WC_TRI_IDW_Lycodes_pacificus_1995.tif
-WC_TRI_IDW_Lycodes_pacificus_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lycodes pacificus\WC_TRI_IDW_Lycodes_pacificus_1998.tif
-WC_TRI_IDW_Lycodes_pacificus_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lycodes pacificus\WC_TRI_IDW_Lycodes_pacificus_2001.tif
-WC_TRI_IDW_Lycodes_pacificus_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lycodes pacificus\WC_TRI_IDW_Lycodes_pacificus_2004.tif
-WC_TRI_IDW_Lyopsetta_exilis_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lyopsetta exilis\WC_TRI_IDW_Lyopsetta_exilis_1977.tif
-WC_TRI_IDW_Lyopsetta_exilis_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lyopsetta exilis\WC_TRI_IDW_Lyopsetta_exilis_1980.tif
-WC_TRI_IDW_Lyopsetta_exilis_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lyopsetta exilis\WC_TRI_IDW_Lyopsetta_exilis_1983.tif
-WC_TRI_IDW_Lyopsetta_exilis_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lyopsetta exilis\WC_TRI_IDW_Lyopsetta_exilis_1986.tif
-WC_TRI_IDW_Lyopsetta_exilis_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lyopsetta exilis\WC_TRI_IDW_Lyopsetta_exilis_1989.tif
-WC_TRI_IDW_Lyopsetta_exilis_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lyopsetta exilis\WC_TRI_IDW_Lyopsetta_exilis_1992.tif
-WC_TRI_IDW_Lyopsetta_exilis_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lyopsetta exilis\WC_TRI_IDW_Lyopsetta_exilis_1995.tif
-WC_TRI_IDW_Lyopsetta_exilis_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lyopsetta exilis\WC_TRI_IDW_Lyopsetta_exilis_1998.tif
-WC_TRI_IDW_Lyopsetta_exilis_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lyopsetta exilis\WC_TRI_IDW_Lyopsetta_exilis_2001.tif
-WC_TRI_IDW_Lyopsetta_exilis_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Lyopsetta exilis\WC_TRI_IDW_Lyopsetta_exilis_2004.tif
-WC_TRI_IDW_Merluccius_productus_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Merluccius productus\WC_TRI_IDW_Merluccius_productus_1977.tif
-WC_TRI_IDW_Merluccius_productus_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Merluccius productus\WC_TRI_IDW_Merluccius_productus_1980.tif
-WC_TRI_IDW_Merluccius_productus_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Merluccius productus\WC_TRI_IDW_Merluccius_productus_1983.tif
-WC_TRI_IDW_Merluccius_productus_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Merluccius productus\WC_TRI_IDW_Merluccius_productus_1986.tif
-WC_TRI_IDW_Merluccius_productus_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Merluccius productus\WC_TRI_IDW_Merluccius_productus_1989.tif
-WC_TRI_IDW_Merluccius_productus_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Merluccius productus\WC_TRI_IDW_Merluccius_productus_1992.tif
-WC_TRI_IDW_Merluccius_productus_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Merluccius productus\WC_TRI_IDW_Merluccius_productus_1995.tif
-WC_TRI_IDW_Merluccius_productus_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Merluccius productus\WC_TRI_IDW_Merluccius_productus_1998.tif
-WC_TRI_IDW_Merluccius_productus_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Merluccius productus\WC_TRI_IDW_Merluccius_productus_2001.tif
-WC_TRI_IDW_Merluccius_productus_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Merluccius productus\WC_TRI_IDW_Merluccius_productus_2004.tif
-WC_TRI_IDW_Metacarcinus_magister_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Metacarcinus magister\WC_TRI_IDW_Metacarcinus_magister_1977.tif
-WC_TRI_IDW_Metacarcinus_magister_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Metacarcinus magister\WC_TRI_IDW_Metacarcinus_magister_1980.tif
-WC_TRI_IDW_Metacarcinus_magister_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Metacarcinus magister\WC_TRI_IDW_Metacarcinus_magister_1983.tif
-WC_TRI_IDW_Metacarcinus_magister_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Metacarcinus magister\WC_TRI_IDW_Metacarcinus_magister_1986.tif
-WC_TRI_IDW_Metacarcinus_magister_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Metacarcinus magister\WC_TRI_IDW_Metacarcinus_magister_1989.tif
-WC_TRI_IDW_Metacarcinus_magister_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Metacarcinus magister\WC_TRI_IDW_Metacarcinus_magister_1992.tif
-WC_TRI_IDW_Metacarcinus_magister_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Metacarcinus magister\WC_TRI_IDW_Metacarcinus_magister_1995.tif
-WC_TRI_IDW_Metacarcinus_magister_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Metacarcinus magister\WC_TRI_IDW_Metacarcinus_magister_1998.tif
-WC_TRI_IDW_Metacarcinus_magister_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Metacarcinus magister\WC_TRI_IDW_Metacarcinus_magister_2001.tif
-WC_TRI_IDW_Metacarcinus_magister_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Metacarcinus magister\WC_TRI_IDW_Metacarcinus_magister_2004.tif
-WC_TRI_IDW_Microgadus_proximus_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Microgadus proximus\WC_TRI_IDW_Microgadus_proximus_1977.tif
-WC_TRI_IDW_Microgadus_proximus_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Microgadus proximus\WC_TRI_IDW_Microgadus_proximus_1980.tif
-WC_TRI_IDW_Microgadus_proximus_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Microgadus proximus\WC_TRI_IDW_Microgadus_proximus_1983.tif
-WC_TRI_IDW_Microgadus_proximus_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Microgadus proximus\WC_TRI_IDW_Microgadus_proximus_1986.tif
-WC_TRI_IDW_Microgadus_proximus_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Microgadus proximus\WC_TRI_IDW_Microgadus_proximus_1989.tif
-WC_TRI_IDW_Microgadus_proximus_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Microgadus proximus\WC_TRI_IDW_Microgadus_proximus_1992.tif
-WC_TRI_IDW_Microgadus_proximus_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Microgadus proximus\WC_TRI_IDW_Microgadus_proximus_1995.tif
-WC_TRI_IDW_Microgadus_proximus_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Microgadus proximus\WC_TRI_IDW_Microgadus_proximus_1998.tif
-WC_TRI_IDW_Microgadus_proximus_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Microgadus proximus\WC_TRI_IDW_Microgadus_proximus_2001.tif
-WC_TRI_IDW_Microgadus_proximus_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Microgadus proximus\WC_TRI_IDW_Microgadus_proximus_2004.tif
-WC_TRI_IDW_Microstomus_pacificus_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Microstomus pacificus\WC_TRI_IDW_Microstomus_pacificus_1977.tif
-WC_TRI_IDW_Microstomus_pacificus_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Microstomus pacificus\WC_TRI_IDW_Microstomus_pacificus_1980.tif
-WC_TRI_IDW_Microstomus_pacificus_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Microstomus pacificus\WC_TRI_IDW_Microstomus_pacificus_1983.tif
-WC_TRI_IDW_Microstomus_pacificus_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Microstomus pacificus\WC_TRI_IDW_Microstomus_pacificus_1986.tif
-WC_TRI_IDW_Microstomus_pacificus_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Microstomus pacificus\WC_TRI_IDW_Microstomus_pacificus_1989.tif
-WC_TRI_IDW_Microstomus_pacificus_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Microstomus pacificus\WC_TRI_IDW_Microstomus_pacificus_1992.tif
-WC_TRI_IDW_Microstomus_pacificus_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Microstomus pacificus\WC_TRI_IDW_Microstomus_pacificus_1995.tif
-WC_TRI_IDW_Microstomus_pacificus_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Microstomus pacificus\WC_TRI_IDW_Microstomus_pacificus_1998.tif
-WC_TRI_IDW_Microstomus_pacificus_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Microstomus pacificus\WC_TRI_IDW_Microstomus_pacificus_2001.tif
-WC_TRI_IDW_Microstomus_pacificus_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Microstomus pacificus\WC_TRI_IDW_Microstomus_pacificus_2004.tif
-WC_TRI_IDW_Oncorhynchus_tshawytscha_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Oncorhynchus tshawytscha\WC_TRI_IDW_Oncorhynchus_tshawytscha_1977.tif
-WC_TRI_IDW_Oncorhynchus_tshawytscha_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Oncorhynchus tshawytscha\WC_TRI_IDW_Oncorhynchus_tshawytscha_1980.tif
-WC_TRI_IDW_Oncorhynchus_tshawytscha_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Oncorhynchus tshawytscha\WC_TRI_IDW_Oncorhynchus_tshawytscha_1983.tif
-WC_TRI_IDW_Oncorhynchus_tshawytscha_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Oncorhynchus tshawytscha\WC_TRI_IDW_Oncorhynchus_tshawytscha_1986.tif
-WC_TRI_IDW_Oncorhynchus_tshawytscha_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Oncorhynchus tshawytscha\WC_TRI_IDW_Oncorhynchus_tshawytscha_1989.tif
-WC_TRI_IDW_Oncorhynchus_tshawytscha_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Oncorhynchus tshawytscha\WC_TRI_IDW_Oncorhynchus_tshawytscha_1992.tif
-WC_TRI_IDW_Oncorhynchus_tshawytscha_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Oncorhynchus tshawytscha\WC_TRI_IDW_Oncorhynchus_tshawytscha_1995.tif
-WC_TRI_IDW_Oncorhynchus_tshawytscha_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Oncorhynchus tshawytscha\WC_TRI_IDW_Oncorhynchus_tshawytscha_1998.tif
-WC_TRI_IDW_Oncorhynchus_tshawytscha_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Oncorhynchus tshawytscha\WC_TRI_IDW_Oncorhynchus_tshawytscha_2001.tif
-WC_TRI_IDW_Oncorhynchus_tshawytscha_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Oncorhynchus tshawytscha\WC_TRI_IDW_Oncorhynchus_tshawytscha_2004.tif
-WC_TRI_IDW_Ophiodon_elongatus_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Ophiodon elongatus\WC_TRI_IDW_Ophiodon_elongatus_1977.tif
-WC_TRI_IDW_Ophiodon_elongatus_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Ophiodon elongatus\WC_TRI_IDW_Ophiodon_elongatus_1980.tif
-WC_TRI_IDW_Ophiodon_elongatus_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Ophiodon elongatus\WC_TRI_IDW_Ophiodon_elongatus_1983.tif
-WC_TRI_IDW_Ophiodon_elongatus_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Ophiodon elongatus\WC_TRI_IDW_Ophiodon_elongatus_1986.tif
-WC_TRI_IDW_Ophiodon_elongatus_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Ophiodon elongatus\WC_TRI_IDW_Ophiodon_elongatus_1989.tif
-WC_TRI_IDW_Ophiodon_elongatus_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Ophiodon elongatus\WC_TRI_IDW_Ophiodon_elongatus_1992.tif
-WC_TRI_IDW_Ophiodon_elongatus_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Ophiodon elongatus\WC_TRI_IDW_Ophiodon_elongatus_1995.tif
-WC_TRI_IDW_Ophiodon_elongatus_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Ophiodon elongatus\WC_TRI_IDW_Ophiodon_elongatus_1998.tif
-WC_TRI_IDW_Ophiodon_elongatus_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Ophiodon elongatus\WC_TRI_IDW_Ophiodon_elongatus_2001.tif
-WC_TRI_IDW_Ophiodon_elongatus_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Ophiodon elongatus\WC_TRI_IDW_Ophiodon_elongatus_2004.tif
-WC_TRI_IDW_Pandalus_jordani_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Pandalus jordani\WC_TRI_IDW_Pandalus_jordani_1977.tif
-WC_TRI_IDW_Pandalus_jordani_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Pandalus jordani\WC_TRI_IDW_Pandalus_jordani_1980.tif
-WC_TRI_IDW_Pandalus_jordani_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Pandalus jordani\WC_TRI_IDW_Pandalus_jordani_1983.tif
-WC_TRI_IDW_Pandalus_jordani_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Pandalus jordani\WC_TRI_IDW_Pandalus_jordani_1986.tif
-WC_TRI_IDW_Pandalus_jordani_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Pandalus jordani\WC_TRI_IDW_Pandalus_jordani_1989.tif
-WC_TRI_IDW_Pandalus_jordani_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Pandalus jordani\WC_TRI_IDW_Pandalus_jordani_1992.tif
-WC_TRI_IDW_Pandalus_jordani_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Pandalus jordani\WC_TRI_IDW_Pandalus_jordani_1995.tif
-WC_TRI_IDW_Pandalus_jordani_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Pandalus jordani\WC_TRI_IDW_Pandalus_jordani_1998.tif
-WC_TRI_IDW_Pandalus_jordani_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Pandalus jordani\WC_TRI_IDW_Pandalus_jordani_2001.tif
-WC_TRI_IDW_Pandalus_jordani_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Pandalus jordani\WC_TRI_IDW_Pandalus_jordani_2004.tif
-WC_TRI_IDW_Parophrys_vetulus_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Parophrys vetulus\WC_TRI_IDW_Parophrys_vetulus_1977.tif
-WC_TRI_IDW_Parophrys_vetulus_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Parophrys vetulus\WC_TRI_IDW_Parophrys_vetulus_1980.tif
-WC_TRI_IDW_Parophrys_vetulus_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Parophrys vetulus\WC_TRI_IDW_Parophrys_vetulus_1983.tif
-WC_TRI_IDW_Parophrys_vetulus_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Parophrys vetulus\WC_TRI_IDW_Parophrys_vetulus_1986.tif
-WC_TRI_IDW_Parophrys_vetulus_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Parophrys vetulus\WC_TRI_IDW_Parophrys_vetulus_1989.tif
-WC_TRI_IDW_Parophrys_vetulus_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Parophrys vetulus\WC_TRI_IDW_Parophrys_vetulus_1992.tif
-WC_TRI_IDW_Parophrys_vetulus_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Parophrys vetulus\WC_TRI_IDW_Parophrys_vetulus_1995.tif
-WC_TRI_IDW_Parophrys_vetulus_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Parophrys vetulus\WC_TRI_IDW_Parophrys_vetulus_1998.tif
-WC_TRI_IDW_Parophrys_vetulus_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Parophrys vetulus\WC_TRI_IDW_Parophrys_vetulus_2001.tif
-WC_TRI_IDW_Parophrys_vetulus_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Parophrys vetulus\WC_TRI_IDW_Parophrys_vetulus_2004.tif
-WC_TRI_IDW_Porichthys_notatus_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Porichthys notatus\WC_TRI_IDW_Porichthys_notatus_1977.tif
-WC_TRI_IDW_Porichthys_notatus_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Porichthys notatus\WC_TRI_IDW_Porichthys_notatus_1980.tif
-WC_TRI_IDW_Porichthys_notatus_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Porichthys notatus\WC_TRI_IDW_Porichthys_notatus_1983.tif
-WC_TRI_IDW_Porichthys_notatus_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Porichthys notatus\WC_TRI_IDW_Porichthys_notatus_1986.tif
-WC_TRI_IDW_Porichthys_notatus_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Porichthys notatus\WC_TRI_IDW_Porichthys_notatus_1989.tif
-WC_TRI_IDW_Porichthys_notatus_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Porichthys notatus\WC_TRI_IDW_Porichthys_notatus_1992.tif
-WC_TRI_IDW_Porichthys_notatus_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Porichthys notatus\WC_TRI_IDW_Porichthys_notatus_1995.tif
-WC_TRI_IDW_Porichthys_notatus_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Porichthys notatus\WC_TRI_IDW_Porichthys_notatus_1998.tif
-WC_TRI_IDW_Porichthys_notatus_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Porichthys notatus\WC_TRI_IDW_Porichthys_notatus_2001.tif
-WC_TRI_IDW_Porichthys_notatus_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Porichthys notatus\WC_TRI_IDW_Porichthys_notatus_2004.tif
-WC_TRI_IDW_Sebastes_alutus_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes alutus\WC_TRI_IDW_Sebastes_alutus_1977.tif
-WC_TRI_IDW_Sebastes_alutus_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes alutus\WC_TRI_IDW_Sebastes_alutus_1980.tif
-WC_TRI_IDW_Sebastes_alutus_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes alutus\WC_TRI_IDW_Sebastes_alutus_1983.tif
-WC_TRI_IDW_Sebastes_alutus_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes alutus\WC_TRI_IDW_Sebastes_alutus_1986.tif
-WC_TRI_IDW_Sebastes_alutus_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes alutus\WC_TRI_IDW_Sebastes_alutus_1989.tif
-WC_TRI_IDW_Sebastes_alutus_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes alutus\WC_TRI_IDW_Sebastes_alutus_1992.tif
-WC_TRI_IDW_Sebastes_alutus_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes alutus\WC_TRI_IDW_Sebastes_alutus_1995.tif
-WC_TRI_IDW_Sebastes_alutus_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes alutus\WC_TRI_IDW_Sebastes_alutus_1998.tif
-WC_TRI_IDW_Sebastes_alutus_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes alutus\WC_TRI_IDW_Sebastes_alutus_2001.tif
-WC_TRI_IDW_Sebastes_alutus_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes alutus\WC_TRI_IDW_Sebastes_alutus_2004.tif
-WC_TRI_IDW_Sebastes_babcocki_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes babcocki\WC_TRI_IDW_Sebastes_babcocki_1977.tif
-WC_TRI_IDW_Sebastes_babcocki_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes babcocki\WC_TRI_IDW_Sebastes_babcocki_1980.tif
-WC_TRI_IDW_Sebastes_babcocki_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes babcocki\WC_TRI_IDW_Sebastes_babcocki_1983.tif
-WC_TRI_IDW_Sebastes_babcocki_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes babcocki\WC_TRI_IDW_Sebastes_babcocki_1986.tif
-WC_TRI_IDW_Sebastes_babcocki_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes babcocki\WC_TRI_IDW_Sebastes_babcocki_1989.tif
-WC_TRI_IDW_Sebastes_babcocki_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes babcocki\WC_TRI_IDW_Sebastes_babcocki_1992.tif
-WC_TRI_IDW_Sebastes_babcocki_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes babcocki\WC_TRI_IDW_Sebastes_babcocki_1995.tif
-WC_TRI_IDW_Sebastes_babcocki_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes babcocki\WC_TRI_IDW_Sebastes_babcocki_1998.tif
-WC_TRI_IDW_Sebastes_babcocki_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes babcocki\WC_TRI_IDW_Sebastes_babcocki_2001.tif
-WC_TRI_IDW_Sebastes_babcocki_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes babcocki\WC_TRI_IDW_Sebastes_babcocki_2004.tif
-WC_TRI_IDW_Sebastes_crameri_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes crameri\WC_TRI_IDW_Sebastes_crameri_1977.tif
-WC_TRI_IDW_Sebastes_crameri_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes crameri\WC_TRI_IDW_Sebastes_crameri_1980.tif
-WC_TRI_IDW_Sebastes_crameri_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes crameri\WC_TRI_IDW_Sebastes_crameri_1983.tif
-WC_TRI_IDW_Sebastes_crameri_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes crameri\WC_TRI_IDW_Sebastes_crameri_1986.tif
-WC_TRI_IDW_Sebastes_crameri_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes crameri\WC_TRI_IDW_Sebastes_crameri_1989.tif
-WC_TRI_IDW_Sebastes_crameri_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes crameri\WC_TRI_IDW_Sebastes_crameri_1992.tif
-WC_TRI_IDW_Sebastes_crameri_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes crameri\WC_TRI_IDW_Sebastes_crameri_1995.tif
-WC_TRI_IDW_Sebastes_crameri_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes crameri\WC_TRI_IDW_Sebastes_crameri_1998.tif
-WC_TRI_IDW_Sebastes_crameri_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes crameri\WC_TRI_IDW_Sebastes_crameri_2001.tif
-WC_TRI_IDW_Sebastes_crameri_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes crameri\WC_TRI_IDW_Sebastes_crameri_2004.tif
-WC_TRI_IDW_Sebastes_diploproa_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes diploproa\WC_TRI_IDW_Sebastes_diploproa_1977.tif
-WC_TRI_IDW_Sebastes_diploproa_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes diploproa\WC_TRI_IDW_Sebastes_diploproa_1980.tif
-WC_TRI_IDW_Sebastes_diploproa_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes diploproa\WC_TRI_IDW_Sebastes_diploproa_1983.tif
-WC_TRI_IDW_Sebastes_diploproa_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes diploproa\WC_TRI_IDW_Sebastes_diploproa_1986.tif
-WC_TRI_IDW_Sebastes_diploproa_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes diploproa\WC_TRI_IDW_Sebastes_diploproa_1989.tif
-WC_TRI_IDW_Sebastes_diploproa_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes diploproa\WC_TRI_IDW_Sebastes_diploproa_1992.tif
-WC_TRI_IDW_Sebastes_diploproa_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes diploproa\WC_TRI_IDW_Sebastes_diploproa_1995.tif
-WC_TRI_IDW_Sebastes_diploproa_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes diploproa\WC_TRI_IDW_Sebastes_diploproa_1998.tif
-WC_TRI_IDW_Sebastes_diploproa_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes diploproa\WC_TRI_IDW_Sebastes_diploproa_2001.tif
-WC_TRI_IDW_Sebastes_diploproa_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes diploproa\WC_TRI_IDW_Sebastes_diploproa_2004.tif
-WC_TRI_IDW_Sebastes_elongatus_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes elongatus\WC_TRI_IDW_Sebastes_elongatus_1977.tif
-WC_TRI_IDW_Sebastes_elongatus_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes elongatus\WC_TRI_IDW_Sebastes_elongatus_1980.tif
-WC_TRI_IDW_Sebastes_elongatus_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes elongatus\WC_TRI_IDW_Sebastes_elongatus_1983.tif
-WC_TRI_IDW_Sebastes_elongatus_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes elongatus\WC_TRI_IDW_Sebastes_elongatus_1986.tif
-WC_TRI_IDW_Sebastes_elongatus_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes elongatus\WC_TRI_IDW_Sebastes_elongatus_1989.tif
-WC_TRI_IDW_Sebastes_elongatus_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes elongatus\WC_TRI_IDW_Sebastes_elongatus_1992.tif
-WC_TRI_IDW_Sebastes_elongatus_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes elongatus\WC_TRI_IDW_Sebastes_elongatus_1995.tif
-WC_TRI_IDW_Sebastes_elongatus_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes elongatus\WC_TRI_IDW_Sebastes_elongatus_1998.tif
-WC_TRI_IDW_Sebastes_elongatus_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes elongatus\WC_TRI_IDW_Sebastes_elongatus_2001.tif
-WC_TRI_IDW_Sebastes_elongatus_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes elongatus\WC_TRI_IDW_Sebastes_elongatus_2004.tif
-WC_TRI_IDW_Sebastes_entomelas_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes entomelas\WC_TRI_IDW_Sebastes_entomelas_1977.tif
-WC_TRI_IDW_Sebastes_entomelas_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes entomelas\WC_TRI_IDW_Sebastes_entomelas_1980.tif
-WC_TRI_IDW_Sebastes_entomelas_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes entomelas\WC_TRI_IDW_Sebastes_entomelas_1983.tif
-WC_TRI_IDW_Sebastes_entomelas_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes entomelas\WC_TRI_IDW_Sebastes_entomelas_1986.tif
-WC_TRI_IDW_Sebastes_entomelas_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes entomelas\WC_TRI_IDW_Sebastes_entomelas_1989.tif
-WC_TRI_IDW_Sebastes_entomelas_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes entomelas\WC_TRI_IDW_Sebastes_entomelas_1992.tif
-WC_TRI_IDW_Sebastes_entomelas_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes entomelas\WC_TRI_IDW_Sebastes_entomelas_1995.tif
-WC_TRI_IDW_Sebastes_entomelas_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes entomelas\WC_TRI_IDW_Sebastes_entomelas_1998.tif
-WC_TRI_IDW_Sebastes_entomelas_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes entomelas\WC_TRI_IDW_Sebastes_entomelas_2001.tif
-WC_TRI_IDW_Sebastes_entomelas_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes entomelas\WC_TRI_IDW_Sebastes_entomelas_2004.tif
-WC_TRI_IDW_Sebastes_flavidus_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes flavidus\WC_TRI_IDW_Sebastes_flavidus_1977.tif
-WC_TRI_IDW_Sebastes_flavidus_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes flavidus\WC_TRI_IDW_Sebastes_flavidus_1980.tif
-WC_TRI_IDW_Sebastes_flavidus_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes flavidus\WC_TRI_IDW_Sebastes_flavidus_1983.tif
-WC_TRI_IDW_Sebastes_flavidus_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes flavidus\WC_TRI_IDW_Sebastes_flavidus_1986.tif
-WC_TRI_IDW_Sebastes_flavidus_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes flavidus\WC_TRI_IDW_Sebastes_flavidus_1989.tif
-WC_TRI_IDW_Sebastes_flavidus_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes flavidus\WC_TRI_IDW_Sebastes_flavidus_1992.tif
-WC_TRI_IDW_Sebastes_flavidus_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes flavidus\WC_TRI_IDW_Sebastes_flavidus_1995.tif
-WC_TRI_IDW_Sebastes_flavidus_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes flavidus\WC_TRI_IDW_Sebastes_flavidus_1998.tif
-WC_TRI_IDW_Sebastes_flavidus_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes flavidus\WC_TRI_IDW_Sebastes_flavidus_2001.tif
-WC_TRI_IDW_Sebastes_flavidus_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes flavidus\WC_TRI_IDW_Sebastes_flavidus_2004.tif
-WC_TRI_IDW_Sebastes_goodei_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes goodei\WC_TRI_IDW_Sebastes_goodei_1977.tif
-WC_TRI_IDW_Sebastes_goodei_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes goodei\WC_TRI_IDW_Sebastes_goodei_1980.tif
-WC_TRI_IDW_Sebastes_goodei_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes goodei\WC_TRI_IDW_Sebastes_goodei_1983.tif
-WC_TRI_IDW_Sebastes_goodei_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes goodei\WC_TRI_IDW_Sebastes_goodei_1986.tif
-WC_TRI_IDW_Sebastes_goodei_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes goodei\WC_TRI_IDW_Sebastes_goodei_1989.tif
-WC_TRI_IDW_Sebastes_goodei_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes goodei\WC_TRI_IDW_Sebastes_goodei_1992.tif
-WC_TRI_IDW_Sebastes_goodei_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes goodei\WC_TRI_IDW_Sebastes_goodei_1995.tif
-WC_TRI_IDW_Sebastes_goodei_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes goodei\WC_TRI_IDW_Sebastes_goodei_1998.tif
-WC_TRI_IDW_Sebastes_goodei_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes goodei\WC_TRI_IDW_Sebastes_goodei_2001.tif
-WC_TRI_IDW_Sebastes_goodei_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes goodei\WC_TRI_IDW_Sebastes_goodei_2004.tif
-WC_TRI_IDW_Sebastes_helvomaculatus_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes helvomaculatus\WC_TRI_IDW_Sebastes_helvomaculatus_1977.tif
-WC_TRI_IDW_Sebastes_helvomaculatus_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes helvomaculatus\WC_TRI_IDW_Sebastes_helvomaculatus_1980.tif
-WC_TRI_IDW_Sebastes_helvomaculatus_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes helvomaculatus\WC_TRI_IDW_Sebastes_helvomaculatus_1983.tif
-WC_TRI_IDW_Sebastes_helvomaculatus_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes helvomaculatus\WC_TRI_IDW_Sebastes_helvomaculatus_1986.tif
-WC_TRI_IDW_Sebastes_helvomaculatus_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes helvomaculatus\WC_TRI_IDW_Sebastes_helvomaculatus_1989.tif
-WC_TRI_IDW_Sebastes_helvomaculatus_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes helvomaculatus\WC_TRI_IDW_Sebastes_helvomaculatus_1992.tif
-WC_TRI_IDW_Sebastes_helvomaculatus_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes helvomaculatus\WC_TRI_IDW_Sebastes_helvomaculatus_1995.tif
-WC_TRI_IDW_Sebastes_helvomaculatus_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes helvomaculatus\WC_TRI_IDW_Sebastes_helvomaculatus_1998.tif
-WC_TRI_IDW_Sebastes_helvomaculatus_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes helvomaculatus\WC_TRI_IDW_Sebastes_helvomaculatus_2001.tif
-WC_TRI_IDW_Sebastes_helvomaculatus_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes helvomaculatus\WC_TRI_IDW_Sebastes_helvomaculatus_2004.tif
-WC_TRI_IDW_Sebastes_jordani_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes jordani\WC_TRI_IDW_Sebastes_jordani_1977.tif
-WC_TRI_IDW_Sebastes_jordani_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes jordani\WC_TRI_IDW_Sebastes_jordani_1980.tif
-WC_TRI_IDW_Sebastes_jordani_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes jordani\WC_TRI_IDW_Sebastes_jordani_1983.tif
-WC_TRI_IDW_Sebastes_jordani_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes jordani\WC_TRI_IDW_Sebastes_jordani_1986.tif
-WC_TRI_IDW_Sebastes_jordani_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes jordani\WC_TRI_IDW_Sebastes_jordani_1989.tif
-WC_TRI_IDW_Sebastes_jordani_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes jordani\WC_TRI_IDW_Sebastes_jordani_1992.tif
-WC_TRI_IDW_Sebastes_jordani_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes jordani\WC_TRI_IDW_Sebastes_jordani_1995.tif
-WC_TRI_IDW_Sebastes_jordani_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes jordani\WC_TRI_IDW_Sebastes_jordani_1998.tif
-WC_TRI_IDW_Sebastes_jordani_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes jordani\WC_TRI_IDW_Sebastes_jordani_2001.tif
-WC_TRI_IDW_Sebastes_jordani_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes jordani\WC_TRI_IDW_Sebastes_jordani_2004.tif
-WC_TRI_IDW_Sebastes_melanostictus_and_S_aleutianus_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes melanostictus and S aleutianus\WC_TRI_IDW_Sebastes_melanostictus_and_S_aleutianus_1977.tif
-WC_TRI_IDW_Sebastes_melanostictus_and_S_aleutianus_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes melanostictus and S aleutianus\WC_TRI_IDW_Sebastes_melanostictus_and_S_aleutianus_1980.tif
-WC_TRI_IDW_Sebastes_melanostictus_and_S_aleutianus_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes melanostictus and S aleutianus\WC_TRI_IDW_Sebastes_melanostictus_and_S_aleutianus_1983.tif
-WC_TRI_IDW_Sebastes_melanostictus_and_S_aleutianus_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes melanostictus and S aleutianus\WC_TRI_IDW_Sebastes_melanostictus_and_S_aleutianus_1986.tif
-WC_TRI_IDW_Sebastes_melanostictus_and_S_aleutianus_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes melanostictus and S aleutianus\WC_TRI_IDW_Sebastes_melanostictus_and_S_aleutianus_1989.tif
-WC_TRI_IDW_Sebastes_melanostictus_and_S_aleutianus_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes melanostictus and S aleutianus\WC_TRI_IDW_Sebastes_melanostictus_and_S_aleutianus_1992.tif
-WC_TRI_IDW_Sebastes_melanostictus_and_S_aleutianus_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes melanostictus and S aleutianus\WC_TRI_IDW_Sebastes_melanostictus_and_S_aleutianus_1995.tif
-WC_TRI_IDW_Sebastes_melanostictus_and_S_aleutianus_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes melanostictus and S aleutianus\WC_TRI_IDW_Sebastes_melanostictus_and_S_aleutianus_1998.tif
-WC_TRI_IDW_Sebastes_melanostictus_and_S_aleutianus_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes melanostictus and S aleutianus\WC_TRI_IDW_Sebastes_melanostictus_and_S_aleutianus_2001.tif
-WC_TRI_IDW_Sebastes_melanostictus_and_S_aleutianus_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes melanostictus and S aleutianus\WC_TRI_IDW_Sebastes_melanostictus_and_S_aleutianus_2004.tif
-WC_TRI_IDW_Sebastes_paucispinis_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes paucispinis\WC_TRI_IDW_Sebastes_paucispinis_1977.tif
-WC_TRI_IDW_Sebastes_paucispinis_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes paucispinis\WC_TRI_IDW_Sebastes_paucispinis_1980.tif
-WC_TRI_IDW_Sebastes_paucispinis_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes paucispinis\WC_TRI_IDW_Sebastes_paucispinis_1983.tif
-WC_TRI_IDW_Sebastes_paucispinis_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes paucispinis\WC_TRI_IDW_Sebastes_paucispinis_1986.tif
-WC_TRI_IDW_Sebastes_paucispinis_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes paucispinis\WC_TRI_IDW_Sebastes_paucispinis_1989.tif
-WC_TRI_IDW_Sebastes_paucispinis_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes paucispinis\WC_TRI_IDW_Sebastes_paucispinis_1992.tif
-WC_TRI_IDW_Sebastes_paucispinis_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes paucispinis\WC_TRI_IDW_Sebastes_paucispinis_1995.tif
-WC_TRI_IDW_Sebastes_paucispinis_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes paucispinis\WC_TRI_IDW_Sebastes_paucispinis_1998.tif
-WC_TRI_IDW_Sebastes_paucispinis_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes paucispinis\WC_TRI_IDW_Sebastes_paucispinis_2001.tif
-WC_TRI_IDW_Sebastes_paucispinis_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes paucispinis\WC_TRI_IDW_Sebastes_paucispinis_2004.tif
-WC_TRI_IDW_Sebastes_pinniger_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes pinniger\WC_TRI_IDW_Sebastes_pinniger_1977.tif
-WC_TRI_IDW_Sebastes_pinniger_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes pinniger\WC_TRI_IDW_Sebastes_pinniger_1980.tif
-WC_TRI_IDW_Sebastes_pinniger_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes pinniger\WC_TRI_IDW_Sebastes_pinniger_1983.tif
-WC_TRI_IDW_Sebastes_pinniger_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes pinniger\WC_TRI_IDW_Sebastes_pinniger_1986.tif
-WC_TRI_IDW_Sebastes_pinniger_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes pinniger\WC_TRI_IDW_Sebastes_pinniger_1989.tif
-WC_TRI_IDW_Sebastes_pinniger_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes pinniger\WC_TRI_IDW_Sebastes_pinniger_1992.tif
-WC_TRI_IDW_Sebastes_pinniger_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes pinniger\WC_TRI_IDW_Sebastes_pinniger_1995.tif
-WC_TRI_IDW_Sebastes_pinniger_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes pinniger\WC_TRI_IDW_Sebastes_pinniger_1998.tif
-WC_TRI_IDW_Sebastes_pinniger_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes pinniger\WC_TRI_IDW_Sebastes_pinniger_2001.tif
-WC_TRI_IDW_Sebastes_pinniger_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes pinniger\WC_TRI_IDW_Sebastes_pinniger_2004.tif
-WC_TRI_IDW_Sebastes_proriger_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes proriger\WC_TRI_IDW_Sebastes_proriger_1977.tif
-WC_TRI_IDW_Sebastes_proriger_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes proriger\WC_TRI_IDW_Sebastes_proriger_1980.tif
-WC_TRI_IDW_Sebastes_proriger_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes proriger\WC_TRI_IDW_Sebastes_proriger_1983.tif
-WC_TRI_IDW_Sebastes_proriger_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes proriger\WC_TRI_IDW_Sebastes_proriger_1986.tif
-WC_TRI_IDW_Sebastes_proriger_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes proriger\WC_TRI_IDW_Sebastes_proriger_1989.tif
-WC_TRI_IDW_Sebastes_proriger_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes proriger\WC_TRI_IDW_Sebastes_proriger_1992.tif
-WC_TRI_IDW_Sebastes_proriger_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes proriger\WC_TRI_IDW_Sebastes_proriger_1995.tif
-WC_TRI_IDW_Sebastes_proriger_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes proriger\WC_TRI_IDW_Sebastes_proriger_1998.tif
-WC_TRI_IDW_Sebastes_proriger_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes proriger\WC_TRI_IDW_Sebastes_proriger_2001.tif
-WC_TRI_IDW_Sebastes_proriger_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes proriger\WC_TRI_IDW_Sebastes_proriger_2004.tif
-WC_TRI_IDW_Sebastes_saxicola_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes saxicola\WC_TRI_IDW_Sebastes_saxicola_1977.tif
-WC_TRI_IDW_Sebastes_saxicola_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes saxicola\WC_TRI_IDW_Sebastes_saxicola_1980.tif
-WC_TRI_IDW_Sebastes_saxicola_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes saxicola\WC_TRI_IDW_Sebastes_saxicola_1983.tif
-WC_TRI_IDW_Sebastes_saxicola_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes saxicola\WC_TRI_IDW_Sebastes_saxicola_1986.tif
-WC_TRI_IDW_Sebastes_saxicola_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes saxicola\WC_TRI_IDW_Sebastes_saxicola_1989.tif
-WC_TRI_IDW_Sebastes_saxicola_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes saxicola\WC_TRI_IDW_Sebastes_saxicola_1992.tif
-WC_TRI_IDW_Sebastes_saxicola_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes saxicola\WC_TRI_IDW_Sebastes_saxicola_1995.tif
-WC_TRI_IDW_Sebastes_saxicola_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes saxicola\WC_TRI_IDW_Sebastes_saxicola_1998.tif
-WC_TRI_IDW_Sebastes_saxicola_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes saxicola\WC_TRI_IDW_Sebastes_saxicola_2001.tif
-WC_TRI_IDW_Sebastes_saxicola_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes saxicola\WC_TRI_IDW_Sebastes_saxicola_2004.tif
-WC_TRI_IDW_Sebastes_zacentrus_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:05:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes zacentrus\WC_TRI_IDW_Sebastes_zacentrus_1977.tif
-WC_TRI_IDW_Sebastes_zacentrus_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes zacentrus\WC_TRI_IDW_Sebastes_zacentrus_1980.tif
-WC_TRI_IDW_Sebastes_zacentrus_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes zacentrus\WC_TRI_IDW_Sebastes_zacentrus_1983.tif
-WC_TRI_IDW_Sebastes_zacentrus_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes zacentrus\WC_TRI_IDW_Sebastes_zacentrus_1986.tif
-WC_TRI_IDW_Sebastes_zacentrus_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes zacentrus\WC_TRI_IDW_Sebastes_zacentrus_1989.tif
-WC_TRI_IDW_Sebastes_zacentrus_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes zacentrus\WC_TRI_IDW_Sebastes_zacentrus_1992.tif
-WC_TRI_IDW_Sebastes_zacentrus_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes zacentrus\WC_TRI_IDW_Sebastes_zacentrus_1995.tif
-WC_TRI_IDW_Sebastes_zacentrus_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes zacentrus\WC_TRI_IDW_Sebastes_zacentrus_1998.tif
-WC_TRI_IDW_Sebastes_zacentrus_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes zacentrus\WC_TRI_IDW_Sebastes_zacentrus_2001.tif
-WC_TRI_IDW_Sebastes_zacentrus_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastes zacentrus\WC_TRI_IDW_Sebastes_zacentrus_2004.tif
-WC_TRI_IDW_Sebastolobus_alascanus_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastolobus alascanus\WC_TRI_IDW_Sebastolobus_alascanus_1977.tif
-WC_TRI_IDW_Sebastolobus_alascanus_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastolobus alascanus\WC_TRI_IDW_Sebastolobus_alascanus_1980.tif
-WC_TRI_IDW_Sebastolobus_alascanus_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastolobus alascanus\WC_TRI_IDW_Sebastolobus_alascanus_1983.tif
-WC_TRI_IDW_Sebastolobus_alascanus_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastolobus alascanus\WC_TRI_IDW_Sebastolobus_alascanus_1986.tif
-WC_TRI_IDW_Sebastolobus_alascanus_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastolobus alascanus\WC_TRI_IDW_Sebastolobus_alascanus_1989.tif
-WC_TRI_IDW_Sebastolobus_alascanus_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastolobus alascanus\WC_TRI_IDW_Sebastolobus_alascanus_1992.tif
-WC_TRI_IDW_Sebastolobus_alascanus_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastolobus alascanus\WC_TRI_IDW_Sebastolobus_alascanus_1995.tif
-WC_TRI_IDW_Sebastolobus_alascanus_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastolobus alascanus\WC_TRI_IDW_Sebastolobus_alascanus_1998.tif
-WC_TRI_IDW_Sebastolobus_alascanus_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastolobus alascanus\WC_TRI_IDW_Sebastolobus_alascanus_2001.tif
-WC_TRI_IDW_Sebastolobus_alascanus_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Sebastolobus alascanus\WC_TRI_IDW_Sebastolobus_alascanus_2004.tif
-WC_TRI_IDW_Squalus_suckleyi_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Squalus suckleyi\WC_TRI_IDW_Squalus_suckleyi_1977.tif
-WC_TRI_IDW_Squalus_suckleyi_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Squalus suckleyi\WC_TRI_IDW_Squalus_suckleyi_1980.tif
-WC_TRI_IDW_Squalus_suckleyi_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Squalus suckleyi\WC_TRI_IDW_Squalus_suckleyi_1983.tif
-WC_TRI_IDW_Squalus_suckleyi_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Squalus suckleyi\WC_TRI_IDW_Squalus_suckleyi_1986.tif
-WC_TRI_IDW_Squalus_suckleyi_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Squalus suckleyi\WC_TRI_IDW_Squalus_suckleyi_1989.tif
-WC_TRI_IDW_Squalus_suckleyi_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Squalus suckleyi\WC_TRI_IDW_Squalus_suckleyi_1992.tif
-WC_TRI_IDW_Squalus_suckleyi_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Squalus suckleyi\WC_TRI_IDW_Squalus_suckleyi_1995.tif
-WC_TRI_IDW_Squalus_suckleyi_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Squalus suckleyi\WC_TRI_IDW_Squalus_suckleyi_1998.tif
-WC_TRI_IDW_Squalus_suckleyi_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Squalus suckleyi\WC_TRI_IDW_Squalus_suckleyi_2001.tif
-WC_TRI_IDW_Squalus_suckleyi_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Squalus suckleyi\WC_TRI_IDW_Squalus_suckleyi_2004.tif
-WC_TRI_IDW_Thaleichthys_pacificus_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Thaleichthys pacificus\WC_TRI_IDW_Thaleichthys_pacificus_1977.tif
-WC_TRI_IDW_Thaleichthys_pacificus_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Thaleichthys pacificus\WC_TRI_IDW_Thaleichthys_pacificus_1980.tif
-WC_TRI_IDW_Thaleichthys_pacificus_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Thaleichthys pacificus\WC_TRI_IDW_Thaleichthys_pacificus_1983.tif
-WC_TRI_IDW_Thaleichthys_pacificus_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Thaleichthys pacificus\WC_TRI_IDW_Thaleichthys_pacificus_1986.tif
-WC_TRI_IDW_Thaleichthys_pacificus_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Thaleichthys pacificus\WC_TRI_IDW_Thaleichthys_pacificus_1989.tif
-WC_TRI_IDW_Thaleichthys_pacificus_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Thaleichthys pacificus\WC_TRI_IDW_Thaleichthys_pacificus_1992.tif
-WC_TRI_IDW_Thaleichthys_pacificus_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Thaleichthys pacificus\WC_TRI_IDW_Thaleichthys_pacificus_1995.tif
-WC_TRI_IDW_Thaleichthys_pacificus_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Thaleichthys pacificus\WC_TRI_IDW_Thaleichthys_pacificus_1998.tif
-WC_TRI_IDW_Thaleichthys_pacificus_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Thaleichthys pacificus\WC_TRI_IDW_Thaleichthys_pacificus_2001.tif
-WC_TRI_IDW_Thaleichthys_pacificus_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Thaleichthys pacificus\WC_TRI_IDW_Thaleichthys_pacificus_2004.tif
-WC_TRI_IDW_Zalembius_rosaceus_1977.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Zalembius rosaceus\WC_TRI_IDW_Zalembius_rosaceus_1977.tif
-WC_TRI_IDW_Zalembius_rosaceus_1980.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Zalembius rosaceus\WC_TRI_IDW_Zalembius_rosaceus_1980.tif
-WC_TRI_IDW_Zalembius_rosaceus_1983.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Zalembius rosaceus\WC_TRI_IDW_Zalembius_rosaceus_1983.tif
-WC_TRI_IDW_Zalembius_rosaceus_1986.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Zalembius rosaceus\WC_TRI_IDW_Zalembius_rosaceus_1986.tif
-WC_TRI_IDW_Zalembius_rosaceus_1989.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Zalembius rosaceus\WC_TRI_IDW_Zalembius_rosaceus_1989.tif
-WC_TRI_IDW_Zalembius_rosaceus_1992.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Zalembius rosaceus\WC_TRI_IDW_Zalembius_rosaceus_1992.tif
-WC_TRI_IDW_Zalembius_rosaceus_1995.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Zalembius rosaceus\WC_TRI_IDW_Zalembius_rosaceus_1995.tif
-WC_TRI_IDW_Zalembius_rosaceus_1998.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Zalembius rosaceus\WC_TRI_IDW_Zalembius_rosaceus_1998.tif
-WC_TRI_IDW_Zalembius_rosaceus_2001.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Zalembius rosaceus\WC_TRI_IDW_Zalembius_rosaceus_2001.tif
-WC_TRI_IDW_Zalembius_rosaceus_2004.tif,.tif,771.56 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\Zalembius rosaceus\WC_TRI_IDW_Zalembius_rosaceus_2004.tif
-WC_TRI_IDW_Core_Species_Richness_1977.tif,.tif,771.52 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\_Core Species Richness\WC_TRI_IDW_Core_Species_Richness_1977.tif
-WC_TRI_IDW_Core_Species_Richness_1980.tif,.tif,771.52 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\_Core Species Richness\WC_TRI_IDW_Core_Species_Richness_1980.tif
-WC_TRI_IDW_Core_Species_Richness_1983.tif,.tif,771.52 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\_Core Species Richness\WC_TRI_IDW_Core_Species_Richness_1983.tif
-WC_TRI_IDW_Core_Species_Richness_1986.tif,.tif,771.52 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\_Core Species Richness\WC_TRI_IDW_Core_Species_Richness_1986.tif
-WC_TRI_IDW_Core_Species_Richness_1989.tif,.tif,771.52 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\_Core Species Richness\WC_TRI_IDW_Core_Species_Richness_1989.tif
-WC_TRI_IDW_Core_Species_Richness_1992.tif,.tif,771.52 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\_Core Species Richness\WC_TRI_IDW_Core_Species_Richness_1992.tif
-WC_TRI_IDW_Core_Species_Richness_1995.tif,.tif,771.52 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\_Core Species Richness\WC_TRI_IDW_Core_Species_Richness_1995.tif
-WC_TRI_IDW_Core_Species_Richness_1998.tif,.tif,771.52 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\_Core Species Richness\WC_TRI_IDW_Core_Species_Richness_1998.tif
-WC_TRI_IDW_Core_Species_Richness_2001.tif,.tif,771.52 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\_Core Species Richness\WC_TRI_IDW_Core_Species_Richness_2001.tif
-WC_TRI_IDW_Core_Species_Richness_2004.tif,.tif,771.52 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\_Core Species Richness\WC_TRI_IDW_Core_Species_Richness_2004.tif
-WC_TRI_IDW_Species_Richness_1977.tif,.tif,771.52 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\_Species Richness\WC_TRI_IDW_Species_Richness_1977.tif
-WC_TRI_IDW_Species_Richness_1980.tif,.tif,771.52 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\_Species Richness\WC_TRI_IDW_Species_Richness_1980.tif
-WC_TRI_IDW_Species_Richness_1983.tif,.tif,771.52 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\_Species Richness\WC_TRI_IDW_Species_Richness_1983.tif
-WC_TRI_IDW_Species_Richness_1986.tif,.tif,771.52 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\_Species Richness\WC_TRI_IDW_Species_Richness_1986.tif
-WC_TRI_IDW_Species_Richness_1989.tif,.tif,771.52 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\_Species Richness\WC_TRI_IDW_Species_Richness_1989.tif
-WC_TRI_IDW_Species_Richness_1992.tif,.tif,771.52 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\_Species Richness\WC_TRI_IDW_Species_Richness_1992.tif
-WC_TRI_IDW_Species_Richness_1995.tif,.tif,771.52 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\_Species Richness\WC_TRI_IDW_Species_Richness_1995.tif
-WC_TRI_IDW_Species_Richness_1998.tif,.tif,771.52 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\_Species Richness\WC_TRI_IDW_Species_Richness_1998.tif
-WC_TRI_IDW_Species_Richness_2001.tif,.tif,771.52 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\_Species Richness\WC_TRI_IDW_Species_Richness_2001.tif
-WC_TRI_IDW_Species_Richness_2004.tif,.tif,771.52 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\April 1 2023\Images\WC_TRI_IDW\_Species Richness\WC_TRI_IDW_Species_Richness_2004.tif
-August 1 2025.aprx,.aprx,738.71 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 18:57:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\August 1 2025.aprx
-AI_IDW_Region.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\AI_IDW\AI_IDW_Region.dbf
-AI_IDW_Region.prj,.prj,0.43 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\AI_IDW\AI_IDW_Region.prj
-AI_IDW_Region.shp,.shp,1.24 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\AI_IDW\AI_IDW_Region.shp
-EBS_IDW_Region.dbf,.dbf,0.21 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\EBS_IDW\EBS_IDW_Region.dbf
-EBS_IDW_Region.prj,.prj,0.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\EBS_IDW\EBS_IDW_Region.prj
-EBS_IDW_Region.shp,.shp,144.78 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\EBS_IDW\EBS_IDW_Region.shp
-ENBS_IDW_Region.dbf,.dbf,0.21 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\ENBS_IDW\ENBS_IDW_Region.dbf
-ENBS_IDW_Region.prj,.prj,0.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\ENBS_IDW\ENBS_IDW_Region.prj
-ENBS_IDW_Region.shp,.shp,153.66 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\ENBS_IDW\ENBS_IDW_Region.shp
-GMEX_IDW_Region.dbf,.dbf,0.10 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2025-09-18 19:22:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\GMEX_IDW\GMEX_IDW_Region.dbf
-GMEX_IDW_Region.prj,.prj,0.43 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\GMEX_IDW\GMEX_IDW_Region.prj
-GMEX_IDW_Region.shp,.shp,2.94 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\GMEX_IDW\GMEX_IDW_Region.shp
-GOA_IDW_Region.dbf,.dbf,0.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\GOA_IDW\GOA_IDW_Region.dbf
-GOA_IDW_Region.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\GOA_IDW\GOA_IDW_Region.prj
-GOA_IDW_Region.shp,.shp,13.17 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\GOA_IDW\GOA_IDW_Region.shp
-HI_IDW_Region.dbf,.dbf,0.17 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\HI_IDW\HI_IDW_Region.dbf
-HI_IDW_Region.prj,.prj,0.39 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\HI_IDW\HI_IDW_Region.prj
-HI_IDW_Region.shp,.shp,138.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\HI_IDW\HI_IDW_Region.shp
-NBS_IDW_Region.dbf,.dbf,0.33 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\NBS_IDW\NBS_IDW_Region.dbf
-NBS_IDW_Region.prj,.prj,0.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\NBS_IDW\NBS_IDW_Region.prj
-NBS_IDW_Region.shp,.shp,9.36 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\NBS_IDW\NBS_IDW_Region.shp
-NEUS_FAL_IDW_Region.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\NEUS_FAL_IDW\NEUS_FAL_IDW_Region.dbf
-NEUS_FAL_IDW_Region.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\NEUS_FAL_IDW\NEUS_FAL_IDW_Region.prj
-NEUS_FAL_IDW_Region.shp,.shp,138.68 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\NEUS_FAL_IDW\NEUS_FAL_IDW_Region.shp
-NEUS_SPR_IDW_Region.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\NEUS_SPR_IDW\NEUS_SPR_IDW_Region.dbf
-NEUS_SPR_IDW_Region.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\NEUS_SPR_IDW\NEUS_SPR_IDW_Region.prj
-NEUS_SPR_IDW_Region.shp,.shp,138.68 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\NEUS_SPR_IDW\NEUS_SPR_IDW_Region.shp
-SEUS_FAL_IDW_Region.dbf,.dbf,0.34 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\SEUS_FAL_IDW\SEUS_FAL_IDW_Region.dbf
-SEUS_FAL_IDW_Region.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\SEUS_FAL_IDW\SEUS_FAL_IDW_Region.prj
-SEUS_FAL_IDW_Region.shp,.shp,13.45 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\SEUS_FAL_IDW\SEUS_FAL_IDW_Region.shp
-SEUS_SPR_IDW_Region.dbf,.dbf,0.34 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\SEUS_SPR_IDW\SEUS_SPR_IDW_Region.dbf
-SEUS_SPR_IDW_Region.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\SEUS_SPR_IDW\SEUS_SPR_IDW_Region.prj
-SEUS_SPR_IDW_Region.shp,.shp,17.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\SEUS_SPR_IDW\SEUS_SPR_IDW_Region.shp
-SEUS_SUM_IDW_Region.dbf,.dbf,0.34 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\SEUS_SUM_IDW\SEUS_SUM_IDW_Region.dbf
-SEUS_SUM_IDW_Region.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\SEUS_SUM_IDW\SEUS_SUM_IDW_Region.prj
-SEUS_SUM_IDW_Region.shp,.shp,17.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\SEUS_SUM_IDW\SEUS_SUM_IDW_Region.shp
-WC_ANN_IDW_Region.dbf,.dbf,1.37 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2025-09-18 19:22:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\WC_ANN_IDW\WC_ANN_IDW_Region.dbf
-WC_ANN_IDW_Region.prj,.prj,0.43 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\WC_ANN_IDW\WC_ANN_IDW_Region.prj
-WC_ANN_IDW_Region.shp,.shp,47.77 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\WC_ANN_IDW\WC_ANN_IDW_Region.shp
-WC_TRI_IDW_Region.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\WC_TRI_IDW\WC_TRI_IDW_Region.dbf
-WC_TRI_IDW_Region.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\WC_TRI_IDW\WC_TRI_IDW_Region.prj
-WC_TRI_IDW_Region.shp,.shp,5.28 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Dataset_Shapefiles\WC_TRI_IDW\WC_TRI_IDW_Region.shp
-AI_IDW_Region.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2025-09-18 19:23:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\AI_IDW\AI_IDW_Region.dbf
-AI_IDW_Region.prj,.prj,0.43 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\AI_IDW\AI_IDW_Region.prj
-AI_IDW_Region.shp,.shp,1.24 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\AI_IDW\AI_IDW_Region.shp
-EBS_IDW_Region.dbf,.dbf,0.21 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2025-09-18 19:23:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\EBS_IDW\EBS_IDW_Region.dbf
-EBS_IDW_Region.prj,.prj,0.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\EBS_IDW\EBS_IDW_Region.prj
-EBS_IDW_Region.shp,.shp,144.78 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\EBS_IDW\EBS_IDW_Region.shp
-ENBS_IDW_Region.dbf,.dbf,0.21 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2025-09-18 19:23:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\ENBS_IDW\ENBS_IDW_Region.dbf
-ENBS_IDW_Region.prj,.prj,0.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\ENBS_IDW\ENBS_IDW_Region.prj
-ENBS_IDW_Region.shp,.shp,153.66 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\ENBS_IDW\ENBS_IDW_Region.shp
-GMEX_IDW_Region.dbf,.dbf,0.10 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2025-09-18 19:23:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\GMEX_IDW\GMEX_IDW_Region.dbf
-GMEX_IDW_Region.prj,.prj,0.43 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\GMEX_IDW\GMEX_IDW_Region.prj
-GMEX_IDW_Region.shp,.shp,2.94 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\GMEX_IDW\GMEX_IDW_Region.shp
-GOA_IDW_Region.dbf,.dbf,0.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2025-09-18 19:23:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\GOA_IDW\GOA_IDW_Region.dbf
-GOA_IDW_Region.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\GOA_IDW\GOA_IDW_Region.prj
-GOA_IDW_Region.shp,.shp,13.17 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\GOA_IDW\GOA_IDW_Region.shp
-HI_IDW_Region.dbf,.dbf,0.17 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2025-09-18 19:23:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\HI_IDW\HI_IDW_Region.dbf
-HI_IDW_Region.prj,.prj,0.39 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\HI_IDW\HI_IDW_Region.prj
-HI_IDW_Region.shp,.shp,138.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\HI_IDW\HI_IDW_Region.shp
-NBS_IDW_Region.dbf,.dbf,0.33 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2025-09-18 19:23:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\NBS_IDW\NBS_IDW_Region.dbf
-NBS_IDW_Region.prj,.prj,0.44 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\NBS_IDW\NBS_IDW_Region.prj
-NBS_IDW_Region.shp,.shp,9.36 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\NBS_IDW\NBS_IDW_Region.shp
-NEUS_FAL_IDW_Region.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2025-09-18 19:23:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\NEUS_FAL_IDW\NEUS_FAL_IDW_Region.dbf
-NEUS_FAL_IDW_Region.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\NEUS_FAL_IDW\NEUS_FAL_IDW_Region.prj
-NEUS_FAL_IDW_Region.shp,.shp,138.68 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\NEUS_FAL_IDW\NEUS_FAL_IDW_Region.shp
-NEUS_SPR_IDW_Region.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2025-09-18 19:23:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\NEUS_SPR_IDW\NEUS_SPR_IDW_Region.dbf
-NEUS_SPR_IDW_Region.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\NEUS_SPR_IDW\NEUS_SPR_IDW_Region.prj
-NEUS_SPR_IDW_Region.shp,.shp,138.68 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\NEUS_SPR_IDW\NEUS_SPR_IDW_Region.shp
-SEUS_FAL_IDW_Region.dbf,.dbf,0.34 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2025-09-18 19:23:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\SEUS_FAL_IDW\SEUS_FAL_IDW_Region.dbf
-SEUS_FAL_IDW_Region.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\SEUS_FAL_IDW\SEUS_FAL_IDW_Region.prj
-SEUS_FAL_IDW_Region.shp,.shp,13.45 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\SEUS_FAL_IDW\SEUS_FAL_IDW_Region.shp
-SEUS_SPR_IDW_Region.dbf,.dbf,0.34 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2025-09-18 19:23:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\SEUS_SPR_IDW\SEUS_SPR_IDW_Region.dbf
-SEUS_SPR_IDW_Region.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\SEUS_SPR_IDW\SEUS_SPR_IDW_Region.prj
-SEUS_SPR_IDW_Region.shp,.shp,17.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\SEUS_SPR_IDW\SEUS_SPR_IDW_Region.shp
-SEUS_SUM_IDW_Region.dbf,.dbf,0.34 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2025-09-18 19:23:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\SEUS_SUM_IDW\SEUS_SUM_IDW_Region.dbf
-SEUS_SUM_IDW_Region.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\SEUS_SUM_IDW\SEUS_SUM_IDW_Region.prj
-SEUS_SUM_IDW_Region.shp,.shp,17.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\SEUS_SUM_IDW\SEUS_SUM_IDW_Region.shp
-WC_ANN_IDW_Region.dbf,.dbf,1.37 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2025-09-18 19:23:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\WC_ANN_IDW\WC_ANN_IDW_Region.dbf
-WC_ANN_IDW_Region.prj,.prj,0.43 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\WC_ANN_IDW\WC_ANN_IDW_Region.prj
-WC_ANN_IDW_Region.shp,.shp,47.77 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\WC_ANN_IDW\WC_ANN_IDW_Region.shp
-WC_TRI_IDW_Region.dbf,.dbf,0.07 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2025-09-18 19:23:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\WC_TRI_IDW\WC_TRI_IDW_Region.dbf
-WC_TRI_IDW_Region.prj,.prj,0.41 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\WC_TRI_IDW\WC_TRI_IDW_Region.prj
-WC_TRI_IDW_Region.shp,.shp,5.28 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-16 17:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\GpMessages\Dataset_Shapefiles\WC_TRI_IDW\WC_TRI_IDW_Region.shp
-AI_IDW_Anoplopoma_fimbria_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_1991.tif
-AI_IDW_Anoplopoma_fimbria_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_1994.tif
-AI_IDW_Anoplopoma_fimbria_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_1997.tif
-AI_IDW_Anoplopoma_fimbria_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_2000.tif
-AI_IDW_Anoplopoma_fimbria_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_2002.tif
-AI_IDW_Anoplopoma_fimbria_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_2004.tif
-AI_IDW_Anoplopoma_fimbria_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_2006.tif
-AI_IDW_Anoplopoma_fimbria_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_2010.tif
-AI_IDW_Anoplopoma_fimbria_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_2012.tif
-AI_IDW_Anoplopoma_fimbria_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_2014.tif
-AI_IDW_Anoplopoma_fimbria_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_2016.tif
-AI_IDW_Anoplopoma_fimbria_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_2018.tif
-AI_IDW_Anoplopoma_fimbria_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_2022.tif
-AI_IDW_Anoplopoma_fimbria_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Anoplopoma fimbria\AI_IDW_Anoplopoma_fimbria_2024.tif
-AI_IDW_Bathymaster_signatus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_1991.tif
-AI_IDW_Bathymaster_signatus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_1994.tif
-AI_IDW_Bathymaster_signatus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_1997.tif
-AI_IDW_Bathymaster_signatus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_2000.tif
-AI_IDW_Bathymaster_signatus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_2002.tif
-AI_IDW_Bathymaster_signatus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_2004.tif
-AI_IDW_Bathymaster_signatus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_2006.tif
-AI_IDW_Bathymaster_signatus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_2010.tif
-AI_IDW_Bathymaster_signatus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_2012.tif
-AI_IDW_Bathymaster_signatus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_2014.tif
-AI_IDW_Bathymaster_signatus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_2016.tif
-AI_IDW_Bathymaster_signatus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_2018.tif
-AI_IDW_Bathymaster_signatus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_2022.tif
-AI_IDW_Bathymaster_signatus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:28:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Bathymaster signatus\AI_IDW_Bathymaster_signatus_2024.tif
-AI_IDW_Berryteuthis_magister_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_1991.tif
-AI_IDW_Berryteuthis_magister_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_1994.tif
-AI_IDW_Berryteuthis_magister_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_1997.tif
-AI_IDW_Berryteuthis_magister_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_2000.tif
-AI_IDW_Berryteuthis_magister_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_2002.tif
-AI_IDW_Berryteuthis_magister_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_2004.tif
-AI_IDW_Berryteuthis_magister_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_2006.tif
-AI_IDW_Berryteuthis_magister_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:06:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_2010.tif
-AI_IDW_Berryteuthis_magister_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_2012.tif
-AI_IDW_Berryteuthis_magister_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_2014.tif
-AI_IDW_Berryteuthis_magister_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_2016.tif
-AI_IDW_Berryteuthis_magister_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_2018.tif
-AI_IDW_Berryteuthis_magister_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_2022.tif
-AI_IDW_Berryteuthis_magister_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Berryteuthis magister\AI_IDW_Berryteuthis_magister_2024.tif
-AI_IDW_Crossaster_papposus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_1991.tif
-AI_IDW_Crossaster_papposus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_1994.tif
-AI_IDW_Crossaster_papposus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_1997.tif
-AI_IDW_Crossaster_papposus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_2000.tif
-AI_IDW_Crossaster_papposus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_2002.tif
-AI_IDW_Crossaster_papposus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_2004.tif
-AI_IDW_Crossaster_papposus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_2006.tif
-AI_IDW_Crossaster_papposus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_2010.tif
-AI_IDW_Crossaster_papposus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_2012.tif
-AI_IDW_Crossaster_papposus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_2014.tif
-AI_IDW_Crossaster_papposus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_2016.tif
-AI_IDW_Crossaster_papposus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_2018.tif
-AI_IDW_Crossaster_papposus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_2022.tif
-AI_IDW_Crossaster_papposus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Crossaster papposus\AI_IDW_Crossaster_papposus_2024.tif
-AI_IDW_Diplopteraster_multipes_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_1991.tif
-AI_IDW_Diplopteraster_multipes_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_1994.tif
-AI_IDW_Diplopteraster_multipes_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_1997.tif
-AI_IDW_Diplopteraster_multipes_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_2000.tif
-AI_IDW_Diplopteraster_multipes_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_2002.tif
-AI_IDW_Diplopteraster_multipes_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_2004.tif
-AI_IDW_Diplopteraster_multipes_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_2006.tif
-AI_IDW_Diplopteraster_multipes_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_2010.tif
-AI_IDW_Diplopteraster_multipes_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_2012.tif
-AI_IDW_Diplopteraster_multipes_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_2014.tif
-AI_IDW_Diplopteraster_multipes_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_2016.tif
-AI_IDW_Diplopteraster_multipes_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_2018.tif
-AI_IDW_Diplopteraster_multipes_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_2022.tif
-AI_IDW_Diplopteraster_multipes_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Diplopteraster multipes\AI_IDW_Diplopteraster_multipes_2024.tif
-AI_IDW_Elassochirus_cavimanus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_1991.tif
-AI_IDW_Elassochirus_cavimanus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_1994.tif
-AI_IDW_Elassochirus_cavimanus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_1997.tif
-AI_IDW_Elassochirus_cavimanus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_2000.tif
-AI_IDW_Elassochirus_cavimanus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_2002.tif
-AI_IDW_Elassochirus_cavimanus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_2004.tif
-AI_IDW_Elassochirus_cavimanus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_2006.tif
-AI_IDW_Elassochirus_cavimanus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_2010.tif
-AI_IDW_Elassochirus_cavimanus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_2012.tif
-AI_IDW_Elassochirus_cavimanus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_2014.tif
-AI_IDW_Elassochirus_cavimanus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_2016.tif
-AI_IDW_Elassochirus_cavimanus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_2018.tif
-AI_IDW_Elassochirus_cavimanus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_2022.tif
-AI_IDW_Elassochirus_cavimanus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Elassochirus cavimanus\AI_IDW_Elassochirus_cavimanus_2024.tif
-AI_IDW_Enteroctopus_dofleini_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_1991.tif
-AI_IDW_Enteroctopus_dofleini_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_1994.tif
-AI_IDW_Enteroctopus_dofleini_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_1997.tif
-AI_IDW_Enteroctopus_dofleini_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_2000.tif
-AI_IDW_Enteroctopus_dofleini_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_2002.tif
-AI_IDW_Enteroctopus_dofleini_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_2004.tif
-AI_IDW_Enteroctopus_dofleini_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_2006.tif
-AI_IDW_Enteroctopus_dofleini_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_2010.tif
-AI_IDW_Enteroctopus_dofleini_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_2012.tif
-AI_IDW_Enteroctopus_dofleini_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_2014.tif
-AI_IDW_Enteroctopus_dofleini_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_2016.tif
-AI_IDW_Enteroctopus_dofleini_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_2018.tif
-AI_IDW_Enteroctopus_dofleini_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_2022.tif
-AI_IDW_Enteroctopus_dofleini_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Enteroctopus dofleini\AI_IDW_Enteroctopus_dofleini_2024.tif
-AI_IDW_Eumicrotremus_orbis_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_1991.tif
-AI_IDW_Eumicrotremus_orbis_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_1994.tif
-AI_IDW_Eumicrotremus_orbis_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_1997.tif
-AI_IDW_Eumicrotremus_orbis_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_2000.tif
-AI_IDW_Eumicrotremus_orbis_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_2002.tif
-AI_IDW_Eumicrotremus_orbis_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_2004.tif
-AI_IDW_Eumicrotremus_orbis_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_2006.tif
-AI_IDW_Eumicrotremus_orbis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_2010.tif
-AI_IDW_Eumicrotremus_orbis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_2012.tif
-AI_IDW_Eumicrotremus_orbis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_2014.tif
-AI_IDW_Eumicrotremus_orbis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_2016.tif
-AI_IDW_Eumicrotremus_orbis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_2018.tif
-AI_IDW_Eumicrotremus_orbis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_2022.tif
-AI_IDW_Eumicrotremus_orbis_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Eumicrotremus orbis\AI_IDW_Eumicrotremus_orbis_2024.tif
-AI_IDW_Gadus_chalcogrammus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_1991.tif
-AI_IDW_Gadus_chalcogrammus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_1994.tif
-AI_IDW_Gadus_chalcogrammus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_1997.tif
-AI_IDW_Gadus_chalcogrammus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_2000.tif
-AI_IDW_Gadus_chalcogrammus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_2002.tif
-AI_IDW_Gadus_chalcogrammus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_2004.tif
-AI_IDW_Gadus_chalcogrammus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_2006.tif
-AI_IDW_Gadus_chalcogrammus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_2010.tif
-AI_IDW_Gadus_chalcogrammus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_2012.tif
-AI_IDW_Gadus_chalcogrammus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_2014.tif
-AI_IDW_Gadus_chalcogrammus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_2016.tif
-AI_IDW_Gadus_chalcogrammus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_2018.tif
-AI_IDW_Gadus_chalcogrammus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_2022.tif
-AI_IDW_Gadus_chalcogrammus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus chalcogrammus\AI_IDW_Gadus_chalcogrammus_2024.tif
-AI_IDW_Gadus_macrocephalus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_1991.tif
-AI_IDW_Gadus_macrocephalus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_1994.tif
-AI_IDW_Gadus_macrocephalus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_1997.tif
-AI_IDW_Gadus_macrocephalus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_2000.tif
-AI_IDW_Gadus_macrocephalus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_2002.tif
-AI_IDW_Gadus_macrocephalus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_2004.tif
-AI_IDW_Gadus_macrocephalus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_2006.tif
-AI_IDW_Gadus_macrocephalus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_2010.tif
-AI_IDW_Gadus_macrocephalus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_2012.tif
-AI_IDW_Gadus_macrocephalus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_2014.tif
-AI_IDW_Gadus_macrocephalus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_2016.tif
-AI_IDW_Gadus_macrocephalus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_2018.tif
-AI_IDW_Gadus_macrocephalus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_2022.tif
-AI_IDW_Gadus_macrocephalus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gadus macrocephalus\AI_IDW_Gadus_macrocephalus_2024.tif
-AI_IDW_Glyptocephalus_zachirus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_1991.tif
-AI_IDW_Glyptocephalus_zachirus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_1994.tif
-AI_IDW_Glyptocephalus_zachirus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_1997.tif
-AI_IDW_Glyptocephalus_zachirus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_2000.tif
-AI_IDW_Glyptocephalus_zachirus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_2002.tif
-AI_IDW_Glyptocephalus_zachirus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_2004.tif
-AI_IDW_Glyptocephalus_zachirus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_2006.tif
-AI_IDW_Glyptocephalus_zachirus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_2010.tif
-AI_IDW_Glyptocephalus_zachirus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_2012.tif
-AI_IDW_Glyptocephalus_zachirus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_2014.tif
-AI_IDW_Glyptocephalus_zachirus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_2016.tif
-AI_IDW_Glyptocephalus_zachirus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_2018.tif
-AI_IDW_Glyptocephalus_zachirus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_2022.tif
-AI_IDW_Glyptocephalus_zachirus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Glyptocephalus zachirus\AI_IDW_Glyptocephalus_zachirus_2024.tif
-AI_IDW_Gorgonocephalus_eucnemis_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_1991.tif
-AI_IDW_Gorgonocephalus_eucnemis_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_1994.tif
-AI_IDW_Gorgonocephalus_eucnemis_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_1997.tif
-AI_IDW_Gorgonocephalus_eucnemis_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_2000.tif
-AI_IDW_Gorgonocephalus_eucnemis_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_2002.tif
-AI_IDW_Gorgonocephalus_eucnemis_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_2004.tif
-AI_IDW_Gorgonocephalus_eucnemis_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_2006.tif
-AI_IDW_Gorgonocephalus_eucnemis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_2010.tif
-AI_IDW_Gorgonocephalus_eucnemis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_2012.tif
-AI_IDW_Gorgonocephalus_eucnemis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_2014.tif
-AI_IDW_Gorgonocephalus_eucnemis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_2016.tif
-AI_IDW_Gorgonocephalus_eucnemis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_2018.tif
-AI_IDW_Gorgonocephalus_eucnemis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_2022.tif
-AI_IDW_Gorgonocephalus_eucnemis_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gorgonocephalus eucnemis\AI_IDW_Gorgonocephalus_eucnemis_2024.tif
-AI_IDW_Gymnocanthus_galeatus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_1991.tif
-AI_IDW_Gymnocanthus_galeatus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_1994.tif
-AI_IDW_Gymnocanthus_galeatus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_1997.tif
-AI_IDW_Gymnocanthus_galeatus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_2000.tif
-AI_IDW_Gymnocanthus_galeatus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_2002.tif
-AI_IDW_Gymnocanthus_galeatus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_2004.tif
-AI_IDW_Gymnocanthus_galeatus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_2006.tif
-AI_IDW_Gymnocanthus_galeatus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_2010.tif
-AI_IDW_Gymnocanthus_galeatus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_2012.tif
-AI_IDW_Gymnocanthus_galeatus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_2014.tif
-AI_IDW_Gymnocanthus_galeatus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_2016.tif
-AI_IDW_Gymnocanthus_galeatus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_2018.tif
-AI_IDW_Gymnocanthus_galeatus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_2022.tif
-AI_IDW_Gymnocanthus_galeatus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Gymnocanthus galeatus\AI_IDW_Gymnocanthus_galeatus_2024.tif
-AI_IDW_Hemilepidotus_jordani_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_1991.tif
-AI_IDW_Hemilepidotus_jordani_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_1994.tif
-AI_IDW_Hemilepidotus_jordani_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_1997.tif
-AI_IDW_Hemilepidotus_jordani_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_2000.tif
-AI_IDW_Hemilepidotus_jordani_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_2002.tif
-AI_IDW_Hemilepidotus_jordani_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_2004.tif
-AI_IDW_Hemilepidotus_jordani_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_2006.tif
-AI_IDW_Hemilepidotus_jordani_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_2010.tif
-AI_IDW_Hemilepidotus_jordani_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_2012.tif
-AI_IDW_Hemilepidotus_jordani_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_2014.tif
-AI_IDW_Hemilepidotus_jordani_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_2016.tif
-AI_IDW_Hemilepidotus_jordani_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_2018.tif
-AI_IDW_Hemilepidotus_jordani_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_2022.tif
-AI_IDW_Hemilepidotus_jordani_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hemilepidotus jordani\AI_IDW_Hemilepidotus_jordani_2024.tif
-AI_IDW_Hippasteria_phrygiana_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippasteria phrygiana\AI_IDW_Hippasteria_phrygiana_1991.tif
-AI_IDW_Hippasteria_phrygiana_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippasteria phrygiana\AI_IDW_Hippasteria_phrygiana_1994.tif
-AI_IDW_Hippasteria_phrygiana_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippasteria phrygiana\AI_IDW_Hippasteria_phrygiana_1997.tif
-AI_IDW_Hippasteria_phrygiana_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippasteria phrygiana\AI_IDW_Hippasteria_phrygiana_2000.tif
-AI_IDW_Hippasteria_phrygiana_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippasteria phrygiana\AI_IDW_Hippasteria_phrygiana_2002.tif
-AI_IDW_Hippasteria_phrygiana_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippasteria phrygiana\AI_IDW_Hippasteria_phrygiana_2004.tif
-AI_IDW_Hippasteria_phrygiana_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippasteria phrygiana\AI_IDW_Hippasteria_phrygiana_2006.tif
-AI_IDW_Hippasteria_phrygiana_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippasteria phrygiana\AI_IDW_Hippasteria_phrygiana_2010.tif
-AI_IDW_Hippasteria_phrygiana_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippasteria phrygiana\AI_IDW_Hippasteria_phrygiana_2012.tif
-AI_IDW_Hippasteria_phrygiana_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippasteria phrygiana\AI_IDW_Hippasteria_phrygiana_2014.tif
-AI_IDW_Hippasteria_phrygiana_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippasteria phrygiana\AI_IDW_Hippasteria_phrygiana_2016.tif
-AI_IDW_Hippasteria_phrygiana_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippasteria phrygiana\AI_IDW_Hippasteria_phrygiana_2018.tif
-AI_IDW_Hippasteria_phrygiana_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippasteria phrygiana\AI_IDW_Hippasteria_phrygiana_2022.tif
-AI_IDW_Hippasteria_phrygiana_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippasteria phrygiana\AI_IDW_Hippasteria_phrygiana_2024.tif
-AI_IDW_Hippoglossoides_elassodon_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_1991.tif
-AI_IDW_Hippoglossoides_elassodon_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_1994.tif
-AI_IDW_Hippoglossoides_elassodon_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_1997.tif
-AI_IDW_Hippoglossoides_elassodon_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_2000.tif
-AI_IDW_Hippoglossoides_elassodon_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_2002.tif
-AI_IDW_Hippoglossoides_elassodon_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_2004.tif
-AI_IDW_Hippoglossoides_elassodon_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_2006.tif
-AI_IDW_Hippoglossoides_elassodon_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_2010.tif
-AI_IDW_Hippoglossoides_elassodon_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_2012.tif
-AI_IDW_Hippoglossoides_elassodon_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_2014.tif
-AI_IDW_Hippoglossoides_elassodon_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_2016.tif
-AI_IDW_Hippoglossoides_elassodon_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_2018.tif
-AI_IDW_Hippoglossoides_elassodon_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_2022.tif
-AI_IDW_Hippoglossoides_elassodon_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossoides elassodon\AI_IDW_Hippoglossoides_elassodon_2024.tif
-AI_IDW_Hippoglossus_stenolepis_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_1991.tif
-AI_IDW_Hippoglossus_stenolepis_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_1994.tif
-AI_IDW_Hippoglossus_stenolepis_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_1997.tif
-AI_IDW_Hippoglossus_stenolepis_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_2000.tif
-AI_IDW_Hippoglossus_stenolepis_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_2002.tif
-AI_IDW_Hippoglossus_stenolepis_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_2004.tif
-AI_IDW_Hippoglossus_stenolepis_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_2006.tif
-AI_IDW_Hippoglossus_stenolepis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_2010.tif
-AI_IDW_Hippoglossus_stenolepis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_2012.tif
-AI_IDW_Hippoglossus_stenolepis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_2014.tif
-AI_IDW_Hippoglossus_stenolepis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_2016.tif
-AI_IDW_Hippoglossus_stenolepis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_2018.tif
-AI_IDW_Hippoglossus_stenolepis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_2022.tif
-AI_IDW_Hippoglossus_stenolepis_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hippoglossus stenolepis\AI_IDW_Hippoglossus_stenolepis_2024.tif
-AI_IDW_Hyas_lyratus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_1991.tif
-AI_IDW_Hyas_lyratus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_1994.tif
-AI_IDW_Hyas_lyratus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_1997.tif
-AI_IDW_Hyas_lyratus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_2000.tif
-AI_IDW_Hyas_lyratus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_2002.tif
-AI_IDW_Hyas_lyratus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_2004.tif
-AI_IDW_Hyas_lyratus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_2006.tif
-AI_IDW_Hyas_lyratus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_2010.tif
-AI_IDW_Hyas_lyratus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_2012.tif
-AI_IDW_Hyas_lyratus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_2014.tif
-AI_IDW_Hyas_lyratus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_2016.tif
-AI_IDW_Hyas_lyratus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_2018.tif
-AI_IDW_Hyas_lyratus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_2022.tif
-AI_IDW_Hyas_lyratus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Hyas lyratus\AI_IDW_Hyas_lyratus_2024.tif
-AI_IDW_Lepidopsetta_sp_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_1991.tif
-AI_IDW_Lepidopsetta_sp_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_1994.tif
-AI_IDW_Lepidopsetta_sp_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_1997.tif
-AI_IDW_Lepidopsetta_sp_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_2000.tif
-AI_IDW_Lepidopsetta_sp_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_2002.tif
-AI_IDW_Lepidopsetta_sp_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_2004.tif
-AI_IDW_Lepidopsetta_sp_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_2006.tif
-AI_IDW_Lepidopsetta_sp_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_2010.tif
-AI_IDW_Lepidopsetta_sp_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_2012.tif
-AI_IDW_Lepidopsetta_sp_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_2014.tif
-AI_IDW_Lepidopsetta_sp_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_2016.tif
-AI_IDW_Lepidopsetta_sp_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_2018.tif
-AI_IDW_Lepidopsetta_sp_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_2022.tif
-AI_IDW_Lepidopsetta_sp_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lepidopsetta sp\AI_IDW_Lepidopsetta_sp_2024.tif
-AI_IDW_Lethasterias_nanimensis_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_1991.tif
-AI_IDW_Lethasterias_nanimensis_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_1994.tif
-AI_IDW_Lethasterias_nanimensis_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_1997.tif
-AI_IDW_Lethasterias_nanimensis_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_2000.tif
-AI_IDW_Lethasterias_nanimensis_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_2002.tif
-AI_IDW_Lethasterias_nanimensis_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_2004.tif
-AI_IDW_Lethasterias_nanimensis_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:07:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_2006.tif
-AI_IDW_Lethasterias_nanimensis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_2010.tif
-AI_IDW_Lethasterias_nanimensis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_2012.tif
-AI_IDW_Lethasterias_nanimensis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_2014.tif
-AI_IDW_Lethasterias_nanimensis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_2016.tif
-AI_IDW_Lethasterias_nanimensis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_2018.tif
-AI_IDW_Lethasterias_nanimensis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_2022.tif
-AI_IDW_Lethasterias_nanimensis_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lethasterias nanimensis\AI_IDW_Lethasterias_nanimensis_2024.tif
-AI_IDW_Lithodes_aequispinus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_1991.tif
-AI_IDW_Lithodes_aequispinus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_1994.tif
-AI_IDW_Lithodes_aequispinus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_1997.tif
-AI_IDW_Lithodes_aequispinus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_2000.tif
-AI_IDW_Lithodes_aequispinus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_2002.tif
-AI_IDW_Lithodes_aequispinus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_2004.tif
-AI_IDW_Lithodes_aequispinus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_2006.tif
-AI_IDW_Lithodes_aequispinus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_2010.tif
-AI_IDW_Lithodes_aequispinus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_2012.tif
-AI_IDW_Lithodes_aequispinus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_2014.tif
-AI_IDW_Lithodes_aequispinus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_2016.tif
-AI_IDW_Lithodes_aequispinus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_2018.tif
-AI_IDW_Lithodes_aequispinus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_2022.tif
-AI_IDW_Lithodes_aequispinus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Lithodes aequispinus\AI_IDW_Lithodes_aequispinus_2024.tif
-AI_IDW_Malacocottus_zonurus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_1991.tif
-AI_IDW_Malacocottus_zonurus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_1994.tif
-AI_IDW_Malacocottus_zonurus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_1997.tif
-AI_IDW_Malacocottus_zonurus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_2000.tif
-AI_IDW_Malacocottus_zonurus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_2002.tif
-AI_IDW_Malacocottus_zonurus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_2004.tif
-AI_IDW_Malacocottus_zonurus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_2006.tif
-AI_IDW_Malacocottus_zonurus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_2010.tif
-AI_IDW_Malacocottus_zonurus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_2012.tif
-AI_IDW_Malacocottus_zonurus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_2014.tif
-AI_IDW_Malacocottus_zonurus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_2016.tif
-AI_IDW_Malacocottus_zonurus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_2018.tif
-AI_IDW_Malacocottus_zonurus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_2022.tif
-AI_IDW_Malacocottus_zonurus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Malacocottus zonurus\AI_IDW_Malacocottus_zonurus_2024.tif
-AI_IDW_Microstomus_pacificus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_1991.tif
-AI_IDW_Microstomus_pacificus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_1994.tif
-AI_IDW_Microstomus_pacificus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_1997.tif
-AI_IDW_Microstomus_pacificus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_2000.tif
-AI_IDW_Microstomus_pacificus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_2002.tif
-AI_IDW_Microstomus_pacificus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_2004.tif
-AI_IDW_Microstomus_pacificus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_2006.tif
-AI_IDW_Microstomus_pacificus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_2010.tif
-AI_IDW_Microstomus_pacificus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_2012.tif
-AI_IDW_Microstomus_pacificus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_2014.tif
-AI_IDW_Microstomus_pacificus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_2016.tif
-AI_IDW_Microstomus_pacificus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_2018.tif
-AI_IDW_Microstomus_pacificus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_2022.tif
-AI_IDW_Microstomus_pacificus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Microstomus pacificus\AI_IDW_Microstomus_pacificus_2024.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_1991.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_1994.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_1997.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_2000.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_2002.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_2004.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_2006.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_2010.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_2012.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_2014.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_2016.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_2018.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_2022.tif
-AI_IDW_Myoxocephalus_polyacanthocephalus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Myoxocephalus polyacanthocephalus\AI_IDW_Myoxocephalus_polyacanthocephalus_2024.tif
-AI_IDW_Oregonia_gracilis_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_1991.tif
-AI_IDW_Oregonia_gracilis_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_1994.tif
-AI_IDW_Oregonia_gracilis_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_1997.tif
-AI_IDW_Oregonia_gracilis_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_2000.tif
-AI_IDW_Oregonia_gracilis_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_2002.tif
-AI_IDW_Oregonia_gracilis_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_2004.tif
-AI_IDW_Oregonia_gracilis_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_2006.tif
-AI_IDW_Oregonia_gracilis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_2010.tif
-AI_IDW_Oregonia_gracilis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_2012.tif
-AI_IDW_Oregonia_gracilis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_2014.tif
-AI_IDW_Oregonia_gracilis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_2016.tif
-AI_IDW_Oregonia_gracilis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_2018.tif
-AI_IDW_Oregonia_gracilis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_2022.tif
-AI_IDW_Oregonia_gracilis_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Oregonia gracilis\AI_IDW_Oregonia_gracilis_2024.tif
-AI_IDW_Pagurus_brandti_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_1991.tif
-AI_IDW_Pagurus_brandti_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_1994.tif
-AI_IDW_Pagurus_brandti_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_1997.tif
-AI_IDW_Pagurus_brandti_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_2000.tif
-AI_IDW_Pagurus_brandti_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_2002.tif
-AI_IDW_Pagurus_brandti_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_2004.tif
-AI_IDW_Pagurus_brandti_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_2006.tif
-AI_IDW_Pagurus_brandti_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_2010.tif
-AI_IDW_Pagurus_brandti_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_2012.tif
-AI_IDW_Pagurus_brandti_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_2014.tif
-AI_IDW_Pagurus_brandti_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_2016.tif
-AI_IDW_Pagurus_brandti_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_2018.tif
-AI_IDW_Pagurus_brandti_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_2022.tif
-AI_IDW_Pagurus_brandti_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pagurus brandti\AI_IDW_Pagurus_brandti_2024.tif
-AI_IDW_Pleurogrammus_monopterygius_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_1991.tif
-AI_IDW_Pleurogrammus_monopterygius_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_1994.tif
-AI_IDW_Pleurogrammus_monopterygius_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_1997.tif
-AI_IDW_Pleurogrammus_monopterygius_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_2000.tif
-AI_IDW_Pleurogrammus_monopterygius_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_2002.tif
-AI_IDW_Pleurogrammus_monopterygius_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_2004.tif
-AI_IDW_Pleurogrammus_monopterygius_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_2006.tif
-AI_IDW_Pleurogrammus_monopterygius_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_2010.tif
-AI_IDW_Pleurogrammus_monopterygius_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_2012.tif
-AI_IDW_Pleurogrammus_monopterygius_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_2014.tif
-AI_IDW_Pleurogrammus_monopterygius_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_2016.tif
-AI_IDW_Pleurogrammus_monopterygius_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_2018.tif
-AI_IDW_Pleurogrammus_monopterygius_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_2022.tif
-AI_IDW_Pleurogrammus_monopterygius_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Pleurogrammus monopterygius\AI_IDW_Pleurogrammus_monopterygius_2024.tif
-AI_IDW_Podothecus_accipenserinus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_1991.tif
-AI_IDW_Podothecus_accipenserinus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_1994.tif
-AI_IDW_Podothecus_accipenserinus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_1997.tif
-AI_IDW_Podothecus_accipenserinus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_2000.tif
-AI_IDW_Podothecus_accipenserinus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_2002.tif
-AI_IDW_Podothecus_accipenserinus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_2004.tif
-AI_IDW_Podothecus_accipenserinus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_2006.tif
-AI_IDW_Podothecus_accipenserinus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_2010.tif
-AI_IDW_Podothecus_accipenserinus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_2012.tif
-AI_IDW_Podothecus_accipenserinus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_2014.tif
-AI_IDW_Podothecus_accipenserinus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_2016.tif
-AI_IDW_Podothecus_accipenserinus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_2018.tif
-AI_IDW_Podothecus_accipenserinus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_2022.tif
-AI_IDW_Podothecus_accipenserinus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Podothecus accipenserinus\AI_IDW_Podothecus_accipenserinus_2024.tif
-AI_IDW_Rossia_pacifica_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_1991.tif
-AI_IDW_Rossia_pacifica_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_1994.tif
-AI_IDW_Rossia_pacifica_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_1997.tif
-AI_IDW_Rossia_pacifica_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_2000.tif
-AI_IDW_Rossia_pacifica_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_2002.tif
-AI_IDW_Rossia_pacifica_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_2004.tif
-AI_IDW_Rossia_pacifica_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_2006.tif
-AI_IDW_Rossia_pacifica_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_2010.tif
-AI_IDW_Rossia_pacifica_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_2012.tif
-AI_IDW_Rossia_pacifica_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_2014.tif
-AI_IDW_Rossia_pacifica_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_2016.tif
-AI_IDW_Rossia_pacifica_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_2018.tif
-AI_IDW_Rossia_pacifica_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_2022.tif
-AI_IDW_Rossia_pacifica_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Rossia pacifica\AI_IDW_Rossia_pacifica_2024.tif
-AI_IDW_Sarritor_frenatus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_1991.tif
-AI_IDW_Sarritor_frenatus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_1994.tif
-AI_IDW_Sarritor_frenatus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_1997.tif
-AI_IDW_Sarritor_frenatus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_2000.tif
-AI_IDW_Sarritor_frenatus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_2002.tif
-AI_IDW_Sarritor_frenatus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_2004.tif
-AI_IDW_Sarritor_frenatus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_2006.tif
-AI_IDW_Sarritor_frenatus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_2010.tif
-AI_IDW_Sarritor_frenatus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_2012.tif
-AI_IDW_Sarritor_frenatus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_2014.tif
-AI_IDW_Sarritor_frenatus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_2016.tif
-AI_IDW_Sarritor_frenatus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_2018.tif
-AI_IDW_Sarritor_frenatus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_2022.tif
-AI_IDW_Sarritor_frenatus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sarritor frenatus\AI_IDW_Sarritor_frenatus_2024.tif
-AI_IDW_Sebastes_alutus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_1991.tif
-AI_IDW_Sebastes_alutus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_1994.tif
-AI_IDW_Sebastes_alutus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_1997.tif
-AI_IDW_Sebastes_alutus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_2000.tif
-AI_IDW_Sebastes_alutus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_2002.tif
-AI_IDW_Sebastes_alutus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_2004.tif
-AI_IDW_Sebastes_alutus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_2006.tif
-AI_IDW_Sebastes_alutus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_2010.tif
-AI_IDW_Sebastes_alutus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_2012.tif
-AI_IDW_Sebastes_alutus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_2014.tif
-AI_IDW_Sebastes_alutus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_2016.tif
-AI_IDW_Sebastes_alutus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_2018.tif
-AI_IDW_Sebastes_alutus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_2022.tif
-AI_IDW_Sebastes_alutus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes alutus\AI_IDW_Sebastes_alutus_2024.tif
-AI_IDW_Sebastes_borealis_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_1991.tif
-AI_IDW_Sebastes_borealis_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_1994.tif
-AI_IDW_Sebastes_borealis_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_1997.tif
-AI_IDW_Sebastes_borealis_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_2000.tif
-AI_IDW_Sebastes_borealis_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_2002.tif
-AI_IDW_Sebastes_borealis_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_2004.tif
-AI_IDW_Sebastes_borealis_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_2006.tif
-AI_IDW_Sebastes_borealis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_2010.tif
-AI_IDW_Sebastes_borealis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_2012.tif
-AI_IDW_Sebastes_borealis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_2014.tif
-AI_IDW_Sebastes_borealis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_2016.tif
-AI_IDW_Sebastes_borealis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_2018.tif
-AI_IDW_Sebastes_borealis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_2022.tif
-AI_IDW_Sebastes_borealis_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes borealis\AI_IDW_Sebastes_borealis_2024.tif
-AI_IDW_Sebastes_polyspinis_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_1991.tif
-AI_IDW_Sebastes_polyspinis_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_1994.tif
-AI_IDW_Sebastes_polyspinis_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_1997.tif
-AI_IDW_Sebastes_polyspinis_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_2000.tif
-AI_IDW_Sebastes_polyspinis_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_2002.tif
-AI_IDW_Sebastes_polyspinis_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_2004.tif
-AI_IDW_Sebastes_polyspinis_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_2006.tif
-AI_IDW_Sebastes_polyspinis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_2010.tif
-AI_IDW_Sebastes_polyspinis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_2012.tif
-AI_IDW_Sebastes_polyspinis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_2014.tif
-AI_IDW_Sebastes_polyspinis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_2016.tif
-AI_IDW_Sebastes_polyspinis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_2018.tif
-AI_IDW_Sebastes_polyspinis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_2022.tif
-AI_IDW_Sebastes_polyspinis_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastes polyspinis\AI_IDW_Sebastes_polyspinis_2024.tif
-AI_IDW_Sebastolobus_alascanus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_1991.tif
-AI_IDW_Sebastolobus_alascanus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_1994.tif
-AI_IDW_Sebastolobus_alascanus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_1997.tif
-AI_IDW_Sebastolobus_alascanus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_2000.tif
-AI_IDW_Sebastolobus_alascanus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_2002.tif
-AI_IDW_Sebastolobus_alascanus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_2004.tif
-AI_IDW_Sebastolobus_alascanus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_2006.tif
-AI_IDW_Sebastolobus_alascanus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_2010.tif
-AI_IDW_Sebastolobus_alascanus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_2012.tif
-AI_IDW_Sebastolobus_alascanus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_2014.tif
-AI_IDW_Sebastolobus_alascanus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_2016.tif
-AI_IDW_Sebastolobus_alascanus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_2018.tif
-AI_IDW_Sebastolobus_alascanus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_2022.tif
-AI_IDW_Sebastolobus_alascanus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Sebastolobus alascanus\AI_IDW_Sebastolobus_alascanus_2024.tif
-AI_IDW_Triglops_forficatus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_1991.tif
-AI_IDW_Triglops_forficatus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_1994.tif
-AI_IDW_Triglops_forficatus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_1997.tif
-AI_IDW_Triglops_forficatus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_2000.tif
-AI_IDW_Triglops_forficatus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_2002.tif
-AI_IDW_Triglops_forficatus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_2004.tif
-AI_IDW_Triglops_forficatus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_2006.tif
-AI_IDW_Triglops_forficatus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_2010.tif
-AI_IDW_Triglops_forficatus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_2012.tif
-AI_IDW_Triglops_forficatus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_2014.tif
-AI_IDW_Triglops_forficatus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_2016.tif
-AI_IDW_Triglops_forficatus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_2018.tif
-AI_IDW_Triglops_forficatus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_2022.tif
-AI_IDW_Triglops_forficatus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:08:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops forficatus\AI_IDW_Triglops_forficatus_2024.tif
-AI_IDW_Triglops_scepticus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_1991.tif
-AI_IDW_Triglops_scepticus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_1994.tif
-AI_IDW_Triglops_scepticus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_1997.tif
-AI_IDW_Triglops_scepticus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_2000.tif
-AI_IDW_Triglops_scepticus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_2002.tif
-AI_IDW_Triglops_scepticus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_2004.tif
-AI_IDW_Triglops_scepticus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_2006.tif
-AI_IDW_Triglops_scepticus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_2010.tif
-AI_IDW_Triglops_scepticus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_2012.tif
-AI_IDW_Triglops_scepticus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_2014.tif
-AI_IDW_Triglops_scepticus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_2016.tif
-AI_IDW_Triglops_scepticus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_2018.tif
-AI_IDW_Triglops_scepticus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_2022.tif
-AI_IDW_Triglops_scepticus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Triglops scepticus\AI_IDW_Triglops_scepticus_2024.tif
-AI_IDW_Zaprora_silenus_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_1991.tif
-AI_IDW_Zaprora_silenus_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_1994.tif
-AI_IDW_Zaprora_silenus_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_1997.tif
-AI_IDW_Zaprora_silenus_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_2000.tif
-AI_IDW_Zaprora_silenus_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_2002.tif
-AI_IDW_Zaprora_silenus_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_2004.tif
-AI_IDW_Zaprora_silenus_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_2006.tif
-AI_IDW_Zaprora_silenus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_2010.tif
-AI_IDW_Zaprora_silenus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_2012.tif
-AI_IDW_Zaprora_silenus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_2014.tif
-AI_IDW_Zaprora_silenus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_2016.tif
-AI_IDW_Zaprora_silenus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_2018.tif
-AI_IDW_Zaprora_silenus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_2022.tif
-AI_IDW_Zaprora_silenus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\Zaprora silenus\AI_IDW_Zaprora_silenus_2024.tif
-AI_IDW_Core_Species_Richness_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_1991.tif
-AI_IDW_Core_Species_Richness_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_1994.tif
-AI_IDW_Core_Species_Richness_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_1997.tif
-AI_IDW_Core_Species_Richness_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_2000.tif
-AI_IDW_Core_Species_Richness_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_2002.tif
-AI_IDW_Core_Species_Richness_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_2004.tif
-AI_IDW_Core_Species_Richness_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_2006.tif
-AI_IDW_Core_Species_Richness_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_2010.tif
-AI_IDW_Core_Species_Richness_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_2012.tif
-AI_IDW_Core_Species_Richness_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_2014.tif
-AI_IDW_Core_Species_Richness_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_2016.tif
-AI_IDW_Core_Species_Richness_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_2018.tif
-AI_IDW_Core_Species_Richness_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_2022.tif
-AI_IDW_Core_Species_Richness_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Core Species Richness\AI_IDW_Core_Species_Richness_2024.tif
-AI_IDW_Species_Richness_1991.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_1991.tif
-AI_IDW_Species_Richness_1994.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_1994.tif
-AI_IDW_Species_Richness_1997.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_1997.tif
-AI_IDW_Species_Richness_2000.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_2000.tif
-AI_IDW_Species_Richness_2002.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_2002.tif
-AI_IDW_Species_Richness_2004.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_2004.tif
-AI_IDW_Species_Richness_2006.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_2006.tif
-AI_IDW_Species_Richness_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_2010.tif
-AI_IDW_Species_Richness_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_2012.tif
-AI_IDW_Species_Richness_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_2014.tif
-AI_IDW_Species_Richness_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_2016.tif
-AI_IDW_Species_Richness_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_2018.tif
-AI_IDW_Species_Richness_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_2022.tif
-AI_IDW_Species_Richness_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\AI_IDW\_Species Richness\AI_IDW_Species_Richness_2024.tif
-EBS_IDW_Asterias_amurensis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1987.tif
-EBS_IDW_Asterias_amurensis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1988.tif
-EBS_IDW_Asterias_amurensis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1989.tif
-EBS_IDW_Asterias_amurensis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1990.tif
-EBS_IDW_Asterias_amurensis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1991.tif
-EBS_IDW_Asterias_amurensis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1992.tif
-EBS_IDW_Asterias_amurensis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1993.tif
-EBS_IDW_Asterias_amurensis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1994.tif
-EBS_IDW_Asterias_amurensis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1995.tif
-EBS_IDW_Asterias_amurensis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1996.tif
-EBS_IDW_Asterias_amurensis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1997.tif
-EBS_IDW_Asterias_amurensis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1998.tif
-EBS_IDW_Asterias_amurensis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_1999.tif
-EBS_IDW_Asterias_amurensis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2000.tif
-EBS_IDW_Asterias_amurensis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2001.tif
-EBS_IDW_Asterias_amurensis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2002.tif
-EBS_IDW_Asterias_amurensis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2003.tif
-EBS_IDW_Asterias_amurensis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2004.tif
-EBS_IDW_Asterias_amurensis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2005.tif
-EBS_IDW_Asterias_amurensis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2006.tif
-EBS_IDW_Asterias_amurensis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2007.tif
-EBS_IDW_Asterias_amurensis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2008.tif
-EBS_IDW_Asterias_amurensis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2009.tif
-EBS_IDW_Asterias_amurensis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2010.tif
-EBS_IDW_Asterias_amurensis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2011.tif
-EBS_IDW_Asterias_amurensis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2012.tif
-EBS_IDW_Asterias_amurensis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2013.tif
-EBS_IDW_Asterias_amurensis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2014.tif
-EBS_IDW_Asterias_amurensis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2015.tif
-EBS_IDW_Asterias_amurensis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2016.tif
-EBS_IDW_Asterias_amurensis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2017.tif
-EBS_IDW_Asterias_amurensis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2018.tif
-EBS_IDW_Asterias_amurensis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2019.tif
-EBS_IDW_Asterias_amurensis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2021.tif
-EBS_IDW_Asterias_amurensis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2022.tif
-EBS_IDW_Asterias_amurensis_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2023.tif
-EBS_IDW_Asterias_amurensis_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Asterias amurensis\EBS_IDW_Asterias_amurensis_2024.tif
-EBS_IDW_Bathymaster_signatus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1987.tif
-EBS_IDW_Bathymaster_signatus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1988.tif
-EBS_IDW_Bathymaster_signatus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1989.tif
-EBS_IDW_Bathymaster_signatus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1990.tif
-EBS_IDW_Bathymaster_signatus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1991.tif
-EBS_IDW_Bathymaster_signatus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1992.tif
-EBS_IDW_Bathymaster_signatus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1993.tif
-EBS_IDW_Bathymaster_signatus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1994.tif
-EBS_IDW_Bathymaster_signatus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1995.tif
-EBS_IDW_Bathymaster_signatus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1996.tif
-EBS_IDW_Bathymaster_signatus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1997.tif
-EBS_IDW_Bathymaster_signatus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1998.tif
-EBS_IDW_Bathymaster_signatus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_1999.tif
-EBS_IDW_Bathymaster_signatus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2000.tif
-EBS_IDW_Bathymaster_signatus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2001.tif
-EBS_IDW_Bathymaster_signatus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2002.tif
-EBS_IDW_Bathymaster_signatus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2003.tif
-EBS_IDW_Bathymaster_signatus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2004.tif
-EBS_IDW_Bathymaster_signatus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2005.tif
-EBS_IDW_Bathymaster_signatus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2006.tif
-EBS_IDW_Bathymaster_signatus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2007.tif
-EBS_IDW_Bathymaster_signatus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2008.tif
-EBS_IDW_Bathymaster_signatus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2009.tif
-EBS_IDW_Bathymaster_signatus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2010.tif
-EBS_IDW_Bathymaster_signatus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2011.tif
-EBS_IDW_Bathymaster_signatus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2012.tif
-EBS_IDW_Bathymaster_signatus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2013.tif
-EBS_IDW_Bathymaster_signatus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2014.tif
-EBS_IDW_Bathymaster_signatus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2015.tif
-EBS_IDW_Bathymaster_signatus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2016.tif
-EBS_IDW_Bathymaster_signatus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2017.tif
-EBS_IDW_Bathymaster_signatus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2018.tif
-EBS_IDW_Bathymaster_signatus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2019.tif
-EBS_IDW_Bathymaster_signatus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2021.tif
-EBS_IDW_Bathymaster_signatus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2022.tif
-EBS_IDW_Bathymaster_signatus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2023.tif
-EBS_IDW_Bathymaster_signatus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Bathymaster signatus\EBS_IDW_Bathymaster_signatus_2024.tif
-EBS_IDW_Chionoecetes_bairdi_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1987.tif
-EBS_IDW_Chionoecetes_bairdi_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1988.tif
-EBS_IDW_Chionoecetes_bairdi_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1989.tif
-EBS_IDW_Chionoecetes_bairdi_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1990.tif
-EBS_IDW_Chionoecetes_bairdi_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1991.tif
-EBS_IDW_Chionoecetes_bairdi_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1992.tif
-EBS_IDW_Chionoecetes_bairdi_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1993.tif
-EBS_IDW_Chionoecetes_bairdi_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1994.tif
-EBS_IDW_Chionoecetes_bairdi_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1995.tif
-EBS_IDW_Chionoecetes_bairdi_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1996.tif
-EBS_IDW_Chionoecetes_bairdi_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1997.tif
-EBS_IDW_Chionoecetes_bairdi_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1998.tif
-EBS_IDW_Chionoecetes_bairdi_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_1999.tif
-EBS_IDW_Chionoecetes_bairdi_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2000.tif
-EBS_IDW_Chionoecetes_bairdi_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2001.tif
-EBS_IDW_Chionoecetes_bairdi_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2002.tif
-EBS_IDW_Chionoecetes_bairdi_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2003.tif
-EBS_IDW_Chionoecetes_bairdi_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2004.tif
-EBS_IDW_Chionoecetes_bairdi_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2005.tif
-EBS_IDW_Chionoecetes_bairdi_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2006.tif
-EBS_IDW_Chionoecetes_bairdi_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2007.tif
-EBS_IDW_Chionoecetes_bairdi_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2008.tif
-EBS_IDW_Chionoecetes_bairdi_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2009.tif
-EBS_IDW_Chionoecetes_bairdi_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2010.tif
-EBS_IDW_Chionoecetes_bairdi_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2011.tif
-EBS_IDW_Chionoecetes_bairdi_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2012.tif
-EBS_IDW_Chionoecetes_bairdi_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2013.tif
-EBS_IDW_Chionoecetes_bairdi_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2014.tif
-EBS_IDW_Chionoecetes_bairdi_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2015.tif
-EBS_IDW_Chionoecetes_bairdi_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2016.tif
-EBS_IDW_Chionoecetes_bairdi_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2017.tif
-EBS_IDW_Chionoecetes_bairdi_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2018.tif
-EBS_IDW_Chionoecetes_bairdi_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2019.tif
-EBS_IDW_Chionoecetes_bairdi_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2021.tif
-EBS_IDW_Chionoecetes_bairdi_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2022.tif
-EBS_IDW_Chionoecetes_bairdi_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2023.tif
-EBS_IDW_Chionoecetes_bairdi_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes bairdi\EBS_IDW_Chionoecetes_bairdi_2024.tif
-EBS_IDW_Chionoecetes_opilio_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1987.tif
-EBS_IDW_Chionoecetes_opilio_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1988.tif
-EBS_IDW_Chionoecetes_opilio_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1989.tif
-EBS_IDW_Chionoecetes_opilio_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1990.tif
-EBS_IDW_Chionoecetes_opilio_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1991.tif
-EBS_IDW_Chionoecetes_opilio_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1992.tif
-EBS_IDW_Chionoecetes_opilio_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1993.tif
-EBS_IDW_Chionoecetes_opilio_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1994.tif
-EBS_IDW_Chionoecetes_opilio_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1995.tif
-EBS_IDW_Chionoecetes_opilio_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1996.tif
-EBS_IDW_Chionoecetes_opilio_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1997.tif
-EBS_IDW_Chionoecetes_opilio_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1998.tif
-EBS_IDW_Chionoecetes_opilio_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_1999.tif
-EBS_IDW_Chionoecetes_opilio_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2000.tif
-EBS_IDW_Chionoecetes_opilio_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2001.tif
-EBS_IDW_Chionoecetes_opilio_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2002.tif
-EBS_IDW_Chionoecetes_opilio_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2003.tif
-EBS_IDW_Chionoecetes_opilio_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2004.tif
-EBS_IDW_Chionoecetes_opilio_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2005.tif
-EBS_IDW_Chionoecetes_opilio_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2006.tif
-EBS_IDW_Chionoecetes_opilio_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2007.tif
-EBS_IDW_Chionoecetes_opilio_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2008.tif
-EBS_IDW_Chionoecetes_opilio_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2009.tif
-EBS_IDW_Chionoecetes_opilio_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2010.tif
-EBS_IDW_Chionoecetes_opilio_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2011.tif
-EBS_IDW_Chionoecetes_opilio_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2012.tif
-EBS_IDW_Chionoecetes_opilio_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2013.tif
-EBS_IDW_Chionoecetes_opilio_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2014.tif
-EBS_IDW_Chionoecetes_opilio_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2015.tif
-EBS_IDW_Chionoecetes_opilio_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2016.tif
-EBS_IDW_Chionoecetes_opilio_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2017.tif
-EBS_IDW_Chionoecetes_opilio_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2018.tif
-EBS_IDW_Chionoecetes_opilio_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2019.tif
-EBS_IDW_Chionoecetes_opilio_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2021.tif
-EBS_IDW_Chionoecetes_opilio_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2022.tif
-EBS_IDW_Chionoecetes_opilio_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2023.tif
-EBS_IDW_Chionoecetes_opilio_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Chionoecetes opilio\EBS_IDW_Chionoecetes_opilio_2024.tif
-EBS_IDW_Clupea_pallasii_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1987.tif
-EBS_IDW_Clupea_pallasii_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1988.tif
-EBS_IDW_Clupea_pallasii_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1989.tif
-EBS_IDW_Clupea_pallasii_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1990.tif
-EBS_IDW_Clupea_pallasii_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1991.tif
-EBS_IDW_Clupea_pallasii_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1992.tif
-EBS_IDW_Clupea_pallasii_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1993.tif
-EBS_IDW_Clupea_pallasii_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1994.tif
-EBS_IDW_Clupea_pallasii_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1995.tif
-EBS_IDW_Clupea_pallasii_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1996.tif
-EBS_IDW_Clupea_pallasii_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1997.tif
-EBS_IDW_Clupea_pallasii_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1998.tif
-EBS_IDW_Clupea_pallasii_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_1999.tif
-EBS_IDW_Clupea_pallasii_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2000.tif
-EBS_IDW_Clupea_pallasii_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2001.tif
-EBS_IDW_Clupea_pallasii_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2002.tif
-EBS_IDW_Clupea_pallasii_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2003.tif
-EBS_IDW_Clupea_pallasii_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2004.tif
-EBS_IDW_Clupea_pallasii_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2005.tif
-EBS_IDW_Clupea_pallasii_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2006.tif
-EBS_IDW_Clupea_pallasii_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2007.tif
-EBS_IDW_Clupea_pallasii_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2008.tif
-EBS_IDW_Clupea_pallasii_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2009.tif
-EBS_IDW_Clupea_pallasii_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2010.tif
-EBS_IDW_Clupea_pallasii_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2011.tif
-EBS_IDW_Clupea_pallasii_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2012.tif
-EBS_IDW_Clupea_pallasii_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2013.tif
-EBS_IDW_Clupea_pallasii_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2014.tif
-EBS_IDW_Clupea_pallasii_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2015.tif
-EBS_IDW_Clupea_pallasii_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2016.tif
-EBS_IDW_Clupea_pallasii_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2017.tif
-EBS_IDW_Clupea_pallasii_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2018.tif
-EBS_IDW_Clupea_pallasii_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2019.tif
-EBS_IDW_Clupea_pallasii_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2021.tif
-EBS_IDW_Clupea_pallasii_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2022.tif
-EBS_IDW_Clupea_pallasii_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2023.tif
-EBS_IDW_Clupea_pallasii_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Clupea pallasii\EBS_IDW_Clupea_pallasii_2024.tif
-EBS_IDW_Crossaster_papposus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1987.tif
-EBS_IDW_Crossaster_papposus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1988.tif
-EBS_IDW_Crossaster_papposus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1989.tif
-EBS_IDW_Crossaster_papposus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1990.tif
-EBS_IDW_Crossaster_papposus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1991.tif
-EBS_IDW_Crossaster_papposus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1992.tif
-EBS_IDW_Crossaster_papposus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1993.tif
-EBS_IDW_Crossaster_papposus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1994.tif
-EBS_IDW_Crossaster_papposus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1995.tif
-EBS_IDW_Crossaster_papposus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1996.tif
-EBS_IDW_Crossaster_papposus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1997.tif
-EBS_IDW_Crossaster_papposus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1998.tif
-EBS_IDW_Crossaster_papposus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_1999.tif
-EBS_IDW_Crossaster_papposus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2000.tif
-EBS_IDW_Crossaster_papposus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2001.tif
-EBS_IDW_Crossaster_papposus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2002.tif
-EBS_IDW_Crossaster_papposus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2003.tif
-EBS_IDW_Crossaster_papposus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2004.tif
-EBS_IDW_Crossaster_papposus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2005.tif
-EBS_IDW_Crossaster_papposus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2006.tif
-EBS_IDW_Crossaster_papposus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2007.tif
-EBS_IDW_Crossaster_papposus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2008.tif
-EBS_IDW_Crossaster_papposus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2009.tif
-EBS_IDW_Crossaster_papposus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2010.tif
-EBS_IDW_Crossaster_papposus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2011.tif
-EBS_IDW_Crossaster_papposus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2012.tif
-EBS_IDW_Crossaster_papposus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2013.tif
-EBS_IDW_Crossaster_papposus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2014.tif
-EBS_IDW_Crossaster_papposus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2015.tif
-EBS_IDW_Crossaster_papposus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2016.tif
-EBS_IDW_Crossaster_papposus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2017.tif
-EBS_IDW_Crossaster_papposus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2018.tif
-EBS_IDW_Crossaster_papposus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2019.tif
-EBS_IDW_Crossaster_papposus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2021.tif
-EBS_IDW_Crossaster_papposus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2022.tif
-EBS_IDW_Crossaster_papposus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2023.tif
-EBS_IDW_Crossaster_papposus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Crossaster papposus\EBS_IDW_Crossaster_papposus_2024.tif
-EBS_IDW_Ctenodiscus_crispatus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1987.tif
-EBS_IDW_Ctenodiscus_crispatus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1988.tif
-EBS_IDW_Ctenodiscus_crispatus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1989.tif
-EBS_IDW_Ctenodiscus_crispatus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1990.tif
-EBS_IDW_Ctenodiscus_crispatus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1991.tif
-EBS_IDW_Ctenodiscus_crispatus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1992.tif
-EBS_IDW_Ctenodiscus_crispatus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1993.tif
-EBS_IDW_Ctenodiscus_crispatus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1994.tif
-EBS_IDW_Ctenodiscus_crispatus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1995.tif
-EBS_IDW_Ctenodiscus_crispatus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1996.tif
-EBS_IDW_Ctenodiscus_crispatus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1997.tif
-EBS_IDW_Ctenodiscus_crispatus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1998.tif
-EBS_IDW_Ctenodiscus_crispatus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_1999.tif
-EBS_IDW_Ctenodiscus_crispatus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2000.tif
-EBS_IDW_Ctenodiscus_crispatus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2001.tif
-EBS_IDW_Ctenodiscus_crispatus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2002.tif
-EBS_IDW_Ctenodiscus_crispatus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2003.tif
-EBS_IDW_Ctenodiscus_crispatus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2004.tif
-EBS_IDW_Ctenodiscus_crispatus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2005.tif
-EBS_IDW_Ctenodiscus_crispatus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2006.tif
-EBS_IDW_Ctenodiscus_crispatus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2007.tif
-EBS_IDW_Ctenodiscus_crispatus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2008.tif
-EBS_IDW_Ctenodiscus_crispatus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2009.tif
-EBS_IDW_Ctenodiscus_crispatus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2010.tif
-EBS_IDW_Ctenodiscus_crispatus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2011.tif
-EBS_IDW_Ctenodiscus_crispatus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2012.tif
-EBS_IDW_Ctenodiscus_crispatus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2013.tif
-EBS_IDW_Ctenodiscus_crispatus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2014.tif
-EBS_IDW_Ctenodiscus_crispatus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2015.tif
-EBS_IDW_Ctenodiscus_crispatus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2016.tif
-EBS_IDW_Ctenodiscus_crispatus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2017.tif
-EBS_IDW_Ctenodiscus_crispatus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2018.tif
-EBS_IDW_Ctenodiscus_crispatus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2019.tif
-EBS_IDW_Ctenodiscus_crispatus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2021.tif
-EBS_IDW_Ctenodiscus_crispatus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2022.tif
-EBS_IDW_Ctenodiscus_crispatus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2023.tif
-EBS_IDW_Ctenodiscus_crispatus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Ctenodiscus crispatus\EBS_IDW_Ctenodiscus_crispatus_2024.tif
-EBS_IDW_Dasycottus_setiger_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1987.tif
-EBS_IDW_Dasycottus_setiger_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1988.tif
-EBS_IDW_Dasycottus_setiger_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1989.tif
-EBS_IDW_Dasycottus_setiger_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1990.tif
-EBS_IDW_Dasycottus_setiger_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1991.tif
-EBS_IDW_Dasycottus_setiger_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:29:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1992.tif
-EBS_IDW_Dasycottus_setiger_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1993.tif
-EBS_IDW_Dasycottus_setiger_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1994.tif
-EBS_IDW_Dasycottus_setiger_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1995.tif
-EBS_IDW_Dasycottus_setiger_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1996.tif
-EBS_IDW_Dasycottus_setiger_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1997.tif
-EBS_IDW_Dasycottus_setiger_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1998.tif
-EBS_IDW_Dasycottus_setiger_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_1999.tif
-EBS_IDW_Dasycottus_setiger_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2000.tif
-EBS_IDW_Dasycottus_setiger_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2001.tif
-EBS_IDW_Dasycottus_setiger_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2002.tif
-EBS_IDW_Dasycottus_setiger_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2003.tif
-EBS_IDW_Dasycottus_setiger_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2004.tif
-EBS_IDW_Dasycottus_setiger_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2005.tif
-EBS_IDW_Dasycottus_setiger_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2006.tif
-EBS_IDW_Dasycottus_setiger_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2007.tif
-EBS_IDW_Dasycottus_setiger_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2008.tif
-EBS_IDW_Dasycottus_setiger_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2009.tif
-EBS_IDW_Dasycottus_setiger_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2010.tif
-EBS_IDW_Dasycottus_setiger_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2011.tif
-EBS_IDW_Dasycottus_setiger_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2012.tif
-EBS_IDW_Dasycottus_setiger_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2013.tif
-EBS_IDW_Dasycottus_setiger_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2014.tif
-EBS_IDW_Dasycottus_setiger_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2015.tif
-EBS_IDW_Dasycottus_setiger_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2016.tif
-EBS_IDW_Dasycottus_setiger_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2017.tif
-EBS_IDW_Dasycottus_setiger_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2018.tif
-EBS_IDW_Dasycottus_setiger_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2019.tif
-EBS_IDW_Dasycottus_setiger_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2021.tif
-EBS_IDW_Dasycottus_setiger_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2022.tif
-EBS_IDW_Dasycottus_setiger_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2023.tif
-EBS_IDW_Dasycottus_setiger_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:30:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Dasycottus setiger\EBS_IDW_Dasycottus_setiger_2024.tif
-EBS_IDW_Erimacrus_isenbeckii_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1987.tif
-EBS_IDW_Erimacrus_isenbeckii_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1988.tif
-EBS_IDW_Erimacrus_isenbeckii_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1989.tif
-EBS_IDW_Erimacrus_isenbeckii_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1990.tif
-EBS_IDW_Erimacrus_isenbeckii_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1991.tif
-EBS_IDW_Erimacrus_isenbeckii_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1992.tif
-EBS_IDW_Erimacrus_isenbeckii_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1993.tif
-EBS_IDW_Erimacrus_isenbeckii_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:09:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1994.tif
-EBS_IDW_Erimacrus_isenbeckii_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1995.tif
-EBS_IDW_Erimacrus_isenbeckii_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1996.tif
-EBS_IDW_Erimacrus_isenbeckii_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1997.tif
-EBS_IDW_Erimacrus_isenbeckii_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1998.tif
-EBS_IDW_Erimacrus_isenbeckii_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_1999.tif
-EBS_IDW_Erimacrus_isenbeckii_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2000.tif
-EBS_IDW_Erimacrus_isenbeckii_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2001.tif
-EBS_IDW_Erimacrus_isenbeckii_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2002.tif
-EBS_IDW_Erimacrus_isenbeckii_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2003.tif
-EBS_IDW_Erimacrus_isenbeckii_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2004.tif
-EBS_IDW_Erimacrus_isenbeckii_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2005.tif
-EBS_IDW_Erimacrus_isenbeckii_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2006.tif
-EBS_IDW_Erimacrus_isenbeckii_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2007.tif
-EBS_IDW_Erimacrus_isenbeckii_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2008.tif
-EBS_IDW_Erimacrus_isenbeckii_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2009.tif
-EBS_IDW_Erimacrus_isenbeckii_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2010.tif
-EBS_IDW_Erimacrus_isenbeckii_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2011.tif
-EBS_IDW_Erimacrus_isenbeckii_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2012.tif
-EBS_IDW_Erimacrus_isenbeckii_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2013.tif
-EBS_IDW_Erimacrus_isenbeckii_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2014.tif
-EBS_IDW_Erimacrus_isenbeckii_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2015.tif
-EBS_IDW_Erimacrus_isenbeckii_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2016.tif
-EBS_IDW_Erimacrus_isenbeckii_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2017.tif
-EBS_IDW_Erimacrus_isenbeckii_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2018.tif
-EBS_IDW_Erimacrus_isenbeckii_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2019.tif
-EBS_IDW_Erimacrus_isenbeckii_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2021.tif
-EBS_IDW_Erimacrus_isenbeckii_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2022.tif
-EBS_IDW_Erimacrus_isenbeckii_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2023.tif
-EBS_IDW_Erimacrus_isenbeckii_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Erimacrus isenbeckii\EBS_IDW_Erimacrus_isenbeckii_2024.tif
-EBS_IDW_Gadus_chalcogrammus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1987.tif
-EBS_IDW_Gadus_chalcogrammus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1988.tif
-EBS_IDW_Gadus_chalcogrammus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1989.tif
-EBS_IDW_Gadus_chalcogrammus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1990.tif
-EBS_IDW_Gadus_chalcogrammus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1991.tif
-EBS_IDW_Gadus_chalcogrammus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1992.tif
-EBS_IDW_Gadus_chalcogrammus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1993.tif
-EBS_IDW_Gadus_chalcogrammus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1994.tif
-EBS_IDW_Gadus_chalcogrammus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1995.tif
-EBS_IDW_Gadus_chalcogrammus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1996.tif
-EBS_IDW_Gadus_chalcogrammus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1997.tif
-EBS_IDW_Gadus_chalcogrammus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1998.tif
-EBS_IDW_Gadus_chalcogrammus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_1999.tif
-EBS_IDW_Gadus_chalcogrammus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2000.tif
-EBS_IDW_Gadus_chalcogrammus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2001.tif
-EBS_IDW_Gadus_chalcogrammus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2002.tif
-EBS_IDW_Gadus_chalcogrammus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2003.tif
-EBS_IDW_Gadus_chalcogrammus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2004.tif
-EBS_IDW_Gadus_chalcogrammus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2005.tif
-EBS_IDW_Gadus_chalcogrammus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2006.tif
-EBS_IDW_Gadus_chalcogrammus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2007.tif
-EBS_IDW_Gadus_chalcogrammus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2008.tif
-EBS_IDW_Gadus_chalcogrammus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2009.tif
-EBS_IDW_Gadus_chalcogrammus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2010.tif
-EBS_IDW_Gadus_chalcogrammus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2011.tif
-EBS_IDW_Gadus_chalcogrammus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2012.tif
-EBS_IDW_Gadus_chalcogrammus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2013.tif
-EBS_IDW_Gadus_chalcogrammus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2014.tif
-EBS_IDW_Gadus_chalcogrammus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2015.tif
-EBS_IDW_Gadus_chalcogrammus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2016.tif
-EBS_IDW_Gadus_chalcogrammus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2017.tif
-EBS_IDW_Gadus_chalcogrammus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2018.tif
-EBS_IDW_Gadus_chalcogrammus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2019.tif
-EBS_IDW_Gadus_chalcogrammus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2021.tif
-EBS_IDW_Gadus_chalcogrammus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2022.tif
-EBS_IDW_Gadus_chalcogrammus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2023.tif
-EBS_IDW_Gadus_chalcogrammus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus chalcogrammus\EBS_IDW_Gadus_chalcogrammus_2024.tif
-EBS_IDW_Gadus_macrocephalus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1987.tif
-EBS_IDW_Gadus_macrocephalus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1988.tif
-EBS_IDW_Gadus_macrocephalus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1989.tif
-EBS_IDW_Gadus_macrocephalus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1990.tif
-EBS_IDW_Gadus_macrocephalus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1991.tif
-EBS_IDW_Gadus_macrocephalus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1992.tif
-EBS_IDW_Gadus_macrocephalus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1993.tif
-EBS_IDW_Gadus_macrocephalus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1994.tif
-EBS_IDW_Gadus_macrocephalus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1995.tif
-EBS_IDW_Gadus_macrocephalus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1996.tif
-EBS_IDW_Gadus_macrocephalus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1997.tif
-EBS_IDW_Gadus_macrocephalus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1998.tif
-EBS_IDW_Gadus_macrocephalus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_1999.tif
-EBS_IDW_Gadus_macrocephalus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2000.tif
-EBS_IDW_Gadus_macrocephalus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2001.tif
-EBS_IDW_Gadus_macrocephalus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2002.tif
-EBS_IDW_Gadus_macrocephalus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2003.tif
-EBS_IDW_Gadus_macrocephalus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2004.tif
-EBS_IDW_Gadus_macrocephalus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2005.tif
-EBS_IDW_Gadus_macrocephalus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2006.tif
-EBS_IDW_Gadus_macrocephalus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2007.tif
-EBS_IDW_Gadus_macrocephalus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2008.tif
-EBS_IDW_Gadus_macrocephalus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2009.tif
-EBS_IDW_Gadus_macrocephalus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2010.tif
-EBS_IDW_Gadus_macrocephalus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2011.tif
-EBS_IDW_Gadus_macrocephalus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2012.tif
-EBS_IDW_Gadus_macrocephalus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2013.tif
-EBS_IDW_Gadus_macrocephalus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2014.tif
-EBS_IDW_Gadus_macrocephalus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2015.tif
-EBS_IDW_Gadus_macrocephalus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2016.tif
-EBS_IDW_Gadus_macrocephalus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2017.tif
-EBS_IDW_Gadus_macrocephalus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2018.tif
-EBS_IDW_Gadus_macrocephalus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2019.tif
-EBS_IDW_Gadus_macrocephalus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2021.tif
-EBS_IDW_Gadus_macrocephalus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2022.tif
-EBS_IDW_Gadus_macrocephalus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2023.tif
-EBS_IDW_Gadus_macrocephalus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gadus macrocephalus\EBS_IDW_Gadus_macrocephalus_2024.tif
-EBS_IDW_Glyptocephalus_zachirus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1987.tif
-EBS_IDW_Glyptocephalus_zachirus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1988.tif
-EBS_IDW_Glyptocephalus_zachirus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1989.tif
-EBS_IDW_Glyptocephalus_zachirus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1990.tif
-EBS_IDW_Glyptocephalus_zachirus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1991.tif
-EBS_IDW_Glyptocephalus_zachirus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1992.tif
-EBS_IDW_Glyptocephalus_zachirus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1993.tif
-EBS_IDW_Glyptocephalus_zachirus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1994.tif
-EBS_IDW_Glyptocephalus_zachirus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1995.tif
-EBS_IDW_Glyptocephalus_zachirus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1996.tif
-EBS_IDW_Glyptocephalus_zachirus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1997.tif
-EBS_IDW_Glyptocephalus_zachirus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1998.tif
-EBS_IDW_Glyptocephalus_zachirus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_1999.tif
-EBS_IDW_Glyptocephalus_zachirus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2000.tif
-EBS_IDW_Glyptocephalus_zachirus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2001.tif
-EBS_IDW_Glyptocephalus_zachirus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2002.tif
-EBS_IDW_Glyptocephalus_zachirus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2003.tif
-EBS_IDW_Glyptocephalus_zachirus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2004.tif
-EBS_IDW_Glyptocephalus_zachirus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2005.tif
-EBS_IDW_Glyptocephalus_zachirus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2006.tif
-EBS_IDW_Glyptocephalus_zachirus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2007.tif
-EBS_IDW_Glyptocephalus_zachirus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2008.tif
-EBS_IDW_Glyptocephalus_zachirus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2009.tif
-EBS_IDW_Glyptocephalus_zachirus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2010.tif
-EBS_IDW_Glyptocephalus_zachirus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2011.tif
-EBS_IDW_Glyptocephalus_zachirus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2012.tif
-EBS_IDW_Glyptocephalus_zachirus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2013.tif
-EBS_IDW_Glyptocephalus_zachirus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2014.tif
-EBS_IDW_Glyptocephalus_zachirus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2015.tif
-EBS_IDW_Glyptocephalus_zachirus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2016.tif
-EBS_IDW_Glyptocephalus_zachirus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2017.tif
-EBS_IDW_Glyptocephalus_zachirus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2018.tif
-EBS_IDW_Glyptocephalus_zachirus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2019.tif
-EBS_IDW_Glyptocephalus_zachirus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2021.tif
-EBS_IDW_Glyptocephalus_zachirus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2022.tif
-EBS_IDW_Glyptocephalus_zachirus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2023.tif
-EBS_IDW_Glyptocephalus_zachirus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Glyptocephalus zachirus\EBS_IDW_Glyptocephalus_zachirus_2024.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1987.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1988.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1989.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1990.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1991.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1992.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1993.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1994.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1995.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1996.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1997.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1998.tif
-EBS_IDW_Gorgonocephalus_eucnemis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_1999.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2000.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2001.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2002.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2003.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2004.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2005.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2006.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2007.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2008.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2009.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2010.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2011.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2012.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2013.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2014.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2015.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2016.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2017.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2018.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2019.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2021.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2022.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2023.tif
-EBS_IDW_Gorgonocephalus_eucnemis_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Gorgonocephalus eucnemis\EBS_IDW_Gorgonocephalus_eucnemis_2024.tif
-EBS_IDW_Hemilepidotus_jordani_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1987.tif
-EBS_IDW_Hemilepidotus_jordani_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1988.tif
-EBS_IDW_Hemilepidotus_jordani_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1989.tif
-EBS_IDW_Hemilepidotus_jordani_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1990.tif
-EBS_IDW_Hemilepidotus_jordani_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1991.tif
-EBS_IDW_Hemilepidotus_jordani_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1992.tif
-EBS_IDW_Hemilepidotus_jordani_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1993.tif
-EBS_IDW_Hemilepidotus_jordani_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1994.tif
-EBS_IDW_Hemilepidotus_jordani_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1995.tif
-EBS_IDW_Hemilepidotus_jordani_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1996.tif
-EBS_IDW_Hemilepidotus_jordani_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1997.tif
-EBS_IDW_Hemilepidotus_jordani_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1998.tif
-EBS_IDW_Hemilepidotus_jordani_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_1999.tif
-EBS_IDW_Hemilepidotus_jordani_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2000.tif
-EBS_IDW_Hemilepidotus_jordani_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2001.tif
-EBS_IDW_Hemilepidotus_jordani_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2002.tif
-EBS_IDW_Hemilepidotus_jordani_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2003.tif
-EBS_IDW_Hemilepidotus_jordani_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2004.tif
-EBS_IDW_Hemilepidotus_jordani_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2005.tif
-EBS_IDW_Hemilepidotus_jordani_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2006.tif
-EBS_IDW_Hemilepidotus_jordani_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2007.tif
-EBS_IDW_Hemilepidotus_jordani_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2008.tif
-EBS_IDW_Hemilepidotus_jordani_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2009.tif
-EBS_IDW_Hemilepidotus_jordani_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2010.tif
-EBS_IDW_Hemilepidotus_jordani_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2011.tif
-EBS_IDW_Hemilepidotus_jordani_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2012.tif
-EBS_IDW_Hemilepidotus_jordani_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2013.tif
-EBS_IDW_Hemilepidotus_jordani_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2014.tif
-EBS_IDW_Hemilepidotus_jordani_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2015.tif
-EBS_IDW_Hemilepidotus_jordani_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2016.tif
-EBS_IDW_Hemilepidotus_jordani_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2017.tif
-EBS_IDW_Hemilepidotus_jordani_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2018.tif
-EBS_IDW_Hemilepidotus_jordani_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2019.tif
-EBS_IDW_Hemilepidotus_jordani_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2021.tif
-EBS_IDW_Hemilepidotus_jordani_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2022.tif
-EBS_IDW_Hemilepidotus_jordani_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2023.tif
-EBS_IDW_Hemilepidotus_jordani_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemilepidotus jordani\EBS_IDW_Hemilepidotus_jordani_2024.tif
-EBS_IDW_Hemitripterus_bolini_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1987.tif
-EBS_IDW_Hemitripterus_bolini_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1988.tif
-EBS_IDW_Hemitripterus_bolini_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:10:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1989.tif
-EBS_IDW_Hemitripterus_bolini_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1990.tif
-EBS_IDW_Hemitripterus_bolini_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1991.tif
-EBS_IDW_Hemitripterus_bolini_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1992.tif
-EBS_IDW_Hemitripterus_bolini_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1993.tif
-EBS_IDW_Hemitripterus_bolini_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1994.tif
-EBS_IDW_Hemitripterus_bolini_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1995.tif
-EBS_IDW_Hemitripterus_bolini_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1996.tif
-EBS_IDW_Hemitripterus_bolini_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1997.tif
-EBS_IDW_Hemitripterus_bolini_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1998.tif
-EBS_IDW_Hemitripterus_bolini_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_1999.tif
-EBS_IDW_Hemitripterus_bolini_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2000.tif
-EBS_IDW_Hemitripterus_bolini_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2001.tif
-EBS_IDW_Hemitripterus_bolini_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2002.tif
-EBS_IDW_Hemitripterus_bolini_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2003.tif
-EBS_IDW_Hemitripterus_bolini_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2004.tif
-EBS_IDW_Hemitripterus_bolini_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2005.tif
-EBS_IDW_Hemitripterus_bolini_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2006.tif
-EBS_IDW_Hemitripterus_bolini_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2007.tif
-EBS_IDW_Hemitripterus_bolini_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2008.tif
-EBS_IDW_Hemitripterus_bolini_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2009.tif
-EBS_IDW_Hemitripterus_bolini_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2010.tif
-EBS_IDW_Hemitripterus_bolini_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2011.tif
-EBS_IDW_Hemitripterus_bolini_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2012.tif
-EBS_IDW_Hemitripterus_bolini_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2013.tif
-EBS_IDW_Hemitripterus_bolini_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2014.tif
-EBS_IDW_Hemitripterus_bolini_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2015.tif
-EBS_IDW_Hemitripterus_bolini_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2016.tif
-EBS_IDW_Hemitripterus_bolini_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2017.tif
-EBS_IDW_Hemitripterus_bolini_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2018.tif
-EBS_IDW_Hemitripterus_bolini_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2019.tif
-EBS_IDW_Hemitripterus_bolini_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2021.tif
-EBS_IDW_Hemitripterus_bolini_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2022.tif
-EBS_IDW_Hemitripterus_bolini_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2023.tif
-EBS_IDW_Hemitripterus_bolini_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hemitripterus bolini\EBS_IDW_Hemitripterus_bolini_2024.tif
-EBS_IDW_Hippoglossus_stenolepis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1987.tif
-EBS_IDW_Hippoglossus_stenolepis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1988.tif
-EBS_IDW_Hippoglossus_stenolepis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1989.tif
-EBS_IDW_Hippoglossus_stenolepis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1990.tif
-EBS_IDW_Hippoglossus_stenolepis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1991.tif
-EBS_IDW_Hippoglossus_stenolepis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1992.tif
-EBS_IDW_Hippoglossus_stenolepis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1993.tif
-EBS_IDW_Hippoglossus_stenolepis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1994.tif
-EBS_IDW_Hippoglossus_stenolepis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1995.tif
-EBS_IDW_Hippoglossus_stenolepis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1996.tif
-EBS_IDW_Hippoglossus_stenolepis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1997.tif
-EBS_IDW_Hippoglossus_stenolepis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1998.tif
-EBS_IDW_Hippoglossus_stenolepis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_1999.tif
-EBS_IDW_Hippoglossus_stenolepis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2000.tif
-EBS_IDW_Hippoglossus_stenolepis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2001.tif
-EBS_IDW_Hippoglossus_stenolepis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2002.tif
-EBS_IDW_Hippoglossus_stenolepis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2003.tif
-EBS_IDW_Hippoglossus_stenolepis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2004.tif
-EBS_IDW_Hippoglossus_stenolepis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2005.tif
-EBS_IDW_Hippoglossus_stenolepis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2006.tif
-EBS_IDW_Hippoglossus_stenolepis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2007.tif
-EBS_IDW_Hippoglossus_stenolepis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2008.tif
-EBS_IDW_Hippoglossus_stenolepis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2009.tif
-EBS_IDW_Hippoglossus_stenolepis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2010.tif
-EBS_IDW_Hippoglossus_stenolepis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2011.tif
-EBS_IDW_Hippoglossus_stenolepis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2012.tif
-EBS_IDW_Hippoglossus_stenolepis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2013.tif
-EBS_IDW_Hippoglossus_stenolepis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2014.tif
-EBS_IDW_Hippoglossus_stenolepis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2015.tif
-EBS_IDW_Hippoglossus_stenolepis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2016.tif
-EBS_IDW_Hippoglossus_stenolepis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2017.tif
-EBS_IDW_Hippoglossus_stenolepis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2018.tif
-EBS_IDW_Hippoglossus_stenolepis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2019.tif
-EBS_IDW_Hippoglossus_stenolepis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2021.tif
-EBS_IDW_Hippoglossus_stenolepis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2022.tif
-EBS_IDW_Hippoglossus_stenolepis_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2023.tif
-EBS_IDW_Hippoglossus_stenolepis_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hippoglossus stenolepis\EBS_IDW_Hippoglossus_stenolepis_2024.tif
-EBS_IDW_Hyas_coarctatus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1987.tif
-EBS_IDW_Hyas_coarctatus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1988.tif
-EBS_IDW_Hyas_coarctatus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1989.tif
-EBS_IDW_Hyas_coarctatus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1990.tif
-EBS_IDW_Hyas_coarctatus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1991.tif
-EBS_IDW_Hyas_coarctatus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1992.tif
-EBS_IDW_Hyas_coarctatus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1993.tif
-EBS_IDW_Hyas_coarctatus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1994.tif
-EBS_IDW_Hyas_coarctatus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1995.tif
-EBS_IDW_Hyas_coarctatus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1996.tif
-EBS_IDW_Hyas_coarctatus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1997.tif
-EBS_IDW_Hyas_coarctatus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1998.tif
-EBS_IDW_Hyas_coarctatus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_1999.tif
-EBS_IDW_Hyas_coarctatus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2000.tif
-EBS_IDW_Hyas_coarctatus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2001.tif
-EBS_IDW_Hyas_coarctatus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2002.tif
-EBS_IDW_Hyas_coarctatus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2003.tif
-EBS_IDW_Hyas_coarctatus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2004.tif
-EBS_IDW_Hyas_coarctatus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2005.tif
-EBS_IDW_Hyas_coarctatus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2006.tif
-EBS_IDW_Hyas_coarctatus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2007.tif
-EBS_IDW_Hyas_coarctatus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2008.tif
-EBS_IDW_Hyas_coarctatus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2009.tif
-EBS_IDW_Hyas_coarctatus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2010.tif
-EBS_IDW_Hyas_coarctatus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2011.tif
-EBS_IDW_Hyas_coarctatus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2012.tif
-EBS_IDW_Hyas_coarctatus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2013.tif
-EBS_IDW_Hyas_coarctatus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2014.tif
-EBS_IDW_Hyas_coarctatus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2015.tif
-EBS_IDW_Hyas_coarctatus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2016.tif
-EBS_IDW_Hyas_coarctatus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2017.tif
-EBS_IDW_Hyas_coarctatus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2018.tif
-EBS_IDW_Hyas_coarctatus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2019.tif
-EBS_IDW_Hyas_coarctatus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2021.tif
-EBS_IDW_Hyas_coarctatus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2022.tif
-EBS_IDW_Hyas_coarctatus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2023.tif
-EBS_IDW_Hyas_coarctatus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas coarctatus\EBS_IDW_Hyas_coarctatus_2024.tif
-EBS_IDW_Hyas_lyratus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1987.tif
-EBS_IDW_Hyas_lyratus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1988.tif
-EBS_IDW_Hyas_lyratus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1989.tif
-EBS_IDW_Hyas_lyratus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1990.tif
-EBS_IDW_Hyas_lyratus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1991.tif
-EBS_IDW_Hyas_lyratus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1992.tif
-EBS_IDW_Hyas_lyratus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1993.tif
-EBS_IDW_Hyas_lyratus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1994.tif
-EBS_IDW_Hyas_lyratus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1995.tif
-EBS_IDW_Hyas_lyratus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1996.tif
-EBS_IDW_Hyas_lyratus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1997.tif
-EBS_IDW_Hyas_lyratus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1998.tif
-EBS_IDW_Hyas_lyratus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_1999.tif
-EBS_IDW_Hyas_lyratus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2000.tif
-EBS_IDW_Hyas_lyratus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2001.tif
-EBS_IDW_Hyas_lyratus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2002.tif
-EBS_IDW_Hyas_lyratus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2003.tif
-EBS_IDW_Hyas_lyratus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2004.tif
-EBS_IDW_Hyas_lyratus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2005.tif
-EBS_IDW_Hyas_lyratus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2006.tif
-EBS_IDW_Hyas_lyratus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2007.tif
-EBS_IDW_Hyas_lyratus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2008.tif
-EBS_IDW_Hyas_lyratus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2009.tif
-EBS_IDW_Hyas_lyratus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2010.tif
-EBS_IDW_Hyas_lyratus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2011.tif
-EBS_IDW_Hyas_lyratus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2012.tif
-EBS_IDW_Hyas_lyratus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2013.tif
-EBS_IDW_Hyas_lyratus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2014.tif
-EBS_IDW_Hyas_lyratus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2015.tif
-EBS_IDW_Hyas_lyratus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2016.tif
-EBS_IDW_Hyas_lyratus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2017.tif
-EBS_IDW_Hyas_lyratus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2018.tif
-EBS_IDW_Hyas_lyratus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2019.tif
-EBS_IDW_Hyas_lyratus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2021.tif
-EBS_IDW_Hyas_lyratus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2022.tif
-EBS_IDW_Hyas_lyratus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2023.tif
-EBS_IDW_Hyas_lyratus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Hyas lyratus\EBS_IDW_Hyas_lyratus_2024.tif
-EBS_IDW_Icelus_spiniger_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1987.tif
-EBS_IDW_Icelus_spiniger_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1988.tif
-EBS_IDW_Icelus_spiniger_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1989.tif
-EBS_IDW_Icelus_spiniger_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1990.tif
-EBS_IDW_Icelus_spiniger_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1991.tif
-EBS_IDW_Icelus_spiniger_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1992.tif
-EBS_IDW_Icelus_spiniger_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1993.tif
-EBS_IDW_Icelus_spiniger_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1994.tif
-EBS_IDW_Icelus_spiniger_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1995.tif
-EBS_IDW_Icelus_spiniger_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1996.tif
-EBS_IDW_Icelus_spiniger_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1997.tif
-EBS_IDW_Icelus_spiniger_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1998.tif
-EBS_IDW_Icelus_spiniger_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_1999.tif
-EBS_IDW_Icelus_spiniger_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2000.tif
-EBS_IDW_Icelus_spiniger_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2001.tif
-EBS_IDW_Icelus_spiniger_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2002.tif
-EBS_IDW_Icelus_spiniger_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2003.tif
-EBS_IDW_Icelus_spiniger_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2004.tif
-EBS_IDW_Icelus_spiniger_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2005.tif
-EBS_IDW_Icelus_spiniger_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2006.tif
-EBS_IDW_Icelus_spiniger_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2007.tif
-EBS_IDW_Icelus_spiniger_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2008.tif
-EBS_IDW_Icelus_spiniger_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2009.tif
-EBS_IDW_Icelus_spiniger_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2010.tif
-EBS_IDW_Icelus_spiniger_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2011.tif
-EBS_IDW_Icelus_spiniger_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2012.tif
-EBS_IDW_Icelus_spiniger_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2013.tif
-EBS_IDW_Icelus_spiniger_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2014.tif
-EBS_IDW_Icelus_spiniger_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2015.tif
-EBS_IDW_Icelus_spiniger_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2016.tif
-EBS_IDW_Icelus_spiniger_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2017.tif
-EBS_IDW_Icelus_spiniger_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2018.tif
-EBS_IDW_Icelus_spiniger_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2019.tif
-EBS_IDW_Icelus_spiniger_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2021.tif
-EBS_IDW_Icelus_spiniger_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2022.tif
-EBS_IDW_Icelus_spiniger_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2023.tif
-EBS_IDW_Icelus_spiniger_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Icelus spiniger\EBS_IDW_Icelus_spiniger_2024.tif
-EBS_IDW_Labidochirus_splendescens_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1987.tif
-EBS_IDW_Labidochirus_splendescens_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1988.tif
-EBS_IDW_Labidochirus_splendescens_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1989.tif
-EBS_IDW_Labidochirus_splendescens_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1990.tif
-EBS_IDW_Labidochirus_splendescens_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1991.tif
-EBS_IDW_Labidochirus_splendescens_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1992.tif
-EBS_IDW_Labidochirus_splendescens_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1993.tif
-EBS_IDW_Labidochirus_splendescens_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1994.tif
-EBS_IDW_Labidochirus_splendescens_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1995.tif
-EBS_IDW_Labidochirus_splendescens_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1996.tif
-EBS_IDW_Labidochirus_splendescens_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1997.tif
-EBS_IDW_Labidochirus_splendescens_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1998.tif
-EBS_IDW_Labidochirus_splendescens_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_1999.tif
-EBS_IDW_Labidochirus_splendescens_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2000.tif
-EBS_IDW_Labidochirus_splendescens_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2001.tif
-EBS_IDW_Labidochirus_splendescens_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2002.tif
-EBS_IDW_Labidochirus_splendescens_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2003.tif
-EBS_IDW_Labidochirus_splendescens_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2004.tif
-EBS_IDW_Labidochirus_splendescens_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2005.tif
-EBS_IDW_Labidochirus_splendescens_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2006.tif
-EBS_IDW_Labidochirus_splendescens_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2007.tif
-EBS_IDW_Labidochirus_splendescens_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2008.tif
-EBS_IDW_Labidochirus_splendescens_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2009.tif
-EBS_IDW_Labidochirus_splendescens_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2010.tif
-EBS_IDW_Labidochirus_splendescens_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2011.tif
-EBS_IDW_Labidochirus_splendescens_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2012.tif
-EBS_IDW_Labidochirus_splendescens_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2013.tif
-EBS_IDW_Labidochirus_splendescens_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2014.tif
-EBS_IDW_Labidochirus_splendescens_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2015.tif
-EBS_IDW_Labidochirus_splendescens_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2016.tif
-EBS_IDW_Labidochirus_splendescens_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2017.tif
-EBS_IDW_Labidochirus_splendescens_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2018.tif
-EBS_IDW_Labidochirus_splendescens_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2019.tif
-EBS_IDW_Labidochirus_splendescens_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2021.tif
-EBS_IDW_Labidochirus_splendescens_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2022.tif
-EBS_IDW_Labidochirus_splendescens_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2023.tif
-EBS_IDW_Labidochirus_splendescens_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Labidochirus splendescens\EBS_IDW_Labidochirus_splendescens_2024.tif
-EBS_IDW_Lepidopsetta_sp_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1987.tif
-EBS_IDW_Lepidopsetta_sp_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1988.tif
-EBS_IDW_Lepidopsetta_sp_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1989.tif
-EBS_IDW_Lepidopsetta_sp_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1990.tif
-EBS_IDW_Lepidopsetta_sp_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1991.tif
-EBS_IDW_Lepidopsetta_sp_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1992.tif
-EBS_IDW_Lepidopsetta_sp_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1993.tif
-EBS_IDW_Lepidopsetta_sp_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:11:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1994.tif
-EBS_IDW_Lepidopsetta_sp_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1995.tif
-EBS_IDW_Lepidopsetta_sp_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1996.tif
-EBS_IDW_Lepidopsetta_sp_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1997.tif
-EBS_IDW_Lepidopsetta_sp_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1998.tif
-EBS_IDW_Lepidopsetta_sp_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_1999.tif
-EBS_IDW_Lepidopsetta_sp_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2000.tif
-EBS_IDW_Lepidopsetta_sp_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2001.tif
-EBS_IDW_Lepidopsetta_sp_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2002.tif
-EBS_IDW_Lepidopsetta_sp_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2003.tif
-EBS_IDW_Lepidopsetta_sp_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2004.tif
-EBS_IDW_Lepidopsetta_sp_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2005.tif
-EBS_IDW_Lepidopsetta_sp_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2006.tif
-EBS_IDW_Lepidopsetta_sp_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2007.tif
-EBS_IDW_Lepidopsetta_sp_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2008.tif
-EBS_IDW_Lepidopsetta_sp_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2009.tif
-EBS_IDW_Lepidopsetta_sp_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2010.tif
-EBS_IDW_Lepidopsetta_sp_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2011.tif
-EBS_IDW_Lepidopsetta_sp_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2012.tif
-EBS_IDW_Lepidopsetta_sp_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2013.tif
-EBS_IDW_Lepidopsetta_sp_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2014.tif
-EBS_IDW_Lepidopsetta_sp_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2015.tif
-EBS_IDW_Lepidopsetta_sp_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2016.tif
-EBS_IDW_Lepidopsetta_sp_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2017.tif
-EBS_IDW_Lepidopsetta_sp_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2018.tif
-EBS_IDW_Lepidopsetta_sp_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2019.tif
-EBS_IDW_Lepidopsetta_sp_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2021.tif
-EBS_IDW_Lepidopsetta_sp_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2022.tif
-EBS_IDW_Lepidopsetta_sp_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2023.tif
-EBS_IDW_Lepidopsetta_sp_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lepidopsetta sp\EBS_IDW_Lepidopsetta_sp_2024.tif
-EBS_IDW_Leptasterias_arctica_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1987.tif
-EBS_IDW_Leptasterias_arctica_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1988.tif
-EBS_IDW_Leptasterias_arctica_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1989.tif
-EBS_IDW_Leptasterias_arctica_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1990.tif
-EBS_IDW_Leptasterias_arctica_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1991.tif
-EBS_IDW_Leptasterias_arctica_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1992.tif
-EBS_IDW_Leptasterias_arctica_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1993.tif
-EBS_IDW_Leptasterias_arctica_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1994.tif
-EBS_IDW_Leptasterias_arctica_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1995.tif
-EBS_IDW_Leptasterias_arctica_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1996.tif
-EBS_IDW_Leptasterias_arctica_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1997.tif
-EBS_IDW_Leptasterias_arctica_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1998.tif
-EBS_IDW_Leptasterias_arctica_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_1999.tif
-EBS_IDW_Leptasterias_arctica_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2000.tif
-EBS_IDW_Leptasterias_arctica_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2001.tif
-EBS_IDW_Leptasterias_arctica_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2002.tif
-EBS_IDW_Leptasterias_arctica_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2003.tif
-EBS_IDW_Leptasterias_arctica_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2004.tif
-EBS_IDW_Leptasterias_arctica_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2005.tif
-EBS_IDW_Leptasterias_arctica_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2006.tif
-EBS_IDW_Leptasterias_arctica_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2007.tif
-EBS_IDW_Leptasterias_arctica_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2008.tif
-EBS_IDW_Leptasterias_arctica_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2009.tif
-EBS_IDW_Leptasterias_arctica_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2010.tif
-EBS_IDW_Leptasterias_arctica_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2011.tif
-EBS_IDW_Leptasterias_arctica_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2012.tif
-EBS_IDW_Leptasterias_arctica_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2013.tif
-EBS_IDW_Leptasterias_arctica_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2014.tif
-EBS_IDW_Leptasterias_arctica_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2015.tif
-EBS_IDW_Leptasterias_arctica_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2016.tif
-EBS_IDW_Leptasterias_arctica_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2017.tif
-EBS_IDW_Leptasterias_arctica_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2018.tif
-EBS_IDW_Leptasterias_arctica_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2019.tif
-EBS_IDW_Leptasterias_arctica_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2021.tif
-EBS_IDW_Leptasterias_arctica_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2022.tif
-EBS_IDW_Leptasterias_arctica_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2023.tif
-EBS_IDW_Leptasterias_arctica_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Leptasterias arctica\EBS_IDW_Leptasterias_arctica_2024.tif
-EBS_IDW_Lethasterias_nanimensis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1987.tif
-EBS_IDW_Lethasterias_nanimensis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1988.tif
-EBS_IDW_Lethasterias_nanimensis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1989.tif
-EBS_IDW_Lethasterias_nanimensis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1990.tif
-EBS_IDW_Lethasterias_nanimensis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1991.tif
-EBS_IDW_Lethasterias_nanimensis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1992.tif
-EBS_IDW_Lethasterias_nanimensis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1993.tif
-EBS_IDW_Lethasterias_nanimensis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1994.tif
-EBS_IDW_Lethasterias_nanimensis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1995.tif
-EBS_IDW_Lethasterias_nanimensis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1996.tif
-EBS_IDW_Lethasterias_nanimensis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1997.tif
-EBS_IDW_Lethasterias_nanimensis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1998.tif
-EBS_IDW_Lethasterias_nanimensis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_1999.tif
-EBS_IDW_Lethasterias_nanimensis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2000.tif
-EBS_IDW_Lethasterias_nanimensis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2001.tif
-EBS_IDW_Lethasterias_nanimensis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2002.tif
-EBS_IDW_Lethasterias_nanimensis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2003.tif
-EBS_IDW_Lethasterias_nanimensis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2004.tif
-EBS_IDW_Lethasterias_nanimensis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2005.tif
-EBS_IDW_Lethasterias_nanimensis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2006.tif
-EBS_IDW_Lethasterias_nanimensis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2007.tif
-EBS_IDW_Lethasterias_nanimensis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2008.tif
-EBS_IDW_Lethasterias_nanimensis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2009.tif
-EBS_IDW_Lethasterias_nanimensis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2010.tif
-EBS_IDW_Lethasterias_nanimensis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2011.tif
-EBS_IDW_Lethasterias_nanimensis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2012.tif
-EBS_IDW_Lethasterias_nanimensis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2013.tif
-EBS_IDW_Lethasterias_nanimensis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2014.tif
-EBS_IDW_Lethasterias_nanimensis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2015.tif
-EBS_IDW_Lethasterias_nanimensis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2016.tif
-EBS_IDW_Lethasterias_nanimensis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2017.tif
-EBS_IDW_Lethasterias_nanimensis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2018.tif
-EBS_IDW_Lethasterias_nanimensis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2019.tif
-EBS_IDW_Lethasterias_nanimensis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2021.tif
-EBS_IDW_Lethasterias_nanimensis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2022.tif
-EBS_IDW_Lethasterias_nanimensis_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2023.tif
-EBS_IDW_Lethasterias_nanimensis_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lethasterias nanimensis\EBS_IDW_Lethasterias_nanimensis_2024.tif
-EBS_IDW_Limanda_aspera_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1987.tif
-EBS_IDW_Limanda_aspera_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1988.tif
-EBS_IDW_Limanda_aspera_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1989.tif
-EBS_IDW_Limanda_aspera_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1990.tif
-EBS_IDW_Limanda_aspera_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1991.tif
-EBS_IDW_Limanda_aspera_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1992.tif
-EBS_IDW_Limanda_aspera_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1993.tif
-EBS_IDW_Limanda_aspera_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1994.tif
-EBS_IDW_Limanda_aspera_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1995.tif
-EBS_IDW_Limanda_aspera_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1996.tif
-EBS_IDW_Limanda_aspera_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1997.tif
-EBS_IDW_Limanda_aspera_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1998.tif
-EBS_IDW_Limanda_aspera_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_1999.tif
-EBS_IDW_Limanda_aspera_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2000.tif
-EBS_IDW_Limanda_aspera_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2001.tif
-EBS_IDW_Limanda_aspera_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2002.tif
-EBS_IDW_Limanda_aspera_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2003.tif
-EBS_IDW_Limanda_aspera_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2004.tif
-EBS_IDW_Limanda_aspera_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2005.tif
-EBS_IDW_Limanda_aspera_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2006.tif
-EBS_IDW_Limanda_aspera_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2007.tif
-EBS_IDW_Limanda_aspera_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2008.tif
-EBS_IDW_Limanda_aspera_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2009.tif
-EBS_IDW_Limanda_aspera_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2010.tif
-EBS_IDW_Limanda_aspera_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2011.tif
-EBS_IDW_Limanda_aspera_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2012.tif
-EBS_IDW_Limanda_aspera_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2013.tif
-EBS_IDW_Limanda_aspera_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2014.tif
-EBS_IDW_Limanda_aspera_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2015.tif
-EBS_IDW_Limanda_aspera_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2016.tif
-EBS_IDW_Limanda_aspera_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2017.tif
-EBS_IDW_Limanda_aspera_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2018.tif
-EBS_IDW_Limanda_aspera_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2019.tif
-EBS_IDW_Limanda_aspera_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2021.tif
-EBS_IDW_Limanda_aspera_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2022.tif
-EBS_IDW_Limanda_aspera_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2023.tif
-EBS_IDW_Limanda_aspera_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Limanda aspera\EBS_IDW_Limanda_aspera_2024.tif
-EBS_IDW_Lycodes_brevipes_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1987.tif
-EBS_IDW_Lycodes_brevipes_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1988.tif
-EBS_IDW_Lycodes_brevipes_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1989.tif
-EBS_IDW_Lycodes_brevipes_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1990.tif
-EBS_IDW_Lycodes_brevipes_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1991.tif
-EBS_IDW_Lycodes_brevipes_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1992.tif
-EBS_IDW_Lycodes_brevipes_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1993.tif
-EBS_IDW_Lycodes_brevipes_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1994.tif
-EBS_IDW_Lycodes_brevipes_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1995.tif
-EBS_IDW_Lycodes_brevipes_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1996.tif
-EBS_IDW_Lycodes_brevipes_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1997.tif
-EBS_IDW_Lycodes_brevipes_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1998.tif
-EBS_IDW_Lycodes_brevipes_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_1999.tif
-EBS_IDW_Lycodes_brevipes_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2000.tif
-EBS_IDW_Lycodes_brevipes_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2001.tif
-EBS_IDW_Lycodes_brevipes_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2002.tif
-EBS_IDW_Lycodes_brevipes_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2003.tif
-EBS_IDW_Lycodes_brevipes_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2004.tif
-EBS_IDW_Lycodes_brevipes_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2005.tif
-EBS_IDW_Lycodes_brevipes_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2006.tif
-EBS_IDW_Lycodes_brevipes_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2007.tif
-EBS_IDW_Lycodes_brevipes_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2008.tif
-EBS_IDW_Lycodes_brevipes_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2009.tif
-EBS_IDW_Lycodes_brevipes_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2010.tif
-EBS_IDW_Lycodes_brevipes_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2011.tif
-EBS_IDW_Lycodes_brevipes_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2012.tif
-EBS_IDW_Lycodes_brevipes_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2013.tif
-EBS_IDW_Lycodes_brevipes_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2014.tif
-EBS_IDW_Lycodes_brevipes_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2015.tif
-EBS_IDW_Lycodes_brevipes_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2016.tif
-EBS_IDW_Lycodes_brevipes_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2017.tif
-EBS_IDW_Lycodes_brevipes_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2018.tif
-EBS_IDW_Lycodes_brevipes_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2019.tif
-EBS_IDW_Lycodes_brevipes_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2021.tif
-EBS_IDW_Lycodes_brevipes_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2022.tif
-EBS_IDW_Lycodes_brevipes_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2023.tif
-EBS_IDW_Lycodes_brevipes_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes brevipes\EBS_IDW_Lycodes_brevipes_2024.tif
-EBS_IDW_Lycodes_palearis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1987.tif
-EBS_IDW_Lycodes_palearis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1988.tif
-EBS_IDW_Lycodes_palearis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1989.tif
-EBS_IDW_Lycodes_palearis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1990.tif
-EBS_IDW_Lycodes_palearis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1991.tif
-EBS_IDW_Lycodes_palearis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1992.tif
-EBS_IDW_Lycodes_palearis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1993.tif
-EBS_IDW_Lycodes_palearis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1994.tif
-EBS_IDW_Lycodes_palearis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1995.tif
-EBS_IDW_Lycodes_palearis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1996.tif
-EBS_IDW_Lycodes_palearis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1997.tif
-EBS_IDW_Lycodes_palearis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1998.tif
-EBS_IDW_Lycodes_palearis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_1999.tif
-EBS_IDW_Lycodes_palearis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2000.tif
-EBS_IDW_Lycodes_palearis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2001.tif
-EBS_IDW_Lycodes_palearis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2002.tif
-EBS_IDW_Lycodes_palearis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2003.tif
-EBS_IDW_Lycodes_palearis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2004.tif
-EBS_IDW_Lycodes_palearis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2005.tif
-EBS_IDW_Lycodes_palearis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2006.tif
-EBS_IDW_Lycodes_palearis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2007.tif
-EBS_IDW_Lycodes_palearis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2008.tif
-EBS_IDW_Lycodes_palearis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2009.tif
-EBS_IDW_Lycodes_palearis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2010.tif
-EBS_IDW_Lycodes_palearis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2011.tif
-EBS_IDW_Lycodes_palearis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2012.tif
-EBS_IDW_Lycodes_palearis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2013.tif
-EBS_IDW_Lycodes_palearis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2014.tif
-EBS_IDW_Lycodes_palearis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2015.tif
-EBS_IDW_Lycodes_palearis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2016.tif
-EBS_IDW_Lycodes_palearis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2017.tif
-EBS_IDW_Lycodes_palearis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2018.tif
-EBS_IDW_Lycodes_palearis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2019.tif
-EBS_IDW_Lycodes_palearis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2021.tif
-EBS_IDW_Lycodes_palearis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2022.tif
-EBS_IDW_Lycodes_palearis_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2023.tif
-EBS_IDW_Lycodes_palearis_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Lycodes palearis\EBS_IDW_Lycodes_palearis_2024.tif
-EBS_IDW_Mallotus_villosus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1987.tif
-EBS_IDW_Mallotus_villosus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1988.tif
-EBS_IDW_Mallotus_villosus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1989.tif
-EBS_IDW_Mallotus_villosus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1990.tif
-EBS_IDW_Mallotus_villosus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1991.tif
-EBS_IDW_Mallotus_villosus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1992.tif
-EBS_IDW_Mallotus_villosus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1993.tif
-EBS_IDW_Mallotus_villosus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1994.tif
-EBS_IDW_Mallotus_villosus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1995.tif
-EBS_IDW_Mallotus_villosus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1996.tif
-EBS_IDW_Mallotus_villosus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1997.tif
-EBS_IDW_Mallotus_villosus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1998.tif
-EBS_IDW_Mallotus_villosus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_1999.tif
-EBS_IDW_Mallotus_villosus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2000.tif
-EBS_IDW_Mallotus_villosus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2001.tif
-EBS_IDW_Mallotus_villosus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2002.tif
-EBS_IDW_Mallotus_villosus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2003.tif
-EBS_IDW_Mallotus_villosus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2004.tif
-EBS_IDW_Mallotus_villosus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2005.tif
-EBS_IDW_Mallotus_villosus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2006.tif
-EBS_IDW_Mallotus_villosus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2007.tif
-EBS_IDW_Mallotus_villosus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2008.tif
-EBS_IDW_Mallotus_villosus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2009.tif
-EBS_IDW_Mallotus_villosus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2010.tif
-EBS_IDW_Mallotus_villosus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2011.tif
-EBS_IDW_Mallotus_villosus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2012.tif
-EBS_IDW_Mallotus_villosus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2013.tif
-EBS_IDW_Mallotus_villosus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2014.tif
-EBS_IDW_Mallotus_villosus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2015.tif
-EBS_IDW_Mallotus_villosus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2016.tif
-EBS_IDW_Mallotus_villosus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2017.tif
-EBS_IDW_Mallotus_villosus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:12:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2018.tif
-EBS_IDW_Mallotus_villosus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2019.tif
-EBS_IDW_Mallotus_villosus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2021.tif
-EBS_IDW_Mallotus_villosus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2022.tif
-EBS_IDW_Mallotus_villosus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2023.tif
-EBS_IDW_Mallotus_villosus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Mallotus villosus\EBS_IDW_Mallotus_villosus_2024.tif
-EBS_IDW_Myoxocephalus_jaok_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1987.tif
-EBS_IDW_Myoxocephalus_jaok_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1988.tif
-EBS_IDW_Myoxocephalus_jaok_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1989.tif
-EBS_IDW_Myoxocephalus_jaok_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1990.tif
-EBS_IDW_Myoxocephalus_jaok_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1991.tif
-EBS_IDW_Myoxocephalus_jaok_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1992.tif
-EBS_IDW_Myoxocephalus_jaok_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1993.tif
-EBS_IDW_Myoxocephalus_jaok_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1994.tif
-EBS_IDW_Myoxocephalus_jaok_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1995.tif
-EBS_IDW_Myoxocephalus_jaok_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1996.tif
-EBS_IDW_Myoxocephalus_jaok_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1997.tif
-EBS_IDW_Myoxocephalus_jaok_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1998.tif
-EBS_IDW_Myoxocephalus_jaok_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_1999.tif
-EBS_IDW_Myoxocephalus_jaok_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2000.tif
-EBS_IDW_Myoxocephalus_jaok_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2001.tif
-EBS_IDW_Myoxocephalus_jaok_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2002.tif
-EBS_IDW_Myoxocephalus_jaok_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2003.tif
-EBS_IDW_Myoxocephalus_jaok_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2004.tif
-EBS_IDW_Myoxocephalus_jaok_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2005.tif
-EBS_IDW_Myoxocephalus_jaok_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2006.tif
-EBS_IDW_Myoxocephalus_jaok_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2007.tif
-EBS_IDW_Myoxocephalus_jaok_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2008.tif
-EBS_IDW_Myoxocephalus_jaok_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2009.tif
-EBS_IDW_Myoxocephalus_jaok_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2010.tif
-EBS_IDW_Myoxocephalus_jaok_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2011.tif
-EBS_IDW_Myoxocephalus_jaok_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2012.tif
-EBS_IDW_Myoxocephalus_jaok_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2013.tif
-EBS_IDW_Myoxocephalus_jaok_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2014.tif
-EBS_IDW_Myoxocephalus_jaok_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2015.tif
-EBS_IDW_Myoxocephalus_jaok_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2016.tif
-EBS_IDW_Myoxocephalus_jaok_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2017.tif
-EBS_IDW_Myoxocephalus_jaok_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2018.tif
-EBS_IDW_Myoxocephalus_jaok_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2019.tif
-EBS_IDW_Myoxocephalus_jaok_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2021.tif
-EBS_IDW_Myoxocephalus_jaok_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2022.tif
-EBS_IDW_Myoxocephalus_jaok_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2023.tif
-EBS_IDW_Myoxocephalus_jaok_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus jaok\EBS_IDW_Myoxocephalus_jaok_2024.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1987.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1988.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1989.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1990.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1991.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1992.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1993.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1994.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1995.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1996.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1997.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1998.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_1999.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2000.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2001.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2002.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2003.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2004.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2005.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2006.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2007.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2008.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2009.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2010.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2011.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2012.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2013.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2014.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2015.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2016.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2017.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2018.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2019.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2021.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2022.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2023.tif
-EBS_IDW_Myoxocephalus_polyacanthocephalus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myoxocephalus polyacanthocephalus\EBS_IDW_Myoxocephalus_polyacanthocephalus_2024.tif
-EBS_IDW_Myzopsetta_proboscidea_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_1987.tif
-EBS_IDW_Myzopsetta_proboscidea_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_1988.tif
-EBS_IDW_Myzopsetta_proboscidea_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_1989.tif
-EBS_IDW_Myzopsetta_proboscidea_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_1990.tif
-EBS_IDW_Myzopsetta_proboscidea_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_1991.tif
-EBS_IDW_Myzopsetta_proboscidea_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_1992.tif
-EBS_IDW_Myzopsetta_proboscidea_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_1993.tif
-EBS_IDW_Myzopsetta_proboscidea_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_1994.tif
-EBS_IDW_Myzopsetta_proboscidea_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_1995.tif
-EBS_IDW_Myzopsetta_proboscidea_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_1996.tif
-EBS_IDW_Myzopsetta_proboscidea_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_1997.tif
-EBS_IDW_Myzopsetta_proboscidea_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_1998.tif
-EBS_IDW_Myzopsetta_proboscidea_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_1999.tif
-EBS_IDW_Myzopsetta_proboscidea_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2000.tif
-EBS_IDW_Myzopsetta_proboscidea_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2001.tif
-EBS_IDW_Myzopsetta_proboscidea_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2002.tif
-EBS_IDW_Myzopsetta_proboscidea_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2003.tif
-EBS_IDW_Myzopsetta_proboscidea_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2004.tif
-EBS_IDW_Myzopsetta_proboscidea_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2005.tif
-EBS_IDW_Myzopsetta_proboscidea_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2006.tif
-EBS_IDW_Myzopsetta_proboscidea_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2007.tif
-EBS_IDW_Myzopsetta_proboscidea_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2008.tif
-EBS_IDW_Myzopsetta_proboscidea_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2009.tif
-EBS_IDW_Myzopsetta_proboscidea_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2010.tif
-EBS_IDW_Myzopsetta_proboscidea_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2011.tif
-EBS_IDW_Myzopsetta_proboscidea_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2012.tif
-EBS_IDW_Myzopsetta_proboscidea_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2013.tif
-EBS_IDW_Myzopsetta_proboscidea_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2014.tif
-EBS_IDW_Myzopsetta_proboscidea_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2015.tif
-EBS_IDW_Myzopsetta_proboscidea_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2016.tif
-EBS_IDW_Myzopsetta_proboscidea_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2017.tif
-EBS_IDW_Myzopsetta_proboscidea_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2018.tif
-EBS_IDW_Myzopsetta_proboscidea_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2019.tif
-EBS_IDW_Myzopsetta_proboscidea_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2021.tif
-EBS_IDW_Myzopsetta_proboscidea_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2022.tif
-EBS_IDW_Myzopsetta_proboscidea_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2023.tif
-EBS_IDW_Myzopsetta_proboscidea_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Myzopsetta proboscidea\EBS_IDW_Myzopsetta_proboscidea_2024.tif
-EBS_IDW_Occella_dodecaedron_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1987.tif
-EBS_IDW_Occella_dodecaedron_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1988.tif
-EBS_IDW_Occella_dodecaedron_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1989.tif
-EBS_IDW_Occella_dodecaedron_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1990.tif
-EBS_IDW_Occella_dodecaedron_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1991.tif
-EBS_IDW_Occella_dodecaedron_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1992.tif
-EBS_IDW_Occella_dodecaedron_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1993.tif
-EBS_IDW_Occella_dodecaedron_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1994.tif
-EBS_IDW_Occella_dodecaedron_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1995.tif
-EBS_IDW_Occella_dodecaedron_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1996.tif
-EBS_IDW_Occella_dodecaedron_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1997.tif
-EBS_IDW_Occella_dodecaedron_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1998.tif
-EBS_IDW_Occella_dodecaedron_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_1999.tif
-EBS_IDW_Occella_dodecaedron_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2000.tif
-EBS_IDW_Occella_dodecaedron_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2001.tif
-EBS_IDW_Occella_dodecaedron_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2002.tif
-EBS_IDW_Occella_dodecaedron_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2003.tif
-EBS_IDW_Occella_dodecaedron_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2004.tif
-EBS_IDW_Occella_dodecaedron_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2005.tif
-EBS_IDW_Occella_dodecaedron_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2006.tif
-EBS_IDW_Occella_dodecaedron_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2007.tif
-EBS_IDW_Occella_dodecaedron_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2008.tif
-EBS_IDW_Occella_dodecaedron_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2009.tif
-EBS_IDW_Occella_dodecaedron_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2010.tif
-EBS_IDW_Occella_dodecaedron_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2011.tif
-EBS_IDW_Occella_dodecaedron_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2012.tif
-EBS_IDW_Occella_dodecaedron_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2013.tif
-EBS_IDW_Occella_dodecaedron_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2014.tif
-EBS_IDW_Occella_dodecaedron_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2015.tif
-EBS_IDW_Occella_dodecaedron_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2016.tif
-EBS_IDW_Occella_dodecaedron_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2017.tif
-EBS_IDW_Occella_dodecaedron_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2018.tif
-EBS_IDW_Occella_dodecaedron_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2019.tif
-EBS_IDW_Occella_dodecaedron_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2021.tif
-EBS_IDW_Occella_dodecaedron_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2022.tif
-EBS_IDW_Occella_dodecaedron_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2023.tif
-EBS_IDW_Occella_dodecaedron_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Occella dodecaedron\EBS_IDW_Occella_dodecaedron_2024.tif
-EBS_IDW_Oregonia_gracilis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1987.tif
-EBS_IDW_Oregonia_gracilis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1988.tif
-EBS_IDW_Oregonia_gracilis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1989.tif
-EBS_IDW_Oregonia_gracilis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1990.tif
-EBS_IDW_Oregonia_gracilis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1991.tif
-EBS_IDW_Oregonia_gracilis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1992.tif
-EBS_IDW_Oregonia_gracilis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1993.tif
-EBS_IDW_Oregonia_gracilis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1994.tif
-EBS_IDW_Oregonia_gracilis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1995.tif
-EBS_IDW_Oregonia_gracilis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1996.tif
-EBS_IDW_Oregonia_gracilis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1997.tif
-EBS_IDW_Oregonia_gracilis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1998.tif
-EBS_IDW_Oregonia_gracilis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_1999.tif
-EBS_IDW_Oregonia_gracilis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2000.tif
-EBS_IDW_Oregonia_gracilis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2001.tif
-EBS_IDW_Oregonia_gracilis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2002.tif
-EBS_IDW_Oregonia_gracilis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2003.tif
-EBS_IDW_Oregonia_gracilis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2004.tif
-EBS_IDW_Oregonia_gracilis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2005.tif
-EBS_IDW_Oregonia_gracilis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2006.tif
-EBS_IDW_Oregonia_gracilis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2007.tif
-EBS_IDW_Oregonia_gracilis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2008.tif
-EBS_IDW_Oregonia_gracilis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2009.tif
-EBS_IDW_Oregonia_gracilis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2010.tif
-EBS_IDW_Oregonia_gracilis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2011.tif
-EBS_IDW_Oregonia_gracilis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2012.tif
-EBS_IDW_Oregonia_gracilis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2013.tif
-EBS_IDW_Oregonia_gracilis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2014.tif
-EBS_IDW_Oregonia_gracilis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2015.tif
-EBS_IDW_Oregonia_gracilis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2016.tif
-EBS_IDW_Oregonia_gracilis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2017.tif
-EBS_IDW_Oregonia_gracilis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2018.tif
-EBS_IDW_Oregonia_gracilis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2019.tif
-EBS_IDW_Oregonia_gracilis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2021.tif
-EBS_IDW_Oregonia_gracilis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2022.tif
-EBS_IDW_Oregonia_gracilis_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2023.tif
-EBS_IDW_Oregonia_gracilis_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Oregonia gracilis\EBS_IDW_Oregonia_gracilis_2024.tif
-EBS_IDW_Pagurus_aleuticus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1987.tif
-EBS_IDW_Pagurus_aleuticus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1988.tif
-EBS_IDW_Pagurus_aleuticus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1989.tif
-EBS_IDW_Pagurus_aleuticus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1990.tif
-EBS_IDW_Pagurus_aleuticus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1991.tif
-EBS_IDW_Pagurus_aleuticus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1992.tif
-EBS_IDW_Pagurus_aleuticus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1993.tif
-EBS_IDW_Pagurus_aleuticus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:13:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1994.tif
-EBS_IDW_Pagurus_aleuticus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1995.tif
-EBS_IDW_Pagurus_aleuticus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1996.tif
-EBS_IDW_Pagurus_aleuticus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1997.tif
-EBS_IDW_Pagurus_aleuticus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1998.tif
-EBS_IDW_Pagurus_aleuticus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_1999.tif
-EBS_IDW_Pagurus_aleuticus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2000.tif
-EBS_IDW_Pagurus_aleuticus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2001.tif
-EBS_IDW_Pagurus_aleuticus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2002.tif
-EBS_IDW_Pagurus_aleuticus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2003.tif
-EBS_IDW_Pagurus_aleuticus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2004.tif
-EBS_IDW_Pagurus_aleuticus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2005.tif
-EBS_IDW_Pagurus_aleuticus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2006.tif
-EBS_IDW_Pagurus_aleuticus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2007.tif
-EBS_IDW_Pagurus_aleuticus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2008.tif
-EBS_IDW_Pagurus_aleuticus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2009.tif
-EBS_IDW_Pagurus_aleuticus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2010.tif
-EBS_IDW_Pagurus_aleuticus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2011.tif
-EBS_IDW_Pagurus_aleuticus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2012.tif
-EBS_IDW_Pagurus_aleuticus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2013.tif
-EBS_IDW_Pagurus_aleuticus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2014.tif
-EBS_IDW_Pagurus_aleuticus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2015.tif
-EBS_IDW_Pagurus_aleuticus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2016.tif
-EBS_IDW_Pagurus_aleuticus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2017.tif
-EBS_IDW_Pagurus_aleuticus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2018.tif
-EBS_IDW_Pagurus_aleuticus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2019.tif
-EBS_IDW_Pagurus_aleuticus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2021.tif
-EBS_IDW_Pagurus_aleuticus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2022.tif
-EBS_IDW_Pagurus_aleuticus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2023.tif
-EBS_IDW_Pagurus_aleuticus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus aleuticus\EBS_IDW_Pagurus_aleuticus_2024.tif
-EBS_IDW_Pagurus_ochotensis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1987.tif
-EBS_IDW_Pagurus_ochotensis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1988.tif
-EBS_IDW_Pagurus_ochotensis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1989.tif
-EBS_IDW_Pagurus_ochotensis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1990.tif
-EBS_IDW_Pagurus_ochotensis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1991.tif
-EBS_IDW_Pagurus_ochotensis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1992.tif
-EBS_IDW_Pagurus_ochotensis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1993.tif
-EBS_IDW_Pagurus_ochotensis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1994.tif
-EBS_IDW_Pagurus_ochotensis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1995.tif
-EBS_IDW_Pagurus_ochotensis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1996.tif
-EBS_IDW_Pagurus_ochotensis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1997.tif
-EBS_IDW_Pagurus_ochotensis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1998.tif
-EBS_IDW_Pagurus_ochotensis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_1999.tif
-EBS_IDW_Pagurus_ochotensis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2000.tif
-EBS_IDW_Pagurus_ochotensis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2001.tif
-EBS_IDW_Pagurus_ochotensis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2002.tif
-EBS_IDW_Pagurus_ochotensis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2003.tif
-EBS_IDW_Pagurus_ochotensis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2004.tif
-EBS_IDW_Pagurus_ochotensis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2005.tif
-EBS_IDW_Pagurus_ochotensis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2006.tif
-EBS_IDW_Pagurus_ochotensis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2007.tif
-EBS_IDW_Pagurus_ochotensis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2008.tif
-EBS_IDW_Pagurus_ochotensis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2009.tif
-EBS_IDW_Pagurus_ochotensis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2010.tif
-EBS_IDW_Pagurus_ochotensis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2011.tif
-EBS_IDW_Pagurus_ochotensis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2012.tif
-EBS_IDW_Pagurus_ochotensis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2013.tif
-EBS_IDW_Pagurus_ochotensis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2014.tif
-EBS_IDW_Pagurus_ochotensis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2015.tif
-EBS_IDW_Pagurus_ochotensis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2016.tif
-EBS_IDW_Pagurus_ochotensis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2017.tif
-EBS_IDW_Pagurus_ochotensis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2018.tif
-EBS_IDW_Pagurus_ochotensis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2019.tif
-EBS_IDW_Pagurus_ochotensis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2021.tif
-EBS_IDW_Pagurus_ochotensis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2022.tif
-EBS_IDW_Pagurus_ochotensis_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2023.tif
-EBS_IDW_Pagurus_ochotensis_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pagurus ochotensis\EBS_IDW_Pagurus_ochotensis_2024.tif
-EBS_IDW_Paralithodes_camtschaticus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1987.tif
-EBS_IDW_Paralithodes_camtschaticus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1988.tif
-EBS_IDW_Paralithodes_camtschaticus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1989.tif
-EBS_IDW_Paralithodes_camtschaticus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1990.tif
-EBS_IDW_Paralithodes_camtschaticus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1991.tif
-EBS_IDW_Paralithodes_camtschaticus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1992.tif
-EBS_IDW_Paralithodes_camtschaticus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1993.tif
-EBS_IDW_Paralithodes_camtschaticus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1994.tif
-EBS_IDW_Paralithodes_camtschaticus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1995.tif
-EBS_IDW_Paralithodes_camtschaticus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1996.tif
-EBS_IDW_Paralithodes_camtschaticus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1997.tif
-EBS_IDW_Paralithodes_camtschaticus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1998.tif
-EBS_IDW_Paralithodes_camtschaticus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_1999.tif
-EBS_IDW_Paralithodes_camtschaticus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2000.tif
-EBS_IDW_Paralithodes_camtschaticus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2001.tif
-EBS_IDW_Paralithodes_camtschaticus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2002.tif
-EBS_IDW_Paralithodes_camtschaticus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2003.tif
-EBS_IDW_Paralithodes_camtschaticus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2004.tif
-EBS_IDW_Paralithodes_camtschaticus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2005.tif
-EBS_IDW_Paralithodes_camtschaticus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2006.tif
-EBS_IDW_Paralithodes_camtschaticus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2007.tif
-EBS_IDW_Paralithodes_camtschaticus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2008.tif
-EBS_IDW_Paralithodes_camtschaticus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2009.tif
-EBS_IDW_Paralithodes_camtschaticus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2010.tif
-EBS_IDW_Paralithodes_camtschaticus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2011.tif
-EBS_IDW_Paralithodes_camtschaticus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2012.tif
-EBS_IDW_Paralithodes_camtschaticus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2013.tif
-EBS_IDW_Paralithodes_camtschaticus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2014.tif
-EBS_IDW_Paralithodes_camtschaticus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2015.tif
-EBS_IDW_Paralithodes_camtschaticus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2016.tif
-EBS_IDW_Paralithodes_camtschaticus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2017.tif
-EBS_IDW_Paralithodes_camtschaticus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2018.tif
-EBS_IDW_Paralithodes_camtschaticus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2019.tif
-EBS_IDW_Paralithodes_camtschaticus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2021.tif
-EBS_IDW_Paralithodes_camtschaticus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2022.tif
-EBS_IDW_Paralithodes_camtschaticus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2023.tif
-EBS_IDW_Paralithodes_camtschaticus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes camtschaticus\EBS_IDW_Paralithodes_camtschaticus_2024.tif
-EBS_IDW_Paralithodes_platypus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1987.tif
-EBS_IDW_Paralithodes_platypus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1988.tif
-EBS_IDW_Paralithodes_platypus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1989.tif
-EBS_IDW_Paralithodes_platypus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1990.tif
-EBS_IDW_Paralithodes_platypus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1991.tif
-EBS_IDW_Paralithodes_platypus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1992.tif
-EBS_IDW_Paralithodes_platypus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1993.tif
-EBS_IDW_Paralithodes_platypus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1994.tif
-EBS_IDW_Paralithodes_platypus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1995.tif
-EBS_IDW_Paralithodes_platypus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1996.tif
-EBS_IDW_Paralithodes_platypus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1997.tif
-EBS_IDW_Paralithodes_platypus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1998.tif
-EBS_IDW_Paralithodes_platypus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_1999.tif
-EBS_IDW_Paralithodes_platypus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2000.tif
-EBS_IDW_Paralithodes_platypus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2001.tif
-EBS_IDW_Paralithodes_platypus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2002.tif
-EBS_IDW_Paralithodes_platypus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2003.tif
-EBS_IDW_Paralithodes_platypus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2004.tif
-EBS_IDW_Paralithodes_platypus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2005.tif
-EBS_IDW_Paralithodes_platypus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2006.tif
-EBS_IDW_Paralithodes_platypus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2007.tif
-EBS_IDW_Paralithodes_platypus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2008.tif
-EBS_IDW_Paralithodes_platypus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2009.tif
-EBS_IDW_Paralithodes_platypus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2010.tif
-EBS_IDW_Paralithodes_platypus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2011.tif
-EBS_IDW_Paralithodes_platypus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2012.tif
-EBS_IDW_Paralithodes_platypus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2013.tif
-EBS_IDW_Paralithodes_platypus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2014.tif
-EBS_IDW_Paralithodes_platypus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2015.tif
-EBS_IDW_Paralithodes_platypus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2016.tif
-EBS_IDW_Paralithodes_platypus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2017.tif
-EBS_IDW_Paralithodes_platypus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2018.tif
-EBS_IDW_Paralithodes_platypus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2019.tif
-EBS_IDW_Paralithodes_platypus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2021.tif
-EBS_IDW_Paralithodes_platypus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2022.tif
-EBS_IDW_Paralithodes_platypus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2023.tif
-EBS_IDW_Paralithodes_platypus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Paralithodes platypus\EBS_IDW_Paralithodes_platypus_2024.tif
-EBS_IDW_Platichthys_stellatus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1987.tif
-EBS_IDW_Platichthys_stellatus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1988.tif
-EBS_IDW_Platichthys_stellatus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1989.tif
-EBS_IDW_Platichthys_stellatus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1990.tif
-EBS_IDW_Platichthys_stellatus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1991.tif
-EBS_IDW_Platichthys_stellatus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1992.tif
-EBS_IDW_Platichthys_stellatus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1993.tif
-EBS_IDW_Platichthys_stellatus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1994.tif
-EBS_IDW_Platichthys_stellatus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1995.tif
-EBS_IDW_Platichthys_stellatus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1996.tif
-EBS_IDW_Platichthys_stellatus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1997.tif
-EBS_IDW_Platichthys_stellatus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1998.tif
-EBS_IDW_Platichthys_stellatus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_1999.tif
-EBS_IDW_Platichthys_stellatus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2000.tif
-EBS_IDW_Platichthys_stellatus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2001.tif
-EBS_IDW_Platichthys_stellatus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2002.tif
-EBS_IDW_Platichthys_stellatus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2003.tif
-EBS_IDW_Platichthys_stellatus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2004.tif
-EBS_IDW_Platichthys_stellatus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2005.tif
-EBS_IDW_Platichthys_stellatus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2006.tif
-EBS_IDW_Platichthys_stellatus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2007.tif
-EBS_IDW_Platichthys_stellatus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2008.tif
-EBS_IDW_Platichthys_stellatus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2009.tif
-EBS_IDW_Platichthys_stellatus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2010.tif
-EBS_IDW_Platichthys_stellatus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2011.tif
-EBS_IDW_Platichthys_stellatus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2012.tif
-EBS_IDW_Platichthys_stellatus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2013.tif
-EBS_IDW_Platichthys_stellatus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2014.tif
-EBS_IDW_Platichthys_stellatus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2015.tif
-EBS_IDW_Platichthys_stellatus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2016.tif
-EBS_IDW_Platichthys_stellatus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2017.tif
-EBS_IDW_Platichthys_stellatus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2018.tif
-EBS_IDW_Platichthys_stellatus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2019.tif
-EBS_IDW_Platichthys_stellatus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2021.tif
-EBS_IDW_Platichthys_stellatus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2022.tif
-EBS_IDW_Platichthys_stellatus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2023.tif
-EBS_IDW_Platichthys_stellatus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Platichthys stellatus\EBS_IDW_Platichthys_stellatus_2024.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1987.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1988.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1989.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1990.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1991.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1992.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1993.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1994.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1995.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1996.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1997.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1998.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_1999.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2000.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2001.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2002.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2003.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2004.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2005.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2006.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2007.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2008.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2009.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2010.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2011.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2012.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2013.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2014.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2015.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2016.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2017.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2018.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2019.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2021.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2022.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2023.tif
-EBS_IDW_Pleuronectes_quadrituberculatus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Pleuronectes quadrituberculatus\EBS_IDW_Pleuronectes_quadrituberculatus_2024.tif
-EBS_IDW_Podothecus_accipenserinus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1987.tif
-EBS_IDW_Podothecus_accipenserinus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1988.tif
-EBS_IDW_Podothecus_accipenserinus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1989.tif
-EBS_IDW_Podothecus_accipenserinus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1990.tif
-EBS_IDW_Podothecus_accipenserinus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1991.tif
-EBS_IDW_Podothecus_accipenserinus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1992.tif
-EBS_IDW_Podothecus_accipenserinus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1993.tif
-EBS_IDW_Podothecus_accipenserinus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1994.tif
-EBS_IDW_Podothecus_accipenserinus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1995.tif
-EBS_IDW_Podothecus_accipenserinus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1996.tif
-EBS_IDW_Podothecus_accipenserinus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1997.tif
-EBS_IDW_Podothecus_accipenserinus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1998.tif
-EBS_IDW_Podothecus_accipenserinus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_1999.tif
-EBS_IDW_Podothecus_accipenserinus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2000.tif
-EBS_IDW_Podothecus_accipenserinus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2001.tif
-EBS_IDW_Podothecus_accipenserinus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2002.tif
-EBS_IDW_Podothecus_accipenserinus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2003.tif
-EBS_IDW_Podothecus_accipenserinus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2004.tif
-EBS_IDW_Podothecus_accipenserinus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2005.tif
-EBS_IDW_Podothecus_accipenserinus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2006.tif
-EBS_IDW_Podothecus_accipenserinus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2007.tif
-EBS_IDW_Podothecus_accipenserinus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2008.tif
-EBS_IDW_Podothecus_accipenserinus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2009.tif
-EBS_IDW_Podothecus_accipenserinus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2010.tif
-EBS_IDW_Podothecus_accipenserinus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2011.tif
-EBS_IDW_Podothecus_accipenserinus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2012.tif
-EBS_IDW_Podothecus_accipenserinus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2013.tif
-EBS_IDW_Podothecus_accipenserinus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2014.tif
-EBS_IDW_Podothecus_accipenserinus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2015.tif
-EBS_IDW_Podothecus_accipenserinus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2016.tif
-EBS_IDW_Podothecus_accipenserinus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2017.tif
-EBS_IDW_Podothecus_accipenserinus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2018.tif
-EBS_IDW_Podothecus_accipenserinus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2019.tif
-EBS_IDW_Podothecus_accipenserinus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2021.tif
-EBS_IDW_Podothecus_accipenserinus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2022.tif
-EBS_IDW_Podothecus_accipenserinus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2023.tif
-EBS_IDW_Podothecus_accipenserinus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Podothecus accipenserinus\EBS_IDW_Podothecus_accipenserinus_2024.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1987.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1988.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1989.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1990.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1991.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1992.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1993.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1994.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1995.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1996.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1997.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1998.tif
-EBS_IDW_Reinhardtius_hippoglossoides_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_1999.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2000.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2001.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2002.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2003.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2004.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2005.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2006.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2007.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2008.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2009.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2010.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2011.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2012.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:14:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2013.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2014.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2015.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2016.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2017.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2018.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2019.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2021.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2022.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2023.tif
-EBS_IDW_Reinhardtius_hippoglossoides_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Reinhardtius hippoglossoides\EBS_IDW_Reinhardtius_hippoglossoides_2024.tif
-EBS_IDW_Sarritor_frenatus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1987.tif
-EBS_IDW_Sarritor_frenatus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1988.tif
-EBS_IDW_Sarritor_frenatus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1989.tif
-EBS_IDW_Sarritor_frenatus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1990.tif
-EBS_IDW_Sarritor_frenatus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1991.tif
-EBS_IDW_Sarritor_frenatus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1992.tif
-EBS_IDW_Sarritor_frenatus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1993.tif
-EBS_IDW_Sarritor_frenatus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1994.tif
-EBS_IDW_Sarritor_frenatus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1995.tif
-EBS_IDW_Sarritor_frenatus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1996.tif
-EBS_IDW_Sarritor_frenatus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1997.tif
-EBS_IDW_Sarritor_frenatus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1998.tif
-EBS_IDW_Sarritor_frenatus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_1999.tif
-EBS_IDW_Sarritor_frenatus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2000.tif
-EBS_IDW_Sarritor_frenatus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2001.tif
-EBS_IDW_Sarritor_frenatus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2002.tif
-EBS_IDW_Sarritor_frenatus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2003.tif
-EBS_IDW_Sarritor_frenatus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2004.tif
-EBS_IDW_Sarritor_frenatus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2005.tif
-EBS_IDW_Sarritor_frenatus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2006.tif
-EBS_IDW_Sarritor_frenatus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2007.tif
-EBS_IDW_Sarritor_frenatus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2008.tif
-EBS_IDW_Sarritor_frenatus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2009.tif
-EBS_IDW_Sarritor_frenatus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2010.tif
-EBS_IDW_Sarritor_frenatus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2011.tif
-EBS_IDW_Sarritor_frenatus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2012.tif
-EBS_IDW_Sarritor_frenatus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2013.tif
-EBS_IDW_Sarritor_frenatus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2014.tif
-EBS_IDW_Sarritor_frenatus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2015.tif
-EBS_IDW_Sarritor_frenatus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2016.tif
-EBS_IDW_Sarritor_frenatus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2017.tif
-EBS_IDW_Sarritor_frenatus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2018.tif
-EBS_IDW_Sarritor_frenatus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2019.tif
-EBS_IDW_Sarritor_frenatus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2021.tif
-EBS_IDW_Sarritor_frenatus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2022.tif
-EBS_IDW_Sarritor_frenatus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2023.tif
-EBS_IDW_Sarritor_frenatus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Sarritor frenatus\EBS_IDW_Sarritor_frenatus_2024.tif
-EBS_IDW_Telmessus_cheiragonus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1987.tif
-EBS_IDW_Telmessus_cheiragonus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1988.tif
-EBS_IDW_Telmessus_cheiragonus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1989.tif
-EBS_IDW_Telmessus_cheiragonus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1990.tif
-EBS_IDW_Telmessus_cheiragonus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1991.tif
-EBS_IDW_Telmessus_cheiragonus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1992.tif
-EBS_IDW_Telmessus_cheiragonus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1993.tif
-EBS_IDW_Telmessus_cheiragonus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1994.tif
-EBS_IDW_Telmessus_cheiragonus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1995.tif
-EBS_IDW_Telmessus_cheiragonus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1996.tif
-EBS_IDW_Telmessus_cheiragonus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1997.tif
-EBS_IDW_Telmessus_cheiragonus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1998.tif
-EBS_IDW_Telmessus_cheiragonus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_1999.tif
-EBS_IDW_Telmessus_cheiragonus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2000.tif
-EBS_IDW_Telmessus_cheiragonus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2001.tif
-EBS_IDW_Telmessus_cheiragonus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2002.tif
-EBS_IDW_Telmessus_cheiragonus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2003.tif
-EBS_IDW_Telmessus_cheiragonus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2004.tif
-EBS_IDW_Telmessus_cheiragonus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2005.tif
-EBS_IDW_Telmessus_cheiragonus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2006.tif
-EBS_IDW_Telmessus_cheiragonus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2007.tif
-EBS_IDW_Telmessus_cheiragonus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2008.tif
-EBS_IDW_Telmessus_cheiragonus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2009.tif
-EBS_IDW_Telmessus_cheiragonus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2010.tif
-EBS_IDW_Telmessus_cheiragonus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2011.tif
-EBS_IDW_Telmessus_cheiragonus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2012.tif
-EBS_IDW_Telmessus_cheiragonus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2013.tif
-EBS_IDW_Telmessus_cheiragonus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2014.tif
-EBS_IDW_Telmessus_cheiragonus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2015.tif
-EBS_IDW_Telmessus_cheiragonus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2016.tif
-EBS_IDW_Telmessus_cheiragonus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2017.tif
-EBS_IDW_Telmessus_cheiragonus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2018.tif
-EBS_IDW_Telmessus_cheiragonus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2019.tif
-EBS_IDW_Telmessus_cheiragonus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2021.tif
-EBS_IDW_Telmessus_cheiragonus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2022.tif
-EBS_IDW_Telmessus_cheiragonus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2023.tif
-EBS_IDW_Telmessus_cheiragonus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Telmessus cheiragonus\EBS_IDW_Telmessus_cheiragonus_2024.tif
-EBS_IDW_Thaleichthys_pacificus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1987.tif
-EBS_IDW_Thaleichthys_pacificus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1988.tif
-EBS_IDW_Thaleichthys_pacificus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1989.tif
-EBS_IDW_Thaleichthys_pacificus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1990.tif
-EBS_IDW_Thaleichthys_pacificus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1991.tif
-EBS_IDW_Thaleichthys_pacificus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1992.tif
-EBS_IDW_Thaleichthys_pacificus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1993.tif
-EBS_IDW_Thaleichthys_pacificus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1994.tif
-EBS_IDW_Thaleichthys_pacificus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1995.tif
-EBS_IDW_Thaleichthys_pacificus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1996.tif
-EBS_IDW_Thaleichthys_pacificus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1997.tif
-EBS_IDW_Thaleichthys_pacificus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1998.tif
-EBS_IDW_Thaleichthys_pacificus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_1999.tif
-EBS_IDW_Thaleichthys_pacificus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2000.tif
-EBS_IDW_Thaleichthys_pacificus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2001.tif
-EBS_IDW_Thaleichthys_pacificus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2002.tif
-EBS_IDW_Thaleichthys_pacificus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2003.tif
-EBS_IDW_Thaleichthys_pacificus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2004.tif
-EBS_IDW_Thaleichthys_pacificus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2005.tif
-EBS_IDW_Thaleichthys_pacificus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2006.tif
-EBS_IDW_Thaleichthys_pacificus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2007.tif
-EBS_IDW_Thaleichthys_pacificus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2008.tif
-EBS_IDW_Thaleichthys_pacificus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2009.tif
-EBS_IDW_Thaleichthys_pacificus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2010.tif
-EBS_IDW_Thaleichthys_pacificus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2011.tif
-EBS_IDW_Thaleichthys_pacificus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2012.tif
-EBS_IDW_Thaleichthys_pacificus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2013.tif
-EBS_IDW_Thaleichthys_pacificus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2014.tif
-EBS_IDW_Thaleichthys_pacificus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2015.tif
-EBS_IDW_Thaleichthys_pacificus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2016.tif
-EBS_IDW_Thaleichthys_pacificus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2017.tif
-EBS_IDW_Thaleichthys_pacificus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2018.tif
-EBS_IDW_Thaleichthys_pacificus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2019.tif
-EBS_IDW_Thaleichthys_pacificus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2021.tif
-EBS_IDW_Thaleichthys_pacificus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2022.tif
-EBS_IDW_Thaleichthys_pacificus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2023.tif
-EBS_IDW_Thaleichthys_pacificus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\Thaleichthys pacificus\EBS_IDW_Thaleichthys_pacificus_2024.tif
-EBS_IDW_Core_Species_Richness_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1987.tif
-EBS_IDW_Core_Species_Richness_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1988.tif
-EBS_IDW_Core_Species_Richness_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1989.tif
-EBS_IDW_Core_Species_Richness_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1990.tif
-EBS_IDW_Core_Species_Richness_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1991.tif
-EBS_IDW_Core_Species_Richness_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1992.tif
-EBS_IDW_Core_Species_Richness_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1993.tif
-EBS_IDW_Core_Species_Richness_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1994.tif
-EBS_IDW_Core_Species_Richness_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1995.tif
-EBS_IDW_Core_Species_Richness_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1996.tif
-EBS_IDW_Core_Species_Richness_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1997.tif
-EBS_IDW_Core_Species_Richness_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1998.tif
-EBS_IDW_Core_Species_Richness_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_1999.tif
-EBS_IDW_Core_Species_Richness_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2000.tif
-EBS_IDW_Core_Species_Richness_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2001.tif
-EBS_IDW_Core_Species_Richness_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2002.tif
-EBS_IDW_Core_Species_Richness_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2003.tif
-EBS_IDW_Core_Species_Richness_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2004.tif
-EBS_IDW_Core_Species_Richness_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2005.tif
-EBS_IDW_Core_Species_Richness_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2006.tif
-EBS_IDW_Core_Species_Richness_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2007.tif
-EBS_IDW_Core_Species_Richness_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2008.tif
-EBS_IDW_Core_Species_Richness_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2009.tif
-EBS_IDW_Core_Species_Richness_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2010.tif
-EBS_IDW_Core_Species_Richness_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2011.tif
-EBS_IDW_Core_Species_Richness_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2012.tif
-EBS_IDW_Core_Species_Richness_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2013.tif
-EBS_IDW_Core_Species_Richness_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2014.tif
-EBS_IDW_Core_Species_Richness_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2015.tif
-EBS_IDW_Core_Species_Richness_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2016.tif
-EBS_IDW_Core_Species_Richness_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2017.tif
-EBS_IDW_Core_Species_Richness_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2018.tif
-EBS_IDW_Core_Species_Richness_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2019.tif
-EBS_IDW_Core_Species_Richness_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2021.tif
-EBS_IDW_Core_Species_Richness_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2022.tif
-EBS_IDW_Core_Species_Richness_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2023.tif
-EBS_IDW_Core_Species_Richness_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:31:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Core Species Richness\EBS_IDW_Core_Species_Richness_2024.tif
-EBS_IDW_Species_Richness_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1987.tif
-EBS_IDW_Species_Richness_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1988.tif
-EBS_IDW_Species_Richness_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1989.tif
-EBS_IDW_Species_Richness_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1990.tif
-EBS_IDW_Species_Richness_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1991.tif
-EBS_IDW_Species_Richness_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1992.tif
-EBS_IDW_Species_Richness_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1993.tif
-EBS_IDW_Species_Richness_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1994.tif
-EBS_IDW_Species_Richness_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1995.tif
-EBS_IDW_Species_Richness_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1996.tif
-EBS_IDW_Species_Richness_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1997.tif
-EBS_IDW_Species_Richness_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1998.tif
-EBS_IDW_Species_Richness_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_1999.tif
-EBS_IDW_Species_Richness_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2000.tif
-EBS_IDW_Species_Richness_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2001.tif
-EBS_IDW_Species_Richness_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2002.tif
-EBS_IDW_Species_Richness_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2003.tif
-EBS_IDW_Species_Richness_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2004.tif
-EBS_IDW_Species_Richness_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2005.tif
-EBS_IDW_Species_Richness_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2006.tif
-EBS_IDW_Species_Richness_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2007.tif
-EBS_IDW_Species_Richness_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2008.tif
-EBS_IDW_Species_Richness_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2009.tif
-EBS_IDW_Species_Richness_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2010.tif
-EBS_IDW_Species_Richness_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2011.tif
-EBS_IDW_Species_Richness_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2012.tif
-EBS_IDW_Species_Richness_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2013.tif
-EBS_IDW_Species_Richness_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2014.tif
-EBS_IDW_Species_Richness_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2015.tif
-EBS_IDW_Species_Richness_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2016.tif
-EBS_IDW_Species_Richness_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2017.tif
-EBS_IDW_Species_Richness_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2018.tif
-EBS_IDW_Species_Richness_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2019.tif
-EBS_IDW_Species_Richness_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2021.tif
-EBS_IDW_Species_Richness_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2022.tif
-EBS_IDW_Species_Richness_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2023.tif
-EBS_IDW_Species_Richness_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\EBS_IDW\_Species Richness\EBS_IDW_Species_Richness_2024.tif
-ENBS_IDW_Arctoraja_parmifera_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Arctoraja parmifera\ENBS_IDW_Arctoraja_parmifera_2010.tif
-ENBS_IDW_Arctoraja_parmifera_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Arctoraja parmifera\ENBS_IDW_Arctoraja_parmifera_2017.tif
-ENBS_IDW_Arctoraja_parmifera_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Arctoraja parmifera\ENBS_IDW_Arctoraja_parmifera_2019.tif
-ENBS_IDW_Arctoraja_parmifera_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Arctoraja parmifera\ENBS_IDW_Arctoraja_parmifera_2021.tif
-ENBS_IDW_Arctoraja_parmifera_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Arctoraja parmifera\ENBS_IDW_Arctoraja_parmifera_2022.tif
-ENBS_IDW_Arctoraja_parmifera_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Arctoraja parmifera\ENBS_IDW_Arctoraja_parmifera_2023.tif
-ENBS_IDW_Aspidophoroides_monopterygius_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Aspidophoroides monopterygius\ENBS_IDW_Aspidophoroides_monopterygius_2010.tif
-ENBS_IDW_Aspidophoroides_monopterygius_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Aspidophoroides monopterygius\ENBS_IDW_Aspidophoroides_monopterygius_2017.tif
-ENBS_IDW_Aspidophoroides_monopterygius_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Aspidophoroides monopterygius\ENBS_IDW_Aspidophoroides_monopterygius_2019.tif
-ENBS_IDW_Aspidophoroides_monopterygius_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Aspidophoroides monopterygius\ENBS_IDW_Aspidophoroides_monopterygius_2021.tif
-ENBS_IDW_Aspidophoroides_monopterygius_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Aspidophoroides monopterygius\ENBS_IDW_Aspidophoroides_monopterygius_2022.tif
-ENBS_IDW_Aspidophoroides_monopterygius_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Aspidophoroides monopterygius\ENBS_IDW_Aspidophoroides_monopterygius_2023.tif
-ENBS_IDW_Asterias_amurensis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Asterias amurensis\ENBS_IDW_Asterias_amurensis_2010.tif
-ENBS_IDW_Asterias_amurensis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Asterias amurensis\ENBS_IDW_Asterias_amurensis_2017.tif
-ENBS_IDW_Asterias_amurensis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Asterias amurensis\ENBS_IDW_Asterias_amurensis_2019.tif
-ENBS_IDW_Asterias_amurensis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Asterias amurensis\ENBS_IDW_Asterias_amurensis_2021.tif
-ENBS_IDW_Asterias_amurensis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Asterias amurensis\ENBS_IDW_Asterias_amurensis_2022.tif
-ENBS_IDW_Asterias_amurensis_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Asterias amurensis\ENBS_IDW_Asterias_amurensis_2023.tif
-ENBS_IDW_Bathymaster_signatus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Bathymaster signatus\ENBS_IDW_Bathymaster_signatus_2010.tif
-ENBS_IDW_Bathymaster_signatus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Bathymaster signatus\ENBS_IDW_Bathymaster_signatus_2017.tif
-ENBS_IDW_Bathymaster_signatus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Bathymaster signatus\ENBS_IDW_Bathymaster_signatus_2019.tif
-ENBS_IDW_Bathymaster_signatus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Bathymaster signatus\ENBS_IDW_Bathymaster_signatus_2021.tif
-ENBS_IDW_Bathymaster_signatus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Bathymaster signatus\ENBS_IDW_Bathymaster_signatus_2022.tif
-ENBS_IDW_Bathymaster_signatus_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Bathymaster signatus\ENBS_IDW_Bathymaster_signatus_2023.tif
-ENBS_IDW_Chionoecetes_bairdi_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Chionoecetes bairdi\ENBS_IDW_Chionoecetes_bairdi_2010.tif
-ENBS_IDW_Chionoecetes_bairdi_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Chionoecetes bairdi\ENBS_IDW_Chionoecetes_bairdi_2017.tif
-ENBS_IDW_Chionoecetes_bairdi_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Chionoecetes bairdi\ENBS_IDW_Chionoecetes_bairdi_2019.tif
-ENBS_IDW_Chionoecetes_bairdi_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Chionoecetes bairdi\ENBS_IDW_Chionoecetes_bairdi_2021.tif
-ENBS_IDW_Chionoecetes_bairdi_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Chionoecetes bairdi\ENBS_IDW_Chionoecetes_bairdi_2022.tif
-ENBS_IDW_Chionoecetes_bairdi_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Chionoecetes bairdi\ENBS_IDW_Chionoecetes_bairdi_2023.tif
-ENBS_IDW_Chionoecetes_opilio_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Chionoecetes opilio\ENBS_IDW_Chionoecetes_opilio_2010.tif
-ENBS_IDW_Chionoecetes_opilio_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Chionoecetes opilio\ENBS_IDW_Chionoecetes_opilio_2017.tif
-ENBS_IDW_Chionoecetes_opilio_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Chionoecetes opilio\ENBS_IDW_Chionoecetes_opilio_2019.tif
-ENBS_IDW_Chionoecetes_opilio_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Chionoecetes opilio\ENBS_IDW_Chionoecetes_opilio_2021.tif
-ENBS_IDW_Chionoecetes_opilio_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Chionoecetes opilio\ENBS_IDW_Chionoecetes_opilio_2022.tif
-ENBS_IDW_Chionoecetes_opilio_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Chionoecetes opilio\ENBS_IDW_Chionoecetes_opilio_2023.tif
-ENBS_IDW_Clupea_pallasii_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Clupea pallasii\ENBS_IDW_Clupea_pallasii_2010.tif
-ENBS_IDW_Clupea_pallasii_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Clupea pallasii\ENBS_IDW_Clupea_pallasii_2017.tif
-ENBS_IDW_Clupea_pallasii_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Clupea pallasii\ENBS_IDW_Clupea_pallasii_2019.tif
-ENBS_IDW_Clupea_pallasii_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Clupea pallasii\ENBS_IDW_Clupea_pallasii_2021.tif
-ENBS_IDW_Clupea_pallasii_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Clupea pallasii\ENBS_IDW_Clupea_pallasii_2022.tif
-ENBS_IDW_Clupea_pallasii_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Clupea pallasii\ENBS_IDW_Clupea_pallasii_2023.tif
-ENBS_IDW_Crossaster_papposus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Crossaster papposus\ENBS_IDW_Crossaster_papposus_2010.tif
-ENBS_IDW_Crossaster_papposus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Crossaster papposus\ENBS_IDW_Crossaster_papposus_2017.tif
-ENBS_IDW_Crossaster_papposus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Crossaster papposus\ENBS_IDW_Crossaster_papposus_2019.tif
-ENBS_IDW_Crossaster_papposus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Crossaster papposus\ENBS_IDW_Crossaster_papposus_2021.tif
-ENBS_IDW_Crossaster_papposus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Crossaster papposus\ENBS_IDW_Crossaster_papposus_2022.tif
-ENBS_IDW_Crossaster_papposus_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Crossaster papposus\ENBS_IDW_Crossaster_papposus_2023.tif
-ENBS_IDW_Ctenodiscus_crispatus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Ctenodiscus crispatus\ENBS_IDW_Ctenodiscus_crispatus_2010.tif
-ENBS_IDW_Ctenodiscus_crispatus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Ctenodiscus crispatus\ENBS_IDW_Ctenodiscus_crispatus_2017.tif
-ENBS_IDW_Ctenodiscus_crispatus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Ctenodiscus crispatus\ENBS_IDW_Ctenodiscus_crispatus_2019.tif
-ENBS_IDW_Ctenodiscus_crispatus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Ctenodiscus crispatus\ENBS_IDW_Ctenodiscus_crispatus_2021.tif
-ENBS_IDW_Ctenodiscus_crispatus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Ctenodiscus crispatus\ENBS_IDW_Ctenodiscus_crispatus_2022.tif
-ENBS_IDW_Ctenodiscus_crispatus_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Ctenodiscus crispatus\ENBS_IDW_Ctenodiscus_crispatus_2023.tif
-ENBS_IDW_Dasycottus_setiger_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Dasycottus setiger\ENBS_IDW_Dasycottus_setiger_2010.tif
-ENBS_IDW_Dasycottus_setiger_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Dasycottus setiger\ENBS_IDW_Dasycottus_setiger_2017.tif
-ENBS_IDW_Dasycottus_setiger_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Dasycottus setiger\ENBS_IDW_Dasycottus_setiger_2019.tif
-ENBS_IDW_Dasycottus_setiger_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Dasycottus setiger\ENBS_IDW_Dasycottus_setiger_2021.tif
-ENBS_IDW_Dasycottus_setiger_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Dasycottus setiger\ENBS_IDW_Dasycottus_setiger_2022.tif
-ENBS_IDW_Dasycottus_setiger_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Dasycottus setiger\ENBS_IDW_Dasycottus_setiger_2023.tif
-ENBS_IDW_Eleginus_gracilis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Eleginus gracilis\ENBS_IDW_Eleginus_gracilis_2010.tif
-ENBS_IDW_Eleginus_gracilis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:15:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Eleginus gracilis\ENBS_IDW_Eleginus_gracilis_2017.tif
-ENBS_IDW_Eleginus_gracilis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Eleginus gracilis\ENBS_IDW_Eleginus_gracilis_2019.tif
-ENBS_IDW_Eleginus_gracilis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Eleginus gracilis\ENBS_IDW_Eleginus_gracilis_2021.tif
-ENBS_IDW_Eleginus_gracilis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Eleginus gracilis\ENBS_IDW_Eleginus_gracilis_2022.tif
-ENBS_IDW_Eleginus_gracilis_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Eleginus gracilis\ENBS_IDW_Eleginus_gracilis_2023.tif
-ENBS_IDW_Erimacrus_isenbeckii_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Erimacrus isenbeckii\ENBS_IDW_Erimacrus_isenbeckii_2010.tif
-ENBS_IDW_Erimacrus_isenbeckii_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Erimacrus isenbeckii\ENBS_IDW_Erimacrus_isenbeckii_2017.tif
-ENBS_IDW_Erimacrus_isenbeckii_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Erimacrus isenbeckii\ENBS_IDW_Erimacrus_isenbeckii_2019.tif
-ENBS_IDW_Erimacrus_isenbeckii_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Erimacrus isenbeckii\ENBS_IDW_Erimacrus_isenbeckii_2021.tif
-ENBS_IDW_Erimacrus_isenbeckii_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Erimacrus isenbeckii\ENBS_IDW_Erimacrus_isenbeckii_2022.tif
-ENBS_IDW_Erimacrus_isenbeckii_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Erimacrus isenbeckii\ENBS_IDW_Erimacrus_isenbeckii_2023.tif
-ENBS_IDW_Evasterias_echinosoma_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Evasterias echinosoma\ENBS_IDW_Evasterias_echinosoma_2010.tif
-ENBS_IDW_Evasterias_echinosoma_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Evasterias echinosoma\ENBS_IDW_Evasterias_echinosoma_2017.tif
-ENBS_IDW_Evasterias_echinosoma_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Evasterias echinosoma\ENBS_IDW_Evasterias_echinosoma_2019.tif
-ENBS_IDW_Evasterias_echinosoma_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Evasterias echinosoma\ENBS_IDW_Evasterias_echinosoma_2021.tif
-ENBS_IDW_Evasterias_echinosoma_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Evasterias echinosoma\ENBS_IDW_Evasterias_echinosoma_2022.tif
-ENBS_IDW_Evasterias_echinosoma_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Evasterias echinosoma\ENBS_IDW_Evasterias_echinosoma_2023.tif
-ENBS_IDW_Gadus_chalcogrammus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gadus chalcogrammus\ENBS_IDW_Gadus_chalcogrammus_2010.tif
-ENBS_IDW_Gadus_chalcogrammus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gadus chalcogrammus\ENBS_IDW_Gadus_chalcogrammus_2017.tif
-ENBS_IDW_Gadus_chalcogrammus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gadus chalcogrammus\ENBS_IDW_Gadus_chalcogrammus_2019.tif
-ENBS_IDW_Gadus_chalcogrammus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gadus chalcogrammus\ENBS_IDW_Gadus_chalcogrammus_2021.tif
-ENBS_IDW_Gadus_chalcogrammus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gadus chalcogrammus\ENBS_IDW_Gadus_chalcogrammus_2022.tif
-ENBS_IDW_Gadus_chalcogrammus_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gadus chalcogrammus\ENBS_IDW_Gadus_chalcogrammus_2023.tif
-ENBS_IDW_Gadus_macrocephalus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gadus macrocephalus\ENBS_IDW_Gadus_macrocephalus_2010.tif
-ENBS_IDW_Gadus_macrocephalus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gadus macrocephalus\ENBS_IDW_Gadus_macrocephalus_2017.tif
-ENBS_IDW_Gadus_macrocephalus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gadus macrocephalus\ENBS_IDW_Gadus_macrocephalus_2019.tif
-ENBS_IDW_Gadus_macrocephalus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gadus macrocephalus\ENBS_IDW_Gadus_macrocephalus_2021.tif
-ENBS_IDW_Gadus_macrocephalus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gadus macrocephalus\ENBS_IDW_Gadus_macrocephalus_2022.tif
-ENBS_IDW_Gadus_macrocephalus_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gadus macrocephalus\ENBS_IDW_Gadus_macrocephalus_2023.tif
-ENBS_IDW_Glyptocephalus_zachirus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Glyptocephalus zachirus\ENBS_IDW_Glyptocephalus_zachirus_2010.tif
-ENBS_IDW_Glyptocephalus_zachirus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Glyptocephalus zachirus\ENBS_IDW_Glyptocephalus_zachirus_2017.tif
-ENBS_IDW_Glyptocephalus_zachirus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Glyptocephalus zachirus\ENBS_IDW_Glyptocephalus_zachirus_2019.tif
-ENBS_IDW_Glyptocephalus_zachirus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Glyptocephalus zachirus\ENBS_IDW_Glyptocephalus_zachirus_2021.tif
-ENBS_IDW_Glyptocephalus_zachirus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Glyptocephalus zachirus\ENBS_IDW_Glyptocephalus_zachirus_2022.tif
-ENBS_IDW_Glyptocephalus_zachirus_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Glyptocephalus zachirus\ENBS_IDW_Glyptocephalus_zachirus_2023.tif
-ENBS_IDW_Gorgonocephalus_eucnemis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gorgonocephalus eucnemis\ENBS_IDW_Gorgonocephalus_eucnemis_2010.tif
-ENBS_IDW_Gorgonocephalus_eucnemis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gorgonocephalus eucnemis\ENBS_IDW_Gorgonocephalus_eucnemis_2017.tif
-ENBS_IDW_Gorgonocephalus_eucnemis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gorgonocephalus eucnemis\ENBS_IDW_Gorgonocephalus_eucnemis_2019.tif
-ENBS_IDW_Gorgonocephalus_eucnemis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gorgonocephalus eucnemis\ENBS_IDW_Gorgonocephalus_eucnemis_2021.tif
-ENBS_IDW_Gorgonocephalus_eucnemis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gorgonocephalus eucnemis\ENBS_IDW_Gorgonocephalus_eucnemis_2022.tif
-ENBS_IDW_Gorgonocephalus_eucnemis_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gorgonocephalus eucnemis\ENBS_IDW_Gorgonocephalus_eucnemis_2023.tif
-ENBS_IDW_Gymnocanthus_pistilliger_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gymnocanthus pistilliger\ENBS_IDW_Gymnocanthus_pistilliger_2010.tif
-ENBS_IDW_Gymnocanthus_pistilliger_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gymnocanthus pistilliger\ENBS_IDW_Gymnocanthus_pistilliger_2017.tif
-ENBS_IDW_Gymnocanthus_pistilliger_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gymnocanthus pistilliger\ENBS_IDW_Gymnocanthus_pistilliger_2019.tif
-ENBS_IDW_Gymnocanthus_pistilliger_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gymnocanthus pistilliger\ENBS_IDW_Gymnocanthus_pistilliger_2021.tif
-ENBS_IDW_Gymnocanthus_pistilliger_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gymnocanthus pistilliger\ENBS_IDW_Gymnocanthus_pistilliger_2022.tif
-ENBS_IDW_Gymnocanthus_pistilliger_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Gymnocanthus pistilliger\ENBS_IDW_Gymnocanthus_pistilliger_2023.tif
-ENBS_IDW_Hemilepidotus_jordani_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hemilepidotus jordani\ENBS_IDW_Hemilepidotus_jordani_2010.tif
-ENBS_IDW_Hemilepidotus_jordani_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hemilepidotus jordani\ENBS_IDW_Hemilepidotus_jordani_2017.tif
-ENBS_IDW_Hemilepidotus_jordani_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hemilepidotus jordani\ENBS_IDW_Hemilepidotus_jordani_2019.tif
-ENBS_IDW_Hemilepidotus_jordani_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hemilepidotus jordani\ENBS_IDW_Hemilepidotus_jordani_2021.tif
-ENBS_IDW_Hemilepidotus_jordani_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hemilepidotus jordani\ENBS_IDW_Hemilepidotus_jordani_2022.tif
-ENBS_IDW_Hemilepidotus_jordani_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hemilepidotus jordani\ENBS_IDW_Hemilepidotus_jordani_2023.tif
-ENBS_IDW_Hemitripterus_bolini_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hemitripterus bolini\ENBS_IDW_Hemitripterus_bolini_2010.tif
-ENBS_IDW_Hemitripterus_bolini_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hemitripterus bolini\ENBS_IDW_Hemitripterus_bolini_2017.tif
-ENBS_IDW_Hemitripterus_bolini_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hemitripterus bolini\ENBS_IDW_Hemitripterus_bolini_2019.tif
-ENBS_IDW_Hemitripterus_bolini_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hemitripterus bolini\ENBS_IDW_Hemitripterus_bolini_2021.tif
-ENBS_IDW_Hemitripterus_bolini_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hemitripterus bolini\ENBS_IDW_Hemitripterus_bolini_2022.tif
-ENBS_IDW_Hemitripterus_bolini_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hemitripterus bolini\ENBS_IDW_Hemitripterus_bolini_2023.tif
-ENBS_IDW_Hippoglossus_stenolepis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hippoglossus stenolepis\ENBS_IDW_Hippoglossus_stenolepis_2010.tif
-ENBS_IDW_Hippoglossus_stenolepis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hippoglossus stenolepis\ENBS_IDW_Hippoglossus_stenolepis_2017.tif
-ENBS_IDW_Hippoglossus_stenolepis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hippoglossus stenolepis\ENBS_IDW_Hippoglossus_stenolepis_2019.tif
-ENBS_IDW_Hippoglossus_stenolepis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hippoglossus stenolepis\ENBS_IDW_Hippoglossus_stenolepis_2021.tif
-ENBS_IDW_Hippoglossus_stenolepis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hippoglossus stenolepis\ENBS_IDW_Hippoglossus_stenolepis_2022.tif
-ENBS_IDW_Hippoglossus_stenolepis_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hippoglossus stenolepis\ENBS_IDW_Hippoglossus_stenolepis_2023.tif
-ENBS_IDW_Hyas_coarctatus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hyas coarctatus\ENBS_IDW_Hyas_coarctatus_2010.tif
-ENBS_IDW_Hyas_coarctatus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hyas coarctatus\ENBS_IDW_Hyas_coarctatus_2017.tif
-ENBS_IDW_Hyas_coarctatus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hyas coarctatus\ENBS_IDW_Hyas_coarctatus_2019.tif
-ENBS_IDW_Hyas_coarctatus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hyas coarctatus\ENBS_IDW_Hyas_coarctatus_2021.tif
-ENBS_IDW_Hyas_coarctatus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hyas coarctatus\ENBS_IDW_Hyas_coarctatus_2022.tif
-ENBS_IDW_Hyas_coarctatus_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hyas coarctatus\ENBS_IDW_Hyas_coarctatus_2023.tif
-ENBS_IDW_Hyas_lyratus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hyas lyratus\ENBS_IDW_Hyas_lyratus_2010.tif
-ENBS_IDW_Hyas_lyratus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hyas lyratus\ENBS_IDW_Hyas_lyratus_2017.tif
-ENBS_IDW_Hyas_lyratus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hyas lyratus\ENBS_IDW_Hyas_lyratus_2019.tif
-ENBS_IDW_Hyas_lyratus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hyas lyratus\ENBS_IDW_Hyas_lyratus_2021.tif
-ENBS_IDW_Hyas_lyratus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hyas lyratus\ENBS_IDW_Hyas_lyratus_2022.tif
-ENBS_IDW_Hyas_lyratus_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Hyas lyratus\ENBS_IDW_Hyas_lyratus_2023.tif
-ENBS_IDW_Icelus_spiniger_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Icelus spiniger\ENBS_IDW_Icelus_spiniger_2010.tif
-ENBS_IDW_Icelus_spiniger_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Icelus spiniger\ENBS_IDW_Icelus_spiniger_2017.tif
-ENBS_IDW_Icelus_spiniger_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Icelus spiniger\ENBS_IDW_Icelus_spiniger_2019.tif
-ENBS_IDW_Icelus_spiniger_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Icelus spiniger\ENBS_IDW_Icelus_spiniger_2021.tif
-ENBS_IDW_Icelus_spiniger_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Icelus spiniger\ENBS_IDW_Icelus_spiniger_2022.tif
-ENBS_IDW_Icelus_spiniger_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Icelus spiniger\ENBS_IDW_Icelus_spiniger_2023.tif
-ENBS_IDW_Labidochirus_splendescens_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Labidochirus splendescens\ENBS_IDW_Labidochirus_splendescens_2010.tif
-ENBS_IDW_Labidochirus_splendescens_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Labidochirus splendescens\ENBS_IDW_Labidochirus_splendescens_2017.tif
-ENBS_IDW_Labidochirus_splendescens_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Labidochirus splendescens\ENBS_IDW_Labidochirus_splendescens_2019.tif
-ENBS_IDW_Labidochirus_splendescens_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Labidochirus splendescens\ENBS_IDW_Labidochirus_splendescens_2021.tif
-ENBS_IDW_Labidochirus_splendescens_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Labidochirus splendescens\ENBS_IDW_Labidochirus_splendescens_2022.tif
-ENBS_IDW_Labidochirus_splendescens_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Labidochirus splendescens\ENBS_IDW_Labidochirus_splendescens_2023.tif
-ENBS_IDW_Lepidopsetta_sp_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lepidopsetta sp\ENBS_IDW_Lepidopsetta_sp_2010.tif
-ENBS_IDW_Lepidopsetta_sp_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lepidopsetta sp\ENBS_IDW_Lepidopsetta_sp_2017.tif
-ENBS_IDW_Lepidopsetta_sp_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lepidopsetta sp\ENBS_IDW_Lepidopsetta_sp_2019.tif
-ENBS_IDW_Lepidopsetta_sp_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lepidopsetta sp\ENBS_IDW_Lepidopsetta_sp_2021.tif
-ENBS_IDW_Lepidopsetta_sp_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lepidopsetta sp\ENBS_IDW_Lepidopsetta_sp_2022.tif
-ENBS_IDW_Lepidopsetta_sp_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lepidopsetta sp\ENBS_IDW_Lepidopsetta_sp_2023.tif
-ENBS_IDW_Leptasterias_arctica_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Leptasterias arctica\ENBS_IDW_Leptasterias_arctica_2010.tif
-ENBS_IDW_Leptasterias_arctica_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Leptasterias arctica\ENBS_IDW_Leptasterias_arctica_2017.tif
-ENBS_IDW_Leptasterias_arctica_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Leptasterias arctica\ENBS_IDW_Leptasterias_arctica_2019.tif
-ENBS_IDW_Leptasterias_arctica_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Leptasterias arctica\ENBS_IDW_Leptasterias_arctica_2021.tif
-ENBS_IDW_Leptasterias_arctica_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Leptasterias arctica\ENBS_IDW_Leptasterias_arctica_2022.tif
-ENBS_IDW_Leptasterias_arctica_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Leptasterias arctica\ENBS_IDW_Leptasterias_arctica_2023.tif
-ENBS_IDW_Lethasterias_nanimensis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lethasterias nanimensis\ENBS_IDW_Lethasterias_nanimensis_2010.tif
-ENBS_IDW_Lethasterias_nanimensis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lethasterias nanimensis\ENBS_IDW_Lethasterias_nanimensis_2017.tif
-ENBS_IDW_Lethasterias_nanimensis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lethasterias nanimensis\ENBS_IDW_Lethasterias_nanimensis_2019.tif
-ENBS_IDW_Lethasterias_nanimensis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lethasterias nanimensis\ENBS_IDW_Lethasterias_nanimensis_2021.tif
-ENBS_IDW_Lethasterias_nanimensis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lethasterias nanimensis\ENBS_IDW_Lethasterias_nanimensis_2022.tif
-ENBS_IDW_Lethasterias_nanimensis_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lethasterias nanimensis\ENBS_IDW_Lethasterias_nanimensis_2023.tif
-ENBS_IDW_Limanda_aspera_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Limanda aspera\ENBS_IDW_Limanda_aspera_2010.tif
-ENBS_IDW_Limanda_aspera_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Limanda aspera\ENBS_IDW_Limanda_aspera_2017.tif
-ENBS_IDW_Limanda_aspera_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Limanda aspera\ENBS_IDW_Limanda_aspera_2019.tif
-ENBS_IDW_Limanda_aspera_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Limanda aspera\ENBS_IDW_Limanda_aspera_2021.tif
-ENBS_IDW_Limanda_aspera_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Limanda aspera\ENBS_IDW_Limanda_aspera_2022.tif
-ENBS_IDW_Limanda_aspera_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Limanda aspera\ENBS_IDW_Limanda_aspera_2023.tif
-ENBS_IDW_Limanda_sakhalinensis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Limanda sakhalinensis\ENBS_IDW_Limanda_sakhalinensis_2010.tif
-ENBS_IDW_Limanda_sakhalinensis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Limanda sakhalinensis\ENBS_IDW_Limanda_sakhalinensis_2017.tif
-ENBS_IDW_Limanda_sakhalinensis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Limanda sakhalinensis\ENBS_IDW_Limanda_sakhalinensis_2019.tif
-ENBS_IDW_Limanda_sakhalinensis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Limanda sakhalinensis\ENBS_IDW_Limanda_sakhalinensis_2021.tif
-ENBS_IDW_Limanda_sakhalinensis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Limanda sakhalinensis\ENBS_IDW_Limanda_sakhalinensis_2022.tif
-ENBS_IDW_Limanda_sakhalinensis_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Limanda sakhalinensis\ENBS_IDW_Limanda_sakhalinensis_2023.tif
-ENBS_IDW_Lumpenus_fabricii_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lumpenus fabricii\ENBS_IDW_Lumpenus_fabricii_2010.tif
-ENBS_IDW_Lumpenus_fabricii_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lumpenus fabricii\ENBS_IDW_Lumpenus_fabricii_2017.tif
-ENBS_IDW_Lumpenus_fabricii_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lumpenus fabricii\ENBS_IDW_Lumpenus_fabricii_2019.tif
-ENBS_IDW_Lumpenus_fabricii_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lumpenus fabricii\ENBS_IDW_Lumpenus_fabricii_2021.tif
-ENBS_IDW_Lumpenus_fabricii_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lumpenus fabricii\ENBS_IDW_Lumpenus_fabricii_2022.tif
-ENBS_IDW_Lumpenus_fabricii_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lumpenus fabricii\ENBS_IDW_Lumpenus_fabricii_2023.tif
-ENBS_IDW_Lycodes_brevipes_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lycodes brevipes\ENBS_IDW_Lycodes_brevipes_2010.tif
-ENBS_IDW_Lycodes_brevipes_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lycodes brevipes\ENBS_IDW_Lycodes_brevipes_2017.tif
-ENBS_IDW_Lycodes_brevipes_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lycodes brevipes\ENBS_IDW_Lycodes_brevipes_2019.tif
-ENBS_IDW_Lycodes_brevipes_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lycodes brevipes\ENBS_IDW_Lycodes_brevipes_2021.tif
-ENBS_IDW_Lycodes_brevipes_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lycodes brevipes\ENBS_IDW_Lycodes_brevipes_2022.tif
-ENBS_IDW_Lycodes_brevipes_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lycodes brevipes\ENBS_IDW_Lycodes_brevipes_2023.tif
-ENBS_IDW_Lycodes_palearis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lycodes palearis\ENBS_IDW_Lycodes_palearis_2010.tif
-ENBS_IDW_Lycodes_palearis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lycodes palearis\ENBS_IDW_Lycodes_palearis_2017.tif
-ENBS_IDW_Lycodes_palearis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lycodes palearis\ENBS_IDW_Lycodes_palearis_2019.tif
-ENBS_IDW_Lycodes_palearis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lycodes palearis\ENBS_IDW_Lycodes_palearis_2021.tif
-ENBS_IDW_Lycodes_palearis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lycodes palearis\ENBS_IDW_Lycodes_palearis_2022.tif
-ENBS_IDW_Lycodes_palearis_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Lycodes palearis\ENBS_IDW_Lycodes_palearis_2023.tif
-ENBS_IDW_Mallotus_villosus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Mallotus villosus\ENBS_IDW_Mallotus_villosus_2010.tif
-ENBS_IDW_Mallotus_villosus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Mallotus villosus\ENBS_IDW_Mallotus_villosus_2017.tif
-ENBS_IDW_Mallotus_villosus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Mallotus villosus\ENBS_IDW_Mallotus_villosus_2019.tif
-ENBS_IDW_Mallotus_villosus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Mallotus villosus\ENBS_IDW_Mallotus_villosus_2021.tif
-ENBS_IDW_Mallotus_villosus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Mallotus villosus\ENBS_IDW_Mallotus_villosus_2022.tif
-ENBS_IDW_Mallotus_villosus_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Mallotus villosus\ENBS_IDW_Mallotus_villosus_2023.tif
-ENBS_IDW_Myoxocephalus_jaok_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myoxocephalus jaok\ENBS_IDW_Myoxocephalus_jaok_2010.tif
-ENBS_IDW_Myoxocephalus_jaok_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myoxocephalus jaok\ENBS_IDW_Myoxocephalus_jaok_2017.tif
-ENBS_IDW_Myoxocephalus_jaok_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myoxocephalus jaok\ENBS_IDW_Myoxocephalus_jaok_2019.tif
-ENBS_IDW_Myoxocephalus_jaok_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myoxocephalus jaok\ENBS_IDW_Myoxocephalus_jaok_2021.tif
-ENBS_IDW_Myoxocephalus_jaok_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myoxocephalus jaok\ENBS_IDW_Myoxocephalus_jaok_2022.tif
-ENBS_IDW_Myoxocephalus_jaok_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myoxocephalus jaok\ENBS_IDW_Myoxocephalus_jaok_2023.tif
-ENBS_IDW_Myoxocephalus_polyacanthocephalus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myoxocephalus polyacanthocephalus\ENBS_IDW_Myoxocephalus_polyacanthocephalus_2010.tif
-ENBS_IDW_Myoxocephalus_polyacanthocephalus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myoxocephalus polyacanthocephalus\ENBS_IDW_Myoxocephalus_polyacanthocephalus_2017.tif
-ENBS_IDW_Myoxocephalus_polyacanthocephalus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myoxocephalus polyacanthocephalus\ENBS_IDW_Myoxocephalus_polyacanthocephalus_2019.tif
-ENBS_IDW_Myoxocephalus_polyacanthocephalus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myoxocephalus polyacanthocephalus\ENBS_IDW_Myoxocephalus_polyacanthocephalus_2021.tif
-ENBS_IDW_Myoxocephalus_polyacanthocephalus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myoxocephalus polyacanthocephalus\ENBS_IDW_Myoxocephalus_polyacanthocephalus_2022.tif
-ENBS_IDW_Myoxocephalus_polyacanthocephalus_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myoxocephalus polyacanthocephalus\ENBS_IDW_Myoxocephalus_polyacanthocephalus_2023.tif
-ENBS_IDW_Myoxocephalus_scorpius_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myoxocephalus scorpius\ENBS_IDW_Myoxocephalus_scorpius_2010.tif
-ENBS_IDW_Myoxocephalus_scorpius_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myoxocephalus scorpius\ENBS_IDW_Myoxocephalus_scorpius_2017.tif
-ENBS_IDW_Myoxocephalus_scorpius_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myoxocephalus scorpius\ENBS_IDW_Myoxocephalus_scorpius_2019.tif
-ENBS_IDW_Myoxocephalus_scorpius_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myoxocephalus scorpius\ENBS_IDW_Myoxocephalus_scorpius_2021.tif
-ENBS_IDW_Myoxocephalus_scorpius_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myoxocephalus scorpius\ENBS_IDW_Myoxocephalus_scorpius_2022.tif
-ENBS_IDW_Myoxocephalus_scorpius_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myoxocephalus scorpius\ENBS_IDW_Myoxocephalus_scorpius_2023.tif
-ENBS_IDW_Myzopsetta_proboscidea_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myzopsetta proboscidea\ENBS_IDW_Myzopsetta_proboscidea_2010.tif
-ENBS_IDW_Myzopsetta_proboscidea_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myzopsetta proboscidea\ENBS_IDW_Myzopsetta_proboscidea_2017.tif
-ENBS_IDW_Myzopsetta_proboscidea_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myzopsetta proboscidea\ENBS_IDW_Myzopsetta_proboscidea_2019.tif
-ENBS_IDW_Myzopsetta_proboscidea_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myzopsetta proboscidea\ENBS_IDW_Myzopsetta_proboscidea_2021.tif
-ENBS_IDW_Myzopsetta_proboscidea_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myzopsetta proboscidea\ENBS_IDW_Myzopsetta_proboscidea_2022.tif
-ENBS_IDW_Myzopsetta_proboscidea_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Myzopsetta proboscidea\ENBS_IDW_Myzopsetta_proboscidea_2023.tif
-ENBS_IDW_Occella_dodecaedron_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Occella dodecaedron\ENBS_IDW_Occella_dodecaedron_2010.tif
-ENBS_IDW_Occella_dodecaedron_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Occella dodecaedron\ENBS_IDW_Occella_dodecaedron_2017.tif
-ENBS_IDW_Occella_dodecaedron_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Occella dodecaedron\ENBS_IDW_Occella_dodecaedron_2019.tif
-ENBS_IDW_Occella_dodecaedron_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Occella dodecaedron\ENBS_IDW_Occella_dodecaedron_2021.tif
-ENBS_IDW_Occella_dodecaedron_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Occella dodecaedron\ENBS_IDW_Occella_dodecaedron_2022.tif
-ENBS_IDW_Occella_dodecaedron_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Occella dodecaedron\ENBS_IDW_Occella_dodecaedron_2023.tif
-ENBS_IDW_Oregonia_gracilis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Oregonia gracilis\ENBS_IDW_Oregonia_gracilis_2010.tif
-ENBS_IDW_Oregonia_gracilis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Oregonia gracilis\ENBS_IDW_Oregonia_gracilis_2017.tif
-ENBS_IDW_Oregonia_gracilis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Oregonia gracilis\ENBS_IDW_Oregonia_gracilis_2019.tif
-ENBS_IDW_Oregonia_gracilis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Oregonia gracilis\ENBS_IDW_Oregonia_gracilis_2021.tif
-ENBS_IDW_Oregonia_gracilis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Oregonia gracilis\ENBS_IDW_Oregonia_gracilis_2022.tif
-ENBS_IDW_Oregonia_gracilis_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Oregonia gracilis\ENBS_IDW_Oregonia_gracilis_2023.tif
-ENBS_IDW_Osmerus_mordax_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Osmerus mordax\ENBS_IDW_Osmerus_mordax_2010.tif
-ENBS_IDW_Osmerus_mordax_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Osmerus mordax\ENBS_IDW_Osmerus_mordax_2017.tif
-ENBS_IDW_Osmerus_mordax_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Osmerus mordax\ENBS_IDW_Osmerus_mordax_2019.tif
-ENBS_IDW_Osmerus_mordax_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Osmerus mordax\ENBS_IDW_Osmerus_mordax_2021.tif
-ENBS_IDW_Osmerus_mordax_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Osmerus mordax\ENBS_IDW_Osmerus_mordax_2022.tif
-ENBS_IDW_Osmerus_mordax_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Osmerus mordax\ENBS_IDW_Osmerus_mordax_2023.tif
-ENBS_IDW_Pagurus_aleuticus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus aleuticus\ENBS_IDW_Pagurus_aleuticus_2010.tif
-ENBS_IDW_Pagurus_aleuticus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus aleuticus\ENBS_IDW_Pagurus_aleuticus_2017.tif
-ENBS_IDW_Pagurus_aleuticus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus aleuticus\ENBS_IDW_Pagurus_aleuticus_2019.tif
-ENBS_IDW_Pagurus_aleuticus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus aleuticus\ENBS_IDW_Pagurus_aleuticus_2021.tif
-ENBS_IDW_Pagurus_aleuticus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus aleuticus\ENBS_IDW_Pagurus_aleuticus_2022.tif
-ENBS_IDW_Pagurus_aleuticus_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus aleuticus\ENBS_IDW_Pagurus_aleuticus_2023.tif
-ENBS_IDW_Pagurus_capillatus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus capillatus\ENBS_IDW_Pagurus_capillatus_2010.tif
-ENBS_IDW_Pagurus_capillatus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus capillatus\ENBS_IDW_Pagurus_capillatus_2017.tif
-ENBS_IDW_Pagurus_capillatus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus capillatus\ENBS_IDW_Pagurus_capillatus_2019.tif
-ENBS_IDW_Pagurus_capillatus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus capillatus\ENBS_IDW_Pagurus_capillatus_2021.tif
-ENBS_IDW_Pagurus_capillatus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus capillatus\ENBS_IDW_Pagurus_capillatus_2022.tif
-ENBS_IDW_Pagurus_capillatus_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus capillatus\ENBS_IDW_Pagurus_capillatus_2023.tif
-ENBS_IDW_Pagurus_confragosus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus confragosus\ENBS_IDW_Pagurus_confragosus_2010.tif
-ENBS_IDW_Pagurus_confragosus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus confragosus\ENBS_IDW_Pagurus_confragosus_2017.tif
-ENBS_IDW_Pagurus_confragosus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus confragosus\ENBS_IDW_Pagurus_confragosus_2019.tif
-ENBS_IDW_Pagurus_confragosus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus confragosus\ENBS_IDW_Pagurus_confragosus_2021.tif
-ENBS_IDW_Pagurus_confragosus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus confragosus\ENBS_IDW_Pagurus_confragosus_2022.tif
-ENBS_IDW_Pagurus_confragosus_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus confragosus\ENBS_IDW_Pagurus_confragosus_2023.tif
-ENBS_IDW_Pagurus_ochotensis_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus ochotensis\ENBS_IDW_Pagurus_ochotensis_2010.tif
-ENBS_IDW_Pagurus_ochotensis_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus ochotensis\ENBS_IDW_Pagurus_ochotensis_2017.tif
-ENBS_IDW_Pagurus_ochotensis_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus ochotensis\ENBS_IDW_Pagurus_ochotensis_2019.tif
-ENBS_IDW_Pagurus_ochotensis_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus ochotensis\ENBS_IDW_Pagurus_ochotensis_2021.tif
-ENBS_IDW_Pagurus_ochotensis_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus ochotensis\ENBS_IDW_Pagurus_ochotensis_2022.tif
-ENBS_IDW_Pagurus_ochotensis_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus ochotensis\ENBS_IDW_Pagurus_ochotensis_2023.tif
-ENBS_IDW_Pagurus_rathbuni_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus rathbuni\ENBS_IDW_Pagurus_rathbuni_2010.tif
-ENBS_IDW_Pagurus_rathbuni_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus rathbuni\ENBS_IDW_Pagurus_rathbuni_2017.tif
-ENBS_IDW_Pagurus_rathbuni_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus rathbuni\ENBS_IDW_Pagurus_rathbuni_2019.tif
-ENBS_IDW_Pagurus_rathbuni_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus rathbuni\ENBS_IDW_Pagurus_rathbuni_2021.tif
-ENBS_IDW_Pagurus_rathbuni_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:16:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus rathbuni\ENBS_IDW_Pagurus_rathbuni_2022.tif
-ENBS_IDW_Pagurus_rathbuni_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus rathbuni\ENBS_IDW_Pagurus_rathbuni_2023.tif
-ENBS_IDW_Pagurus_trigonocheirus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus trigonocheirus\ENBS_IDW_Pagurus_trigonocheirus_2010.tif
-ENBS_IDW_Pagurus_trigonocheirus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus trigonocheirus\ENBS_IDW_Pagurus_trigonocheirus_2017.tif
-ENBS_IDW_Pagurus_trigonocheirus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus trigonocheirus\ENBS_IDW_Pagurus_trigonocheirus_2019.tif
-ENBS_IDW_Pagurus_trigonocheirus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus trigonocheirus\ENBS_IDW_Pagurus_trigonocheirus_2021.tif
-ENBS_IDW_Pagurus_trigonocheirus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus trigonocheirus\ENBS_IDW_Pagurus_trigonocheirus_2022.tif
-ENBS_IDW_Pagurus_trigonocheirus_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pagurus trigonocheirus\ENBS_IDW_Pagurus_trigonocheirus_2023.tif
-ENBS_IDW_Paralithodes_camtschaticus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Paralithodes camtschaticus\ENBS_IDW_Paralithodes_camtschaticus_2010.tif
-ENBS_IDW_Paralithodes_camtschaticus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Paralithodes camtschaticus\ENBS_IDW_Paralithodes_camtschaticus_2017.tif
-ENBS_IDW_Paralithodes_camtschaticus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Paralithodes camtschaticus\ENBS_IDW_Paralithodes_camtschaticus_2019.tif
-ENBS_IDW_Paralithodes_camtschaticus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Paralithodes camtschaticus\ENBS_IDW_Paralithodes_camtschaticus_2021.tif
-ENBS_IDW_Paralithodes_camtschaticus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Paralithodes camtschaticus\ENBS_IDW_Paralithodes_camtschaticus_2022.tif
-ENBS_IDW_Paralithodes_camtschaticus_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Paralithodes camtschaticus\ENBS_IDW_Paralithodes_camtschaticus_2023.tif
-ENBS_IDW_Paralithodes_platypus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Paralithodes platypus\ENBS_IDW_Paralithodes_platypus_2010.tif
-ENBS_IDW_Paralithodes_platypus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Paralithodes platypus\ENBS_IDW_Paralithodes_platypus_2017.tif
-ENBS_IDW_Paralithodes_platypus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Paralithodes platypus\ENBS_IDW_Paralithodes_platypus_2019.tif
-ENBS_IDW_Paralithodes_platypus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Paralithodes platypus\ENBS_IDW_Paralithodes_platypus_2021.tif
-ENBS_IDW_Paralithodes_platypus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Paralithodes platypus\ENBS_IDW_Paralithodes_platypus_2022.tif
-ENBS_IDW_Paralithodes_platypus_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Paralithodes platypus\ENBS_IDW_Paralithodes_platypus_2023.tif
-ENBS_IDW_Platichthys_stellatus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Platichthys stellatus\ENBS_IDW_Platichthys_stellatus_2010.tif
-ENBS_IDW_Platichthys_stellatus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Platichthys stellatus\ENBS_IDW_Platichthys_stellatus_2017.tif
-ENBS_IDW_Platichthys_stellatus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Platichthys stellatus\ENBS_IDW_Platichthys_stellatus_2019.tif
-ENBS_IDW_Platichthys_stellatus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Platichthys stellatus\ENBS_IDW_Platichthys_stellatus_2021.tif
-ENBS_IDW_Platichthys_stellatus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Platichthys stellatus\ENBS_IDW_Platichthys_stellatus_2022.tif
-ENBS_IDW_Platichthys_stellatus_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Platichthys stellatus\ENBS_IDW_Platichthys_stellatus_2023.tif
-ENBS_IDW_Pleuronectes_quadrituberculatus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pleuronectes quadrituberculatus\ENBS_IDW_Pleuronectes_quadrituberculatus_2010.tif
-ENBS_IDW_Pleuronectes_quadrituberculatus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pleuronectes quadrituberculatus\ENBS_IDW_Pleuronectes_quadrituberculatus_2017.tif
-ENBS_IDW_Pleuronectes_quadrituberculatus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pleuronectes quadrituberculatus\ENBS_IDW_Pleuronectes_quadrituberculatus_2019.tif
-ENBS_IDW_Pleuronectes_quadrituberculatus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pleuronectes quadrituberculatus\ENBS_IDW_Pleuronectes_quadrituberculatus_2021.tif
-ENBS_IDW_Pleuronectes_quadrituberculatus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pleuronectes quadrituberculatus\ENBS_IDW_Pleuronectes_quadrituberculatus_2022.tif
-ENBS_IDW_Pleuronectes_quadrituberculatus_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Pleuronectes quadrituberculatus\ENBS_IDW_Pleuronectes_quadrituberculatus_2023.tif
-ENBS_IDW_Podothecus_accipenserinus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Podothecus accipenserinus\ENBS_IDW_Podothecus_accipenserinus_2010.tif
-ENBS_IDW_Podothecus_accipenserinus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Podothecus accipenserinus\ENBS_IDW_Podothecus_accipenserinus_2017.tif
-ENBS_IDW_Podothecus_accipenserinus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Podothecus accipenserinus\ENBS_IDW_Podothecus_accipenserinus_2019.tif
-ENBS_IDW_Podothecus_accipenserinus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Podothecus accipenserinus\ENBS_IDW_Podothecus_accipenserinus_2021.tif
-ENBS_IDW_Podothecus_accipenserinus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Podothecus accipenserinus\ENBS_IDW_Podothecus_accipenserinus_2022.tif
-ENBS_IDW_Podothecus_accipenserinus_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Podothecus accipenserinus\ENBS_IDW_Podothecus_accipenserinus_2023.tif
-ENBS_IDW_Reinhardtius_hippoglossoides_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Reinhardtius hippoglossoides\ENBS_IDW_Reinhardtius_hippoglossoides_2010.tif
-ENBS_IDW_Reinhardtius_hippoglossoides_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Reinhardtius hippoglossoides\ENBS_IDW_Reinhardtius_hippoglossoides_2017.tif
-ENBS_IDW_Reinhardtius_hippoglossoides_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Reinhardtius hippoglossoides\ENBS_IDW_Reinhardtius_hippoglossoides_2019.tif
-ENBS_IDW_Reinhardtius_hippoglossoides_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Reinhardtius hippoglossoides\ENBS_IDW_Reinhardtius_hippoglossoides_2021.tif
-ENBS_IDW_Reinhardtius_hippoglossoides_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Reinhardtius hippoglossoides\ENBS_IDW_Reinhardtius_hippoglossoides_2022.tif
-ENBS_IDW_Reinhardtius_hippoglossoides_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Reinhardtius hippoglossoides\ENBS_IDW_Reinhardtius_hippoglossoides_2023.tif
-ENBS_IDW_Sarritor_frenatus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Sarritor frenatus\ENBS_IDW_Sarritor_frenatus_2010.tif
-ENBS_IDW_Sarritor_frenatus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Sarritor frenatus\ENBS_IDW_Sarritor_frenatus_2017.tif
-ENBS_IDW_Sarritor_frenatus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Sarritor frenatus\ENBS_IDW_Sarritor_frenatus_2019.tif
-ENBS_IDW_Sarritor_frenatus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Sarritor frenatus\ENBS_IDW_Sarritor_frenatus_2021.tif
-ENBS_IDW_Sarritor_frenatus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Sarritor frenatus\ENBS_IDW_Sarritor_frenatus_2022.tif
-ENBS_IDW_Sarritor_frenatus_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Sarritor frenatus\ENBS_IDW_Sarritor_frenatus_2023.tif
-ENBS_IDW_Telmessus_cheiragonus_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Telmessus cheiragonus\ENBS_IDW_Telmessus_cheiragonus_2010.tif
-ENBS_IDW_Telmessus_cheiragonus_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Telmessus cheiragonus\ENBS_IDW_Telmessus_cheiragonus_2017.tif
-ENBS_IDW_Telmessus_cheiragonus_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Telmessus cheiragonus\ENBS_IDW_Telmessus_cheiragonus_2019.tif
-ENBS_IDW_Telmessus_cheiragonus_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Telmessus cheiragonus\ENBS_IDW_Telmessus_cheiragonus_2021.tif
-ENBS_IDW_Telmessus_cheiragonus_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Telmessus cheiragonus\ENBS_IDW_Telmessus_cheiragonus_2022.tif
-ENBS_IDW_Telmessus_cheiragonus_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\Telmessus cheiragonus\ENBS_IDW_Telmessus_cheiragonus_2023.tif
-ENBS_IDW_Core_Species_Richness_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\_Core Species Richness\ENBS_IDW_Core_Species_Richness_2010.tif
-ENBS_IDW_Core_Species_Richness_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\_Core Species Richness\ENBS_IDW_Core_Species_Richness_2017.tif
-ENBS_IDW_Core_Species_Richness_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\_Core Species Richness\ENBS_IDW_Core_Species_Richness_2019.tif
-ENBS_IDW_Core_Species_Richness_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\_Core Species Richness\ENBS_IDW_Core_Species_Richness_2021.tif
-ENBS_IDW_Core_Species_Richness_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\_Core Species Richness\ENBS_IDW_Core_Species_Richness_2022.tif
-ENBS_IDW_Core_Species_Richness_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\_Core Species Richness\ENBS_IDW_Core_Species_Richness_2023.tif
-ENBS_IDW_Species_Richness_2010.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\_Species Richness\ENBS_IDW_Species_Richness_2010.tif
-ENBS_IDW_Species_Richness_2017.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\_Species Richness\ENBS_IDW_Species_Richness_2017.tif
-ENBS_IDW_Species_Richness_2019.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\_Species Richness\ENBS_IDW_Species_Richness_2019.tif
-ENBS_IDW_Species_Richness_2021.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\_Species Richness\ENBS_IDW_Species_Richness_2021.tif
-ENBS_IDW_Species_Richness_2022.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\_Species Richness\ENBS_IDW_Species_Richness_2022.tif
-ENBS_IDW_Species_Richness_2023.tif,.tif,1.57 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\ENBS_IDW\_Species Richness\ENBS_IDW_Species_Richness_2023.tif
-GMEX_IDW_Acanthostracion_quadricornis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2010.tif
-GMEX_IDW_Acanthostracion_quadricornis_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2011.tif
-GMEX_IDW_Acanthostracion_quadricornis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2012.tif
-GMEX_IDW_Acanthostracion_quadricornis_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2013.tif
-GMEX_IDW_Acanthostracion_quadricornis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2014.tif
-GMEX_IDW_Acanthostracion_quadricornis_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2015.tif
-GMEX_IDW_Acanthostracion_quadricornis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2016.tif
-GMEX_IDW_Acanthostracion_quadricornis_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2017.tif
-GMEX_IDW_Acanthostracion_quadricornis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2018.tif
-GMEX_IDW_Acanthostracion_quadricornis_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2019.tif
-GMEX_IDW_Acanthostracion_quadricornis_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2021.tif
-GMEX_IDW_Acanthostracion_quadricornis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2022.tif
-GMEX_IDW_Acanthostracion_quadricornis_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2023.tif
-GMEX_IDW_Acanthostracion_quadricornis_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Acanthostracion quadricornis\GMEX_IDW_Acanthostracion_quadricornis_2024.tif
-GMEX_IDW_Achelous_gibbesii_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2010.tif
-GMEX_IDW_Achelous_gibbesii_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2011.tif
-GMEX_IDW_Achelous_gibbesii_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2012.tif
-GMEX_IDW_Achelous_gibbesii_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2013.tif
-GMEX_IDW_Achelous_gibbesii_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2014.tif
-GMEX_IDW_Achelous_gibbesii_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2015.tif
-GMEX_IDW_Achelous_gibbesii_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2016.tif
-GMEX_IDW_Achelous_gibbesii_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2017.tif
-GMEX_IDW_Achelous_gibbesii_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2018.tif
-GMEX_IDW_Achelous_gibbesii_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2019.tif
-GMEX_IDW_Achelous_gibbesii_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2021.tif
-GMEX_IDW_Achelous_gibbesii_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2022.tif
-GMEX_IDW_Achelous_gibbesii_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2023.tif
-GMEX_IDW_Achelous_gibbesii_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous gibbesii\GMEX_IDW_Achelous_gibbesii_2024.tif
-GMEX_IDW_Achelous_spinicarpus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2010.tif
-GMEX_IDW_Achelous_spinicarpus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2011.tif
-GMEX_IDW_Achelous_spinicarpus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2012.tif
-GMEX_IDW_Achelous_spinicarpus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2013.tif
-GMEX_IDW_Achelous_spinicarpus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2014.tif
-GMEX_IDW_Achelous_spinicarpus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2015.tif
-GMEX_IDW_Achelous_spinicarpus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2016.tif
-GMEX_IDW_Achelous_spinicarpus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2017.tif
-GMEX_IDW_Achelous_spinicarpus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2018.tif
-GMEX_IDW_Achelous_spinicarpus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2019.tif
-GMEX_IDW_Achelous_spinicarpus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2021.tif
-GMEX_IDW_Achelous_spinicarpus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2022.tif
-GMEX_IDW_Achelous_spinicarpus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2023.tif
-GMEX_IDW_Achelous_spinicarpus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinicarpus\GMEX_IDW_Achelous_spinicarpus_2024.tif
-GMEX_IDW_Achelous_spinimanus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2010.tif
-GMEX_IDW_Achelous_spinimanus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2011.tif
-GMEX_IDW_Achelous_spinimanus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2012.tif
-GMEX_IDW_Achelous_spinimanus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2013.tif
-GMEX_IDW_Achelous_spinimanus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2014.tif
-GMEX_IDW_Achelous_spinimanus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2015.tif
-GMEX_IDW_Achelous_spinimanus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2016.tif
-GMEX_IDW_Achelous_spinimanus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2017.tif
-GMEX_IDW_Achelous_spinimanus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2018.tif
-GMEX_IDW_Achelous_spinimanus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2019.tif
-GMEX_IDW_Achelous_spinimanus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2021.tif
-GMEX_IDW_Achelous_spinimanus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2022.tif
-GMEX_IDW_Achelous_spinimanus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2023.tif
-GMEX_IDW_Achelous_spinimanus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Achelous spinimanus\GMEX_IDW_Achelous_spinimanus_2024.tif
-GMEX_IDW_Aluterus_schoepfii_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Aluterus schoepfii\GMEX_IDW_Aluterus_schoepfii_2010.tif
-GMEX_IDW_Aluterus_schoepfii_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Aluterus schoepfii\GMEX_IDW_Aluterus_schoepfii_2011.tif
-GMEX_IDW_Aluterus_schoepfii_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Aluterus schoepfii\GMEX_IDW_Aluterus_schoepfii_2012.tif
-GMEX_IDW_Aluterus_schoepfii_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Aluterus schoepfii\GMEX_IDW_Aluterus_schoepfii_2013.tif
-GMEX_IDW_Aluterus_schoepfii_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Aluterus schoepfii\GMEX_IDW_Aluterus_schoepfii_2014.tif
-GMEX_IDW_Aluterus_schoepfii_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Aluterus schoepfii\GMEX_IDW_Aluterus_schoepfii_2015.tif
-GMEX_IDW_Aluterus_schoepfii_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Aluterus schoepfii\GMEX_IDW_Aluterus_schoepfii_2016.tif
-GMEX_IDW_Aluterus_schoepfii_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Aluterus schoepfii\GMEX_IDW_Aluterus_schoepfii_2017.tif
-GMEX_IDW_Aluterus_schoepfii_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Aluterus schoepfii\GMEX_IDW_Aluterus_schoepfii_2018.tif
-GMEX_IDW_Aluterus_schoepfii_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Aluterus schoepfii\GMEX_IDW_Aluterus_schoepfii_2019.tif
-GMEX_IDW_Aluterus_schoepfii_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Aluterus schoepfii\GMEX_IDW_Aluterus_schoepfii_2021.tif
-GMEX_IDW_Aluterus_schoepfii_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Aluterus schoepfii\GMEX_IDW_Aluterus_schoepfii_2022.tif
-GMEX_IDW_Aluterus_schoepfii_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Aluterus schoepfii\GMEX_IDW_Aluterus_schoepfii_2023.tif
-GMEX_IDW_Aluterus_schoepfii_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Aluterus schoepfii\GMEX_IDW_Aluterus_schoepfii_2024.tif
-GMEX_IDW_Anasimus_latus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2010.tif
-GMEX_IDW_Anasimus_latus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2011.tif
-GMEX_IDW_Anasimus_latus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2012.tif
-GMEX_IDW_Anasimus_latus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2013.tif
-GMEX_IDW_Anasimus_latus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2014.tif
-GMEX_IDW_Anasimus_latus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2015.tif
-GMEX_IDW_Anasimus_latus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2016.tif
-GMEX_IDW_Anasimus_latus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2017.tif
-GMEX_IDW_Anasimus_latus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2018.tif
-GMEX_IDW_Anasimus_latus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2019.tif
-GMEX_IDW_Anasimus_latus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2021.tif
-GMEX_IDW_Anasimus_latus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2022.tif
-GMEX_IDW_Anasimus_latus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2023.tif
-GMEX_IDW_Anasimus_latus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anasimus latus\GMEX_IDW_Anasimus_latus_2024.tif
-GMEX_IDW_Anchoa_hepsetus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2010.tif
-GMEX_IDW_Anchoa_hepsetus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2011.tif
-GMEX_IDW_Anchoa_hepsetus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2012.tif
-GMEX_IDW_Anchoa_hepsetus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2013.tif
-GMEX_IDW_Anchoa_hepsetus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2014.tif
-GMEX_IDW_Anchoa_hepsetus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2015.tif
-GMEX_IDW_Anchoa_hepsetus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2016.tif
-GMEX_IDW_Anchoa_hepsetus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2017.tif
-GMEX_IDW_Anchoa_hepsetus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2018.tif
-GMEX_IDW_Anchoa_hepsetus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2019.tif
-GMEX_IDW_Anchoa_hepsetus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2021.tif
-GMEX_IDW_Anchoa_hepsetus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2022.tif
-GMEX_IDW_Anchoa_hepsetus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2023.tif
-GMEX_IDW_Anchoa_hepsetus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Anchoa hepsetus\GMEX_IDW_Anchoa_hepsetus_2024.tif
-GMEX_IDW_Astropecten_cingulatus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2010.tif
-GMEX_IDW_Astropecten_cingulatus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2011.tif
-GMEX_IDW_Astropecten_cingulatus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2012.tif
-GMEX_IDW_Astropecten_cingulatus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2013.tif
-GMEX_IDW_Astropecten_cingulatus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2014.tif
-GMEX_IDW_Astropecten_cingulatus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2015.tif
-GMEX_IDW_Astropecten_cingulatus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2016.tif
-GMEX_IDW_Astropecten_cingulatus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2017.tif
-GMEX_IDW_Astropecten_cingulatus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2018.tif
-GMEX_IDW_Astropecten_cingulatus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2019.tif
-GMEX_IDW_Astropecten_cingulatus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2021.tif
-GMEX_IDW_Astropecten_cingulatus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2022.tif
-GMEX_IDW_Astropecten_cingulatus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2023.tif
-GMEX_IDW_Astropecten_cingulatus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten cingulatus\GMEX_IDW_Astropecten_cingulatus_2024.tif
-GMEX_IDW_Astropecten_duplicatus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2010.tif
-GMEX_IDW_Astropecten_duplicatus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2011.tif
-GMEX_IDW_Astropecten_duplicatus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2012.tif
-GMEX_IDW_Astropecten_duplicatus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2013.tif
-GMEX_IDW_Astropecten_duplicatus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2014.tif
-GMEX_IDW_Astropecten_duplicatus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2015.tif
-GMEX_IDW_Astropecten_duplicatus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2016.tif
-GMEX_IDW_Astropecten_duplicatus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2017.tif
-GMEX_IDW_Astropecten_duplicatus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2018.tif
-GMEX_IDW_Astropecten_duplicatus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2019.tif
-GMEX_IDW_Astropecten_duplicatus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2021.tif
-GMEX_IDW_Astropecten_duplicatus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2022.tif
-GMEX_IDW_Astropecten_duplicatus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2023.tif
-GMEX_IDW_Astropecten_duplicatus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Astropecten duplicatus\GMEX_IDW_Astropecten_duplicatus_2024.tif
-GMEX_IDW_Balistes_capriscus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2010.tif
-GMEX_IDW_Balistes_capriscus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2011.tif
-GMEX_IDW_Balistes_capriscus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2012.tif
-GMEX_IDW_Balistes_capriscus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2013.tif
-GMEX_IDW_Balistes_capriscus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2014.tif
-GMEX_IDW_Balistes_capriscus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2015.tif
-GMEX_IDW_Balistes_capriscus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2016.tif
-GMEX_IDW_Balistes_capriscus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2017.tif
-GMEX_IDW_Balistes_capriscus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2018.tif
-GMEX_IDW_Balistes_capriscus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2019.tif
-GMEX_IDW_Balistes_capriscus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2021.tif
-GMEX_IDW_Balistes_capriscus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2022.tif
-GMEX_IDW_Balistes_capriscus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2023.tif
-GMEX_IDW_Balistes_capriscus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Balistes capriscus\GMEX_IDW_Balistes_capriscus_2024.tif
-GMEX_IDW_Bellator_militaris_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2010.tif
-GMEX_IDW_Bellator_militaris_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2011.tif
-GMEX_IDW_Bellator_militaris_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2012.tif
-GMEX_IDW_Bellator_militaris_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2013.tif
-GMEX_IDW_Bellator_militaris_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2014.tif
-GMEX_IDW_Bellator_militaris_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2015.tif
-GMEX_IDW_Bellator_militaris_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2016.tif
-GMEX_IDW_Bellator_militaris_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2017.tif
-GMEX_IDW_Bellator_militaris_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2018.tif
-GMEX_IDW_Bellator_militaris_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2019.tif
-GMEX_IDW_Bellator_militaris_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2021.tif
-GMEX_IDW_Bellator_militaris_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2022.tif
-GMEX_IDW_Bellator_militaris_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2023.tif
-GMEX_IDW_Bellator_militaris_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bellator militaris\GMEX_IDW_Bellator_militaris_2024.tif
-GMEX_IDW_Bothus_robinsi_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bothus robinsi\GMEX_IDW_Bothus_robinsi_2010.tif
-GMEX_IDW_Bothus_robinsi_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bothus robinsi\GMEX_IDW_Bothus_robinsi_2011.tif
-GMEX_IDW_Bothus_robinsi_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bothus robinsi\GMEX_IDW_Bothus_robinsi_2012.tif
-GMEX_IDW_Bothus_robinsi_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bothus robinsi\GMEX_IDW_Bothus_robinsi_2013.tif
-GMEX_IDW_Bothus_robinsi_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bothus robinsi\GMEX_IDW_Bothus_robinsi_2014.tif
-GMEX_IDW_Bothus_robinsi_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bothus robinsi\GMEX_IDW_Bothus_robinsi_2015.tif
-GMEX_IDW_Bothus_robinsi_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bothus robinsi\GMEX_IDW_Bothus_robinsi_2016.tif
-GMEX_IDW_Bothus_robinsi_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bothus robinsi\GMEX_IDW_Bothus_robinsi_2017.tif
-GMEX_IDW_Bothus_robinsi_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bothus robinsi\GMEX_IDW_Bothus_robinsi_2018.tif
-GMEX_IDW_Bothus_robinsi_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bothus robinsi\GMEX_IDW_Bothus_robinsi_2019.tif
-GMEX_IDW_Bothus_robinsi_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bothus robinsi\GMEX_IDW_Bothus_robinsi_2021.tif
-GMEX_IDW_Bothus_robinsi_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bothus robinsi\GMEX_IDW_Bothus_robinsi_2022.tif
-GMEX_IDW_Bothus_robinsi_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bothus robinsi\GMEX_IDW_Bothus_robinsi_2023.tif
-GMEX_IDW_Bothus_robinsi_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:17:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Bothus robinsi\GMEX_IDW_Bothus_robinsi_2024.tif
-GMEX_IDW_Calamus_proridens_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2010.tif
-GMEX_IDW_Calamus_proridens_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2011.tif
-GMEX_IDW_Calamus_proridens_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2012.tif
-GMEX_IDW_Calamus_proridens_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2013.tif
-GMEX_IDW_Calamus_proridens_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2014.tif
-GMEX_IDW_Calamus_proridens_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2015.tif
-GMEX_IDW_Calamus_proridens_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2016.tif
-GMEX_IDW_Calamus_proridens_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2017.tif
-GMEX_IDW_Calamus_proridens_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2018.tif
-GMEX_IDW_Calamus_proridens_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2019.tif
-GMEX_IDW_Calamus_proridens_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2021.tif
-GMEX_IDW_Calamus_proridens_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2022.tif
-GMEX_IDW_Calamus_proridens_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2023.tif
-GMEX_IDW_Calamus_proridens_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calamus proridens\GMEX_IDW_Calamus_proridens_2024.tif
-GMEX_IDW_Calappa_sulcata_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2010.tif
-GMEX_IDW_Calappa_sulcata_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2011.tif
-GMEX_IDW_Calappa_sulcata_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2012.tif
-GMEX_IDW_Calappa_sulcata_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2013.tif
-GMEX_IDW_Calappa_sulcata_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2014.tif
-GMEX_IDW_Calappa_sulcata_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2015.tif
-GMEX_IDW_Calappa_sulcata_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2016.tif
-GMEX_IDW_Calappa_sulcata_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2017.tif
-GMEX_IDW_Calappa_sulcata_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2018.tif
-GMEX_IDW_Calappa_sulcata_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2019.tif
-GMEX_IDW_Calappa_sulcata_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2021.tif
-GMEX_IDW_Calappa_sulcata_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2022.tif
-GMEX_IDW_Calappa_sulcata_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2023.tif
-GMEX_IDW_Calappa_sulcata_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Calappa sulcata\GMEX_IDW_Calappa_sulcata_2024.tif
-GMEX_IDW_Callinectes_sapidus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2010.tif
-GMEX_IDW_Callinectes_sapidus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2011.tif
-GMEX_IDW_Callinectes_sapidus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2012.tif
-GMEX_IDW_Callinectes_sapidus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2013.tif
-GMEX_IDW_Callinectes_sapidus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2014.tif
-GMEX_IDW_Callinectes_sapidus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2015.tif
-GMEX_IDW_Callinectes_sapidus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2016.tif
-GMEX_IDW_Callinectes_sapidus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2017.tif
-GMEX_IDW_Callinectes_sapidus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2018.tif
-GMEX_IDW_Callinectes_sapidus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2019.tif
-GMEX_IDW_Callinectes_sapidus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2021.tif
-GMEX_IDW_Callinectes_sapidus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2022.tif
-GMEX_IDW_Callinectes_sapidus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2023.tif
-GMEX_IDW_Callinectes_sapidus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes sapidus\GMEX_IDW_Callinectes_sapidus_2024.tif
-GMEX_IDW_Callinectes_similis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2010.tif
-GMEX_IDW_Callinectes_similis_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2011.tif
-GMEX_IDW_Callinectes_similis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2012.tif
-GMEX_IDW_Callinectes_similis_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2013.tif
-GMEX_IDW_Callinectes_similis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2014.tif
-GMEX_IDW_Callinectes_similis_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2015.tif
-GMEX_IDW_Callinectes_similis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2016.tif
-GMEX_IDW_Callinectes_similis_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2017.tif
-GMEX_IDW_Callinectes_similis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2018.tif
-GMEX_IDW_Callinectes_similis_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2019.tif
-GMEX_IDW_Callinectes_similis_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2021.tif
-GMEX_IDW_Callinectes_similis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2022.tif
-GMEX_IDW_Callinectes_similis_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2023.tif
-GMEX_IDW_Callinectes_similis_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Callinectes similis\GMEX_IDW_Callinectes_similis_2024.tif
-GMEX_IDW_Centropristis_ocyurus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2010.tif
-GMEX_IDW_Centropristis_ocyurus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2011.tif
-GMEX_IDW_Centropristis_ocyurus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2012.tif
-GMEX_IDW_Centropristis_ocyurus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2013.tif
-GMEX_IDW_Centropristis_ocyurus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2014.tif
-GMEX_IDW_Centropristis_ocyurus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2015.tif
-GMEX_IDW_Centropristis_ocyurus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2016.tif
-GMEX_IDW_Centropristis_ocyurus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2017.tif
-GMEX_IDW_Centropristis_ocyurus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2018.tif
-GMEX_IDW_Centropristis_ocyurus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2019.tif
-GMEX_IDW_Centropristis_ocyurus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2021.tif
-GMEX_IDW_Centropristis_ocyurus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2022.tif
-GMEX_IDW_Centropristis_ocyurus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2023.tif
-GMEX_IDW_Centropristis_ocyurus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis ocyurus\GMEX_IDW_Centropristis_ocyurus_2024.tif
-GMEX_IDW_Centropristis_philadelphica_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2010.tif
-GMEX_IDW_Centropristis_philadelphica_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2011.tif
-GMEX_IDW_Centropristis_philadelphica_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2012.tif
-GMEX_IDW_Centropristis_philadelphica_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2013.tif
-GMEX_IDW_Centropristis_philadelphica_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2014.tif
-GMEX_IDW_Centropristis_philadelphica_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2015.tif
-GMEX_IDW_Centropristis_philadelphica_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2016.tif
-GMEX_IDW_Centropristis_philadelphica_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2017.tif
-GMEX_IDW_Centropristis_philadelphica_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2018.tif
-GMEX_IDW_Centropristis_philadelphica_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2019.tif
-GMEX_IDW_Centropristis_philadelphica_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2021.tif
-GMEX_IDW_Centropristis_philadelphica_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2022.tif
-GMEX_IDW_Centropristis_philadelphica_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2023.tif
-GMEX_IDW_Centropristis_philadelphica_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Centropristis philadelphica\GMEX_IDW_Centropristis_philadelphica_2024.tif
-GMEX_IDW_Chaetodon_ocellatus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2010.tif
-GMEX_IDW_Chaetodon_ocellatus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2011.tif
-GMEX_IDW_Chaetodon_ocellatus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2012.tif
-GMEX_IDW_Chaetodon_ocellatus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2013.tif
-GMEX_IDW_Chaetodon_ocellatus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2014.tif
-GMEX_IDW_Chaetodon_ocellatus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2015.tif
-GMEX_IDW_Chaetodon_ocellatus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2016.tif
-GMEX_IDW_Chaetodon_ocellatus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2017.tif
-GMEX_IDW_Chaetodon_ocellatus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2018.tif
-GMEX_IDW_Chaetodon_ocellatus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2019.tif
-GMEX_IDW_Chaetodon_ocellatus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2021.tif
-GMEX_IDW_Chaetodon_ocellatus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2022.tif
-GMEX_IDW_Chaetodon_ocellatus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2023.tif
-GMEX_IDW_Chaetodon_ocellatus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chaetodon ocellatus\GMEX_IDW_Chaetodon_ocellatus_2024.tif
-GMEX_IDW_Chilomycterus_schoepfii_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chilomycterus schoepfii\GMEX_IDW_Chilomycterus_schoepfii_2010.tif
-GMEX_IDW_Chilomycterus_schoepfii_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chilomycterus schoepfii\GMEX_IDW_Chilomycterus_schoepfii_2011.tif
-GMEX_IDW_Chilomycterus_schoepfii_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chilomycterus schoepfii\GMEX_IDW_Chilomycterus_schoepfii_2012.tif
-GMEX_IDW_Chilomycterus_schoepfii_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chilomycterus schoepfii\GMEX_IDW_Chilomycterus_schoepfii_2013.tif
-GMEX_IDW_Chilomycterus_schoepfii_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chilomycterus schoepfii\GMEX_IDW_Chilomycterus_schoepfii_2014.tif
-GMEX_IDW_Chilomycterus_schoepfii_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chilomycterus schoepfii\GMEX_IDW_Chilomycterus_schoepfii_2015.tif
-GMEX_IDW_Chilomycterus_schoepfii_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chilomycterus schoepfii\GMEX_IDW_Chilomycterus_schoepfii_2016.tif
-GMEX_IDW_Chilomycterus_schoepfii_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chilomycterus schoepfii\GMEX_IDW_Chilomycterus_schoepfii_2017.tif
-GMEX_IDW_Chilomycterus_schoepfii_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chilomycterus schoepfii\GMEX_IDW_Chilomycterus_schoepfii_2018.tif
-GMEX_IDW_Chilomycterus_schoepfii_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chilomycterus schoepfii\GMEX_IDW_Chilomycterus_schoepfii_2019.tif
-GMEX_IDW_Chilomycterus_schoepfii_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chilomycterus schoepfii\GMEX_IDW_Chilomycterus_schoepfii_2021.tif
-GMEX_IDW_Chilomycterus_schoepfii_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chilomycterus schoepfii\GMEX_IDW_Chilomycterus_schoepfii_2022.tif
-GMEX_IDW_Chilomycterus_schoepfii_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chilomycterus schoepfii\GMEX_IDW_Chilomycterus_schoepfii_2023.tif
-GMEX_IDW_Chilomycterus_schoepfii_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chilomycterus schoepfii\GMEX_IDW_Chilomycterus_schoepfii_2024.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2010.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2011.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2012.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2013.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2014.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2015.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2016.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2017.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2018.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2019.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2021.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2022.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2023.tif
-GMEX_IDW_Chloroscombrus_chrysurus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Chloroscombrus chrysurus\GMEX_IDW_Chloroscombrus_chrysurus_2024.tif
-GMEX_IDW_Citharichthys_macrops_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys macrops\GMEX_IDW_Citharichthys_macrops_2010.tif
-GMEX_IDW_Citharichthys_macrops_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys macrops\GMEX_IDW_Citharichthys_macrops_2011.tif
-GMEX_IDW_Citharichthys_macrops_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys macrops\GMEX_IDW_Citharichthys_macrops_2012.tif
-GMEX_IDW_Citharichthys_macrops_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys macrops\GMEX_IDW_Citharichthys_macrops_2013.tif
-GMEX_IDW_Citharichthys_macrops_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys macrops\GMEX_IDW_Citharichthys_macrops_2014.tif
-GMEX_IDW_Citharichthys_macrops_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys macrops\GMEX_IDW_Citharichthys_macrops_2015.tif
-GMEX_IDW_Citharichthys_macrops_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys macrops\GMEX_IDW_Citharichthys_macrops_2016.tif
-GMEX_IDW_Citharichthys_macrops_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys macrops\GMEX_IDW_Citharichthys_macrops_2017.tif
-GMEX_IDW_Citharichthys_macrops_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys macrops\GMEX_IDW_Citharichthys_macrops_2018.tif
-GMEX_IDW_Citharichthys_macrops_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys macrops\GMEX_IDW_Citharichthys_macrops_2019.tif
-GMEX_IDW_Citharichthys_macrops_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys macrops\GMEX_IDW_Citharichthys_macrops_2021.tif
-GMEX_IDW_Citharichthys_macrops_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys macrops\GMEX_IDW_Citharichthys_macrops_2022.tif
-GMEX_IDW_Citharichthys_macrops_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys macrops\GMEX_IDW_Citharichthys_macrops_2023.tif
-GMEX_IDW_Citharichthys_macrops_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys macrops\GMEX_IDW_Citharichthys_macrops_2024.tif
-GMEX_IDW_Citharichthys_spilopterus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys spilopterus\GMEX_IDW_Citharichthys_spilopterus_2010.tif
-GMEX_IDW_Citharichthys_spilopterus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys spilopterus\GMEX_IDW_Citharichthys_spilopterus_2011.tif
-GMEX_IDW_Citharichthys_spilopterus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys spilopterus\GMEX_IDW_Citharichthys_spilopterus_2012.tif
-GMEX_IDW_Citharichthys_spilopterus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys spilopterus\GMEX_IDW_Citharichthys_spilopterus_2013.tif
-GMEX_IDW_Citharichthys_spilopterus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys spilopterus\GMEX_IDW_Citharichthys_spilopterus_2014.tif
-GMEX_IDW_Citharichthys_spilopterus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys spilopterus\GMEX_IDW_Citharichthys_spilopterus_2015.tif
-GMEX_IDW_Citharichthys_spilopterus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys spilopterus\GMEX_IDW_Citharichthys_spilopterus_2016.tif
-GMEX_IDW_Citharichthys_spilopterus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys spilopterus\GMEX_IDW_Citharichthys_spilopterus_2017.tif
-GMEX_IDW_Citharichthys_spilopterus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys spilopterus\GMEX_IDW_Citharichthys_spilopterus_2018.tif
-GMEX_IDW_Citharichthys_spilopterus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys spilopterus\GMEX_IDW_Citharichthys_spilopterus_2019.tif
-GMEX_IDW_Citharichthys_spilopterus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys spilopterus\GMEX_IDW_Citharichthys_spilopterus_2021.tif
-GMEX_IDW_Citharichthys_spilopterus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys spilopterus\GMEX_IDW_Citharichthys_spilopterus_2022.tif
-GMEX_IDW_Citharichthys_spilopterus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys spilopterus\GMEX_IDW_Citharichthys_spilopterus_2023.tif
-GMEX_IDW_Citharichthys_spilopterus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Citharichthys spilopterus\GMEX_IDW_Citharichthys_spilopterus_2024.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2010.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2011.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2012.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2013.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2014.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2015.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2016.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2017.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2018.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2019.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2021.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2022.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2023.tif
-GMEX_IDW_Cyclopsetta_chittendeni_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta chittendeni\GMEX_IDW_Cyclopsetta_chittendeni_2024.tif
-GMEX_IDW_Cyclopsetta_fimbriata_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta fimbriata\GMEX_IDW_Cyclopsetta_fimbriata_2010.tif
-GMEX_IDW_Cyclopsetta_fimbriata_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta fimbriata\GMEX_IDW_Cyclopsetta_fimbriata_2011.tif
-GMEX_IDW_Cyclopsetta_fimbriata_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta fimbriata\GMEX_IDW_Cyclopsetta_fimbriata_2012.tif
-GMEX_IDW_Cyclopsetta_fimbriata_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta fimbriata\GMEX_IDW_Cyclopsetta_fimbriata_2013.tif
-GMEX_IDW_Cyclopsetta_fimbriata_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta fimbriata\GMEX_IDW_Cyclopsetta_fimbriata_2014.tif
-GMEX_IDW_Cyclopsetta_fimbriata_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta fimbriata\GMEX_IDW_Cyclopsetta_fimbriata_2015.tif
-GMEX_IDW_Cyclopsetta_fimbriata_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta fimbriata\GMEX_IDW_Cyclopsetta_fimbriata_2016.tif
-GMEX_IDW_Cyclopsetta_fimbriata_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta fimbriata\GMEX_IDW_Cyclopsetta_fimbriata_2017.tif
-GMEX_IDW_Cyclopsetta_fimbriata_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta fimbriata\GMEX_IDW_Cyclopsetta_fimbriata_2018.tif
-GMEX_IDW_Cyclopsetta_fimbriata_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta fimbriata\GMEX_IDW_Cyclopsetta_fimbriata_2019.tif
-GMEX_IDW_Cyclopsetta_fimbriata_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta fimbriata\GMEX_IDW_Cyclopsetta_fimbriata_2021.tif
-GMEX_IDW_Cyclopsetta_fimbriata_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta fimbriata\GMEX_IDW_Cyclopsetta_fimbriata_2022.tif
-GMEX_IDW_Cyclopsetta_fimbriata_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta fimbriata\GMEX_IDW_Cyclopsetta_fimbriata_2023.tif
-GMEX_IDW_Cyclopsetta_fimbriata_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cyclopsetta fimbriata\GMEX_IDW_Cyclopsetta_fimbriata_2024.tif
-GMEX_IDW_Cynoscion_arenarius_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion arenarius\GMEX_IDW_Cynoscion_arenarius_2010.tif
-GMEX_IDW_Cynoscion_arenarius_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion arenarius\GMEX_IDW_Cynoscion_arenarius_2011.tif
-GMEX_IDW_Cynoscion_arenarius_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion arenarius\GMEX_IDW_Cynoscion_arenarius_2012.tif
-GMEX_IDW_Cynoscion_arenarius_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion arenarius\GMEX_IDW_Cynoscion_arenarius_2013.tif
-GMEX_IDW_Cynoscion_arenarius_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion arenarius\GMEX_IDW_Cynoscion_arenarius_2014.tif
-GMEX_IDW_Cynoscion_arenarius_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion arenarius\GMEX_IDW_Cynoscion_arenarius_2015.tif
-GMEX_IDW_Cynoscion_arenarius_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion arenarius\GMEX_IDW_Cynoscion_arenarius_2016.tif
-GMEX_IDW_Cynoscion_arenarius_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion arenarius\GMEX_IDW_Cynoscion_arenarius_2017.tif
-GMEX_IDW_Cynoscion_arenarius_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion arenarius\GMEX_IDW_Cynoscion_arenarius_2018.tif
-GMEX_IDW_Cynoscion_arenarius_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion arenarius\GMEX_IDW_Cynoscion_arenarius_2019.tif
-GMEX_IDW_Cynoscion_arenarius_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:18:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion arenarius\GMEX_IDW_Cynoscion_arenarius_2021.tif
-GMEX_IDW_Cynoscion_arenarius_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion arenarius\GMEX_IDW_Cynoscion_arenarius_2022.tif
-GMEX_IDW_Cynoscion_arenarius_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion arenarius\GMEX_IDW_Cynoscion_arenarius_2023.tif
-GMEX_IDW_Cynoscion_arenarius_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion arenarius\GMEX_IDW_Cynoscion_arenarius_2024.tif
-GMEX_IDW_Cynoscion_nothus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion nothus\GMEX_IDW_Cynoscion_nothus_2010.tif
-GMEX_IDW_Cynoscion_nothus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion nothus\GMEX_IDW_Cynoscion_nothus_2011.tif
-GMEX_IDW_Cynoscion_nothus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion nothus\GMEX_IDW_Cynoscion_nothus_2012.tif
-GMEX_IDW_Cynoscion_nothus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion nothus\GMEX_IDW_Cynoscion_nothus_2013.tif
-GMEX_IDW_Cynoscion_nothus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion nothus\GMEX_IDW_Cynoscion_nothus_2014.tif
-GMEX_IDW_Cynoscion_nothus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion nothus\GMEX_IDW_Cynoscion_nothus_2015.tif
-GMEX_IDW_Cynoscion_nothus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion nothus\GMEX_IDW_Cynoscion_nothus_2016.tif
-GMEX_IDW_Cynoscion_nothus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion nothus\GMEX_IDW_Cynoscion_nothus_2017.tif
-GMEX_IDW_Cynoscion_nothus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion nothus\GMEX_IDW_Cynoscion_nothus_2018.tif
-GMEX_IDW_Cynoscion_nothus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion nothus\GMEX_IDW_Cynoscion_nothus_2019.tif
-GMEX_IDW_Cynoscion_nothus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion nothus\GMEX_IDW_Cynoscion_nothus_2021.tif
-GMEX_IDW_Cynoscion_nothus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion nothus\GMEX_IDW_Cynoscion_nothus_2022.tif
-GMEX_IDW_Cynoscion_nothus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion nothus\GMEX_IDW_Cynoscion_nothus_2023.tif
-GMEX_IDW_Cynoscion_nothus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Cynoscion nothus\GMEX_IDW_Cynoscion_nothus_2024.tif
-GMEX_IDW_Decapterus_punctatus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2010.tif
-GMEX_IDW_Decapterus_punctatus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2011.tif
-GMEX_IDW_Decapterus_punctatus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2012.tif
-GMEX_IDW_Decapterus_punctatus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2013.tif
-GMEX_IDW_Decapterus_punctatus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2014.tif
-GMEX_IDW_Decapterus_punctatus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2015.tif
-GMEX_IDW_Decapterus_punctatus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2016.tif
-GMEX_IDW_Decapterus_punctatus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2017.tif
-GMEX_IDW_Decapterus_punctatus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2018.tif
-GMEX_IDW_Decapterus_punctatus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2019.tif
-GMEX_IDW_Decapterus_punctatus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2021.tif
-GMEX_IDW_Decapterus_punctatus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2022.tif
-GMEX_IDW_Decapterus_punctatus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2023.tif
-GMEX_IDW_Decapterus_punctatus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Decapterus punctatus\GMEX_IDW_Decapterus_punctatus_2024.tif
-GMEX_IDW_Diplectrum_bivittatum_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2010.tif
-GMEX_IDW_Diplectrum_bivittatum_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2011.tif
-GMEX_IDW_Diplectrum_bivittatum_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2012.tif
-GMEX_IDW_Diplectrum_bivittatum_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2013.tif
-GMEX_IDW_Diplectrum_bivittatum_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2014.tif
-GMEX_IDW_Diplectrum_bivittatum_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2015.tif
-GMEX_IDW_Diplectrum_bivittatum_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2016.tif
-GMEX_IDW_Diplectrum_bivittatum_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2017.tif
-GMEX_IDW_Diplectrum_bivittatum_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2018.tif
-GMEX_IDW_Diplectrum_bivittatum_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2019.tif
-GMEX_IDW_Diplectrum_bivittatum_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2021.tif
-GMEX_IDW_Diplectrum_bivittatum_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2022.tif
-GMEX_IDW_Diplectrum_bivittatum_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2023.tif
-GMEX_IDW_Diplectrum_bivittatum_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum bivittatum\GMEX_IDW_Diplectrum_bivittatum_2024.tif
-GMEX_IDW_Diplectrum_formosum_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2010.tif
-GMEX_IDW_Diplectrum_formosum_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2011.tif
-GMEX_IDW_Diplectrum_formosum_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2012.tif
-GMEX_IDW_Diplectrum_formosum_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2013.tif
-GMEX_IDW_Diplectrum_formosum_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2014.tif
-GMEX_IDW_Diplectrum_formosum_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2015.tif
-GMEX_IDW_Diplectrum_formosum_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2016.tif
-GMEX_IDW_Diplectrum_formosum_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2017.tif
-GMEX_IDW_Diplectrum_formosum_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2018.tif
-GMEX_IDW_Diplectrum_formosum_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2019.tif
-GMEX_IDW_Diplectrum_formosum_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2021.tif
-GMEX_IDW_Diplectrum_formosum_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2022.tif
-GMEX_IDW_Diplectrum_formosum_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2023.tif
-GMEX_IDW_Diplectrum_formosum_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Diplectrum formosum\GMEX_IDW_Diplectrum_formosum_2024.tif
-GMEX_IDW_Doryteuthis_sp_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Doryteuthis sp\GMEX_IDW_Doryteuthis_sp_2010.tif
-GMEX_IDW_Doryteuthis_sp_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Doryteuthis sp\GMEX_IDW_Doryteuthis_sp_2011.tif
-GMEX_IDW_Doryteuthis_sp_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Doryteuthis sp\GMEX_IDW_Doryteuthis_sp_2012.tif
-GMEX_IDW_Doryteuthis_sp_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Doryteuthis sp\GMEX_IDW_Doryteuthis_sp_2013.tif
-GMEX_IDW_Doryteuthis_sp_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Doryteuthis sp\GMEX_IDW_Doryteuthis_sp_2014.tif
-GMEX_IDW_Doryteuthis_sp_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Doryteuthis sp\GMEX_IDW_Doryteuthis_sp_2015.tif
-GMEX_IDW_Doryteuthis_sp_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Doryteuthis sp\GMEX_IDW_Doryteuthis_sp_2016.tif
-GMEX_IDW_Doryteuthis_sp_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Doryteuthis sp\GMEX_IDW_Doryteuthis_sp_2017.tif
-GMEX_IDW_Doryteuthis_sp_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Doryteuthis sp\GMEX_IDW_Doryteuthis_sp_2018.tif
-GMEX_IDW_Doryteuthis_sp_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Doryteuthis sp\GMEX_IDW_Doryteuthis_sp_2019.tif
-GMEX_IDW_Doryteuthis_sp_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Doryteuthis sp\GMEX_IDW_Doryteuthis_sp_2021.tif
-GMEX_IDW_Doryteuthis_sp_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Doryteuthis sp\GMEX_IDW_Doryteuthis_sp_2022.tif
-GMEX_IDW_Doryteuthis_sp_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Doryteuthis sp\GMEX_IDW_Doryteuthis_sp_2023.tif
-GMEX_IDW_Doryteuthis_sp_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Doryteuthis sp\GMEX_IDW_Doryteuthis_sp_2024.tif
-GMEX_IDW_Epinephelus_morio_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2010.tif
-GMEX_IDW_Epinephelus_morio_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2011.tif
-GMEX_IDW_Epinephelus_morio_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2012.tif
-GMEX_IDW_Epinephelus_morio_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2013.tif
-GMEX_IDW_Epinephelus_morio_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2014.tif
-GMEX_IDW_Epinephelus_morio_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2015.tif
-GMEX_IDW_Epinephelus_morio_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2016.tif
-GMEX_IDW_Epinephelus_morio_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2017.tif
-GMEX_IDW_Epinephelus_morio_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2018.tif
-GMEX_IDW_Epinephelus_morio_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2019.tif
-GMEX_IDW_Epinephelus_morio_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2021.tif
-GMEX_IDW_Epinephelus_morio_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2022.tif
-GMEX_IDW_Epinephelus_morio_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2023.tif
-GMEX_IDW_Epinephelus_morio_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Epinephelus morio\GMEX_IDW_Epinephelus_morio_2024.tif
-GMEX_IDW_Eques_lanceolatus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2010.tif
-GMEX_IDW_Eques_lanceolatus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2011.tif
-GMEX_IDW_Eques_lanceolatus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2012.tif
-GMEX_IDW_Eques_lanceolatus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2013.tif
-GMEX_IDW_Eques_lanceolatus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2014.tif
-GMEX_IDW_Eques_lanceolatus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2015.tif
-GMEX_IDW_Eques_lanceolatus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2016.tif
-GMEX_IDW_Eques_lanceolatus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2017.tif
-GMEX_IDW_Eques_lanceolatus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2018.tif
-GMEX_IDW_Eques_lanceolatus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2019.tif
-GMEX_IDW_Eques_lanceolatus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2021.tif
-GMEX_IDW_Eques_lanceolatus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2022.tif
-GMEX_IDW_Eques_lanceolatus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2023.tif
-GMEX_IDW_Eques_lanceolatus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eques lanceolatus\GMEX_IDW_Eques_lanceolatus_2024.tif
-GMEX_IDW_Etropus_crossotus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2010.tif
-GMEX_IDW_Etropus_crossotus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2011.tif
-GMEX_IDW_Etropus_crossotus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2012.tif
-GMEX_IDW_Etropus_crossotus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2013.tif
-GMEX_IDW_Etropus_crossotus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2014.tif
-GMEX_IDW_Etropus_crossotus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2015.tif
-GMEX_IDW_Etropus_crossotus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2016.tif
-GMEX_IDW_Etropus_crossotus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2017.tif
-GMEX_IDW_Etropus_crossotus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2018.tif
-GMEX_IDW_Etropus_crossotus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2019.tif
-GMEX_IDW_Etropus_crossotus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2021.tif
-GMEX_IDW_Etropus_crossotus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2022.tif
-GMEX_IDW_Etropus_crossotus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2023.tif
-GMEX_IDW_Etropus_crossotus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Etropus crossotus\GMEX_IDW_Etropus_crossotus_2024.tif
-GMEX_IDW_Eucidaris_tribuloides_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2010.tif
-GMEX_IDW_Eucidaris_tribuloides_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2011.tif
-GMEX_IDW_Eucidaris_tribuloides_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2012.tif
-GMEX_IDW_Eucidaris_tribuloides_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2013.tif
-GMEX_IDW_Eucidaris_tribuloides_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2014.tif
-GMEX_IDW_Eucidaris_tribuloides_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2015.tif
-GMEX_IDW_Eucidaris_tribuloides_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2016.tif
-GMEX_IDW_Eucidaris_tribuloides_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2017.tif
-GMEX_IDW_Eucidaris_tribuloides_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2018.tif
-GMEX_IDW_Eucidaris_tribuloides_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2019.tif
-GMEX_IDW_Eucidaris_tribuloides_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2021.tif
-GMEX_IDW_Eucidaris_tribuloides_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2022.tif
-GMEX_IDW_Eucidaris_tribuloides_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2023.tif
-GMEX_IDW_Eucidaris_tribuloides_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Eucidaris tribuloides\GMEX_IDW_Eucidaris_tribuloides_2024.tif
-GMEX_IDW_Euvola_marensis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Euvola marensis\GMEX_IDW_Euvola_marensis_2010.tif
-GMEX_IDW_Euvola_marensis_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Euvola marensis\GMEX_IDW_Euvola_marensis_2011.tif
-GMEX_IDW_Euvola_marensis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Euvola marensis\GMEX_IDW_Euvola_marensis_2012.tif
-GMEX_IDW_Euvola_marensis_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Euvola marensis\GMEX_IDW_Euvola_marensis_2013.tif
-GMEX_IDW_Euvola_marensis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Euvola marensis\GMEX_IDW_Euvola_marensis_2014.tif
-GMEX_IDW_Euvola_marensis_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Euvola marensis\GMEX_IDW_Euvola_marensis_2015.tif
-GMEX_IDW_Euvola_marensis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Euvola marensis\GMEX_IDW_Euvola_marensis_2016.tif
-GMEX_IDW_Euvola_marensis_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Euvola marensis\GMEX_IDW_Euvola_marensis_2017.tif
-GMEX_IDW_Euvola_marensis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Euvola marensis\GMEX_IDW_Euvola_marensis_2018.tif
-GMEX_IDW_Euvola_marensis_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Euvola marensis\GMEX_IDW_Euvola_marensis_2019.tif
-GMEX_IDW_Euvola_marensis_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Euvola marensis\GMEX_IDW_Euvola_marensis_2021.tif
-GMEX_IDW_Euvola_marensis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Euvola marensis\GMEX_IDW_Euvola_marensis_2022.tif
-GMEX_IDW_Euvola_marensis_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Euvola marensis\GMEX_IDW_Euvola_marensis_2023.tif
-GMEX_IDW_Euvola_marensis_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Euvola marensis\GMEX_IDW_Euvola_marensis_2024.tif
-GMEX_IDW_Fowlerichthys_radiosus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Fowlerichthys radiosus\GMEX_IDW_Fowlerichthys_radiosus_2010.tif
-GMEX_IDW_Fowlerichthys_radiosus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Fowlerichthys radiosus\GMEX_IDW_Fowlerichthys_radiosus_2011.tif
-GMEX_IDW_Fowlerichthys_radiosus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Fowlerichthys radiosus\GMEX_IDW_Fowlerichthys_radiosus_2012.tif
-GMEX_IDW_Fowlerichthys_radiosus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Fowlerichthys radiosus\GMEX_IDW_Fowlerichthys_radiosus_2013.tif
-GMEX_IDW_Fowlerichthys_radiosus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Fowlerichthys radiosus\GMEX_IDW_Fowlerichthys_radiosus_2014.tif
-GMEX_IDW_Fowlerichthys_radiosus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Fowlerichthys radiosus\GMEX_IDW_Fowlerichthys_radiosus_2015.tif
-GMEX_IDW_Fowlerichthys_radiosus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Fowlerichthys radiosus\GMEX_IDW_Fowlerichthys_radiosus_2016.tif
-GMEX_IDW_Fowlerichthys_radiosus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Fowlerichthys radiosus\GMEX_IDW_Fowlerichthys_radiosus_2017.tif
-GMEX_IDW_Fowlerichthys_radiosus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Fowlerichthys radiosus\GMEX_IDW_Fowlerichthys_radiosus_2018.tif
-GMEX_IDW_Fowlerichthys_radiosus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Fowlerichthys radiosus\GMEX_IDW_Fowlerichthys_radiosus_2019.tif
-GMEX_IDW_Fowlerichthys_radiosus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Fowlerichthys radiosus\GMEX_IDW_Fowlerichthys_radiosus_2021.tif
-GMEX_IDW_Fowlerichthys_radiosus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Fowlerichthys radiosus\GMEX_IDW_Fowlerichthys_radiosus_2022.tif
-GMEX_IDW_Fowlerichthys_radiosus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Fowlerichthys radiosus\GMEX_IDW_Fowlerichthys_radiosus_2023.tif
-GMEX_IDW_Fowlerichthys_radiosus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Fowlerichthys radiosus\GMEX_IDW_Fowlerichthys_radiosus_2024.tif
-GMEX_IDW_Gymnothorax_saxicola_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2010.tif
-GMEX_IDW_Gymnothorax_saxicola_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2011.tif
-GMEX_IDW_Gymnothorax_saxicola_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2012.tif
-GMEX_IDW_Gymnothorax_saxicola_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2013.tif
-GMEX_IDW_Gymnothorax_saxicola_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2014.tif
-GMEX_IDW_Gymnothorax_saxicola_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2015.tif
-GMEX_IDW_Gymnothorax_saxicola_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2016.tif
-GMEX_IDW_Gymnothorax_saxicola_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2017.tif
-GMEX_IDW_Gymnothorax_saxicola_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2018.tif
-GMEX_IDW_Gymnothorax_saxicola_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2019.tif
-GMEX_IDW_Gymnothorax_saxicola_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2021.tif
-GMEX_IDW_Gymnothorax_saxicola_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2022.tif
-GMEX_IDW_Gymnothorax_saxicola_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2023.tif
-GMEX_IDW_Gymnothorax_saxicola_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Gymnothorax saxicola\GMEX_IDW_Gymnothorax_saxicola_2024.tif
-GMEX_IDW_Haemulon_aurolineatum_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2010.tif
-GMEX_IDW_Haemulon_aurolineatum_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2011.tif
-GMEX_IDW_Haemulon_aurolineatum_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2012.tif
-GMEX_IDW_Haemulon_aurolineatum_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2013.tif
-GMEX_IDW_Haemulon_aurolineatum_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2014.tif
-GMEX_IDW_Haemulon_aurolineatum_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2015.tif
-GMEX_IDW_Haemulon_aurolineatum_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2016.tif
-GMEX_IDW_Haemulon_aurolineatum_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2017.tif
-GMEX_IDW_Haemulon_aurolineatum_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2018.tif
-GMEX_IDW_Haemulon_aurolineatum_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2019.tif
-GMEX_IDW_Haemulon_aurolineatum_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2021.tif
-GMEX_IDW_Haemulon_aurolineatum_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2022.tif
-GMEX_IDW_Haemulon_aurolineatum_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2023.tif
-GMEX_IDW_Haemulon_aurolineatum_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon aurolineatum\GMEX_IDW_Haemulon_aurolineatum_2024.tif
-GMEX_IDW_Haemulon_plumierii_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon plumierii\GMEX_IDW_Haemulon_plumierii_2010.tif
-GMEX_IDW_Haemulon_plumierii_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon plumierii\GMEX_IDW_Haemulon_plumierii_2011.tif
-GMEX_IDW_Haemulon_plumierii_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon plumierii\GMEX_IDW_Haemulon_plumierii_2012.tif
-GMEX_IDW_Haemulon_plumierii_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon plumierii\GMEX_IDW_Haemulon_plumierii_2013.tif
-GMEX_IDW_Haemulon_plumierii_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon plumierii\GMEX_IDW_Haemulon_plumierii_2014.tif
-GMEX_IDW_Haemulon_plumierii_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon plumierii\GMEX_IDW_Haemulon_plumierii_2015.tif
-GMEX_IDW_Haemulon_plumierii_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon plumierii\GMEX_IDW_Haemulon_plumierii_2016.tif
-GMEX_IDW_Haemulon_plumierii_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon plumierii\GMEX_IDW_Haemulon_plumierii_2017.tif
-GMEX_IDW_Haemulon_plumierii_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon plumierii\GMEX_IDW_Haemulon_plumierii_2018.tif
-GMEX_IDW_Haemulon_plumierii_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon plumierii\GMEX_IDW_Haemulon_plumierii_2019.tif
-GMEX_IDW_Haemulon_plumierii_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon plumierii\GMEX_IDW_Haemulon_plumierii_2021.tif
-GMEX_IDW_Haemulon_plumierii_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon plumierii\GMEX_IDW_Haemulon_plumierii_2022.tif
-GMEX_IDW_Haemulon_plumierii_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon plumierii\GMEX_IDW_Haemulon_plumierii_2023.tif
-GMEX_IDW_Haemulon_plumierii_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Haemulon plumierii\GMEX_IDW_Haemulon_plumierii_2024.tif
-GMEX_IDW_Halieutichthys_sp_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Halieutichthys sp\GMEX_IDW_Halieutichthys_sp_2010.tif
-GMEX_IDW_Halieutichthys_sp_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Halieutichthys sp\GMEX_IDW_Halieutichthys_sp_2011.tif
-GMEX_IDW_Halieutichthys_sp_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Halieutichthys sp\GMEX_IDW_Halieutichthys_sp_2012.tif
-GMEX_IDW_Halieutichthys_sp_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Halieutichthys sp\GMEX_IDW_Halieutichthys_sp_2013.tif
-GMEX_IDW_Halieutichthys_sp_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Halieutichthys sp\GMEX_IDW_Halieutichthys_sp_2014.tif
-GMEX_IDW_Halieutichthys_sp_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Halieutichthys sp\GMEX_IDW_Halieutichthys_sp_2015.tif
-GMEX_IDW_Halieutichthys_sp_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Halieutichthys sp\GMEX_IDW_Halieutichthys_sp_2016.tif
-GMEX_IDW_Halieutichthys_sp_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Halieutichthys sp\GMEX_IDW_Halieutichthys_sp_2017.tif
-GMEX_IDW_Halieutichthys_sp_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Halieutichthys sp\GMEX_IDW_Halieutichthys_sp_2018.tif
-GMEX_IDW_Halieutichthys_sp_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Halieutichthys sp\GMEX_IDW_Halieutichthys_sp_2019.tif
-GMEX_IDW_Halieutichthys_sp_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Halieutichthys sp\GMEX_IDW_Halieutichthys_sp_2021.tif
-GMEX_IDW_Halieutichthys_sp_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Halieutichthys sp\GMEX_IDW_Halieutichthys_sp_2022.tif
-GMEX_IDW_Halieutichthys_sp_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Halieutichthys sp\GMEX_IDW_Halieutichthys_sp_2023.tif
-GMEX_IDW_Halieutichthys_sp_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:19:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Halieutichthys sp\GMEX_IDW_Halieutichthys_sp_2024.tif
-GMEX_IDW_Harengula_jaguana_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2010.tif
-GMEX_IDW_Harengula_jaguana_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2011.tif
-GMEX_IDW_Harengula_jaguana_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2012.tif
-GMEX_IDW_Harengula_jaguana_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2013.tif
-GMEX_IDW_Harengula_jaguana_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2014.tif
-GMEX_IDW_Harengula_jaguana_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2015.tif
-GMEX_IDW_Harengula_jaguana_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2016.tif
-GMEX_IDW_Harengula_jaguana_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2017.tif
-GMEX_IDW_Harengula_jaguana_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2018.tif
-GMEX_IDW_Harengula_jaguana_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2019.tif
-GMEX_IDW_Harengula_jaguana_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2021.tif
-GMEX_IDW_Harengula_jaguana_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2022.tif
-GMEX_IDW_Harengula_jaguana_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2023.tif
-GMEX_IDW_Harengula_jaguana_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Harengula jaguana\GMEX_IDW_Harengula_jaguana_2024.tif
-GMEX_IDW_Hippocampus_erectus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Hippocampus erectus\GMEX_IDW_Hippocampus_erectus_2010.tif
-GMEX_IDW_Hippocampus_erectus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Hippocampus erectus\GMEX_IDW_Hippocampus_erectus_2011.tif
-GMEX_IDW_Hippocampus_erectus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Hippocampus erectus\GMEX_IDW_Hippocampus_erectus_2012.tif
-GMEX_IDW_Hippocampus_erectus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Hippocampus erectus\GMEX_IDW_Hippocampus_erectus_2013.tif
-GMEX_IDW_Hippocampus_erectus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Hippocampus erectus\GMEX_IDW_Hippocampus_erectus_2014.tif
-GMEX_IDW_Hippocampus_erectus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Hippocampus erectus\GMEX_IDW_Hippocampus_erectus_2015.tif
-GMEX_IDW_Hippocampus_erectus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Hippocampus erectus\GMEX_IDW_Hippocampus_erectus_2016.tif
-GMEX_IDW_Hippocampus_erectus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Hippocampus erectus\GMEX_IDW_Hippocampus_erectus_2017.tif
-GMEX_IDW_Hippocampus_erectus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Hippocampus erectus\GMEX_IDW_Hippocampus_erectus_2018.tif
-GMEX_IDW_Hippocampus_erectus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Hippocampus erectus\GMEX_IDW_Hippocampus_erectus_2019.tif
-GMEX_IDW_Hippocampus_erectus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Hippocampus erectus\GMEX_IDW_Hippocampus_erectus_2021.tif
-GMEX_IDW_Hippocampus_erectus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Hippocampus erectus\GMEX_IDW_Hippocampus_erectus_2022.tif
-GMEX_IDW_Hippocampus_erectus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Hippocampus erectus\GMEX_IDW_Hippocampus_erectus_2023.tif
-GMEX_IDW_Hippocampus_erectus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Hippocampus erectus\GMEX_IDW_Hippocampus_erectus_2024.tif
-GMEX_IDW_Kathetostoma_albigutta_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2010.tif
-GMEX_IDW_Kathetostoma_albigutta_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2011.tif
-GMEX_IDW_Kathetostoma_albigutta_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2012.tif
-GMEX_IDW_Kathetostoma_albigutta_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2013.tif
-GMEX_IDW_Kathetostoma_albigutta_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2014.tif
-GMEX_IDW_Kathetostoma_albigutta_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2015.tif
-GMEX_IDW_Kathetostoma_albigutta_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2016.tif
-GMEX_IDW_Kathetostoma_albigutta_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2017.tif
-GMEX_IDW_Kathetostoma_albigutta_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2018.tif
-GMEX_IDW_Kathetostoma_albigutta_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2019.tif
-GMEX_IDW_Kathetostoma_albigutta_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2021.tif
-GMEX_IDW_Kathetostoma_albigutta_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2022.tif
-GMEX_IDW_Kathetostoma_albigutta_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2023.tif
-GMEX_IDW_Kathetostoma_albigutta_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Kathetostoma albigutta\GMEX_IDW_Kathetostoma_albigutta_2024.tif
-GMEX_IDW_Lagocephalus_laevigatus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2010.tif
-GMEX_IDW_Lagocephalus_laevigatus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2011.tif
-GMEX_IDW_Lagocephalus_laevigatus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2012.tif
-GMEX_IDW_Lagocephalus_laevigatus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2013.tif
-GMEX_IDW_Lagocephalus_laevigatus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2014.tif
-GMEX_IDW_Lagocephalus_laevigatus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2015.tif
-GMEX_IDW_Lagocephalus_laevigatus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2016.tif
-GMEX_IDW_Lagocephalus_laevigatus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2017.tif
-GMEX_IDW_Lagocephalus_laevigatus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2018.tif
-GMEX_IDW_Lagocephalus_laevigatus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2019.tif
-GMEX_IDW_Lagocephalus_laevigatus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2021.tif
-GMEX_IDW_Lagocephalus_laevigatus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2022.tif
-GMEX_IDW_Lagocephalus_laevigatus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2023.tif
-GMEX_IDW_Lagocephalus_laevigatus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagocephalus laevigatus\GMEX_IDW_Lagocephalus_laevigatus_2024.tif
-GMEX_IDW_Lagodon_rhomboides_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2010.tif
-GMEX_IDW_Lagodon_rhomboides_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2011.tif
-GMEX_IDW_Lagodon_rhomboides_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2012.tif
-GMEX_IDW_Lagodon_rhomboides_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2013.tif
-GMEX_IDW_Lagodon_rhomboides_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2014.tif
-GMEX_IDW_Lagodon_rhomboides_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2015.tif
-GMEX_IDW_Lagodon_rhomboides_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2016.tif
-GMEX_IDW_Lagodon_rhomboides_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2017.tif
-GMEX_IDW_Lagodon_rhomboides_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2018.tif
-GMEX_IDW_Lagodon_rhomboides_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2019.tif
-GMEX_IDW_Lagodon_rhomboides_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2021.tif
-GMEX_IDW_Lagodon_rhomboides_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2022.tif
-GMEX_IDW_Lagodon_rhomboides_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2023.tif
-GMEX_IDW_Lagodon_rhomboides_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lagodon rhomboides\GMEX_IDW_Lagodon_rhomboides_2024.tif
-GMEX_IDW_Larimus_fasciatus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2010.tif
-GMEX_IDW_Larimus_fasciatus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2011.tif
-GMEX_IDW_Larimus_fasciatus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2012.tif
-GMEX_IDW_Larimus_fasciatus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2013.tif
-GMEX_IDW_Larimus_fasciatus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2014.tif
-GMEX_IDW_Larimus_fasciatus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2015.tif
-GMEX_IDW_Larimus_fasciatus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2016.tif
-GMEX_IDW_Larimus_fasciatus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2017.tif
-GMEX_IDW_Larimus_fasciatus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2018.tif
-GMEX_IDW_Larimus_fasciatus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2019.tif
-GMEX_IDW_Larimus_fasciatus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2021.tif
-GMEX_IDW_Larimus_fasciatus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2022.tif
-GMEX_IDW_Larimus_fasciatus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2023.tif
-GMEX_IDW_Larimus_fasciatus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Larimus fasciatus\GMEX_IDW_Larimus_fasciatus_2024.tif
-GMEX_IDW_Leiolambrus_nitidus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2010.tif
-GMEX_IDW_Leiolambrus_nitidus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2011.tif
-GMEX_IDW_Leiolambrus_nitidus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2012.tif
-GMEX_IDW_Leiolambrus_nitidus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2013.tif
-GMEX_IDW_Leiolambrus_nitidus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2014.tif
-GMEX_IDW_Leiolambrus_nitidus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2015.tif
-GMEX_IDW_Leiolambrus_nitidus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2016.tif
-GMEX_IDW_Leiolambrus_nitidus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2017.tif
-GMEX_IDW_Leiolambrus_nitidus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2018.tif
-GMEX_IDW_Leiolambrus_nitidus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2019.tif
-GMEX_IDW_Leiolambrus_nitidus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2021.tif
-GMEX_IDW_Leiolambrus_nitidus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2022.tif
-GMEX_IDW_Leiolambrus_nitidus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2023.tif
-GMEX_IDW_Leiolambrus_nitidus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiolambrus nitidus\GMEX_IDW_Leiolambrus_nitidus_2024.tif
-GMEX_IDW_Leiostomus_xanthurus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2010.tif
-GMEX_IDW_Leiostomus_xanthurus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2011.tif
-GMEX_IDW_Leiostomus_xanthurus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2012.tif
-GMEX_IDW_Leiostomus_xanthurus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2013.tif
-GMEX_IDW_Leiostomus_xanthurus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2014.tif
-GMEX_IDW_Leiostomus_xanthurus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2015.tif
-GMEX_IDW_Leiostomus_xanthurus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2016.tif
-GMEX_IDW_Leiostomus_xanthurus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2017.tif
-GMEX_IDW_Leiostomus_xanthurus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2018.tif
-GMEX_IDW_Leiostomus_xanthurus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2019.tif
-GMEX_IDW_Leiostomus_xanthurus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2021.tif
-GMEX_IDW_Leiostomus_xanthurus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2022.tif
-GMEX_IDW_Leiostomus_xanthurus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2023.tif
-GMEX_IDW_Leiostomus_xanthurus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Leiostomus xanthurus\GMEX_IDW_Leiostomus_xanthurus_2024.tif
-GMEX_IDW_Lepophidium_brevibarbe_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2010.tif
-GMEX_IDW_Lepophidium_brevibarbe_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2011.tif
-GMEX_IDW_Lepophidium_brevibarbe_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2012.tif
-GMEX_IDW_Lepophidium_brevibarbe_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2013.tif
-GMEX_IDW_Lepophidium_brevibarbe_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2014.tif
-GMEX_IDW_Lepophidium_brevibarbe_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2015.tif
-GMEX_IDW_Lepophidium_brevibarbe_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2016.tif
-GMEX_IDW_Lepophidium_brevibarbe_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2017.tif
-GMEX_IDW_Lepophidium_brevibarbe_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2018.tif
-GMEX_IDW_Lepophidium_brevibarbe_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2019.tif
-GMEX_IDW_Lepophidium_brevibarbe_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2021.tif
-GMEX_IDW_Lepophidium_brevibarbe_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2022.tif
-GMEX_IDW_Lepophidium_brevibarbe_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2023.tif
-GMEX_IDW_Lepophidium_brevibarbe_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium brevibarbe\GMEX_IDW_Lepophidium_brevibarbe_2024.tif
-GMEX_IDW_Lepophidium_jeannae_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2010.tif
-GMEX_IDW_Lepophidium_jeannae_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2011.tif
-GMEX_IDW_Lepophidium_jeannae_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2012.tif
-GMEX_IDW_Lepophidium_jeannae_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2013.tif
-GMEX_IDW_Lepophidium_jeannae_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2014.tif
-GMEX_IDW_Lepophidium_jeannae_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2015.tif
-GMEX_IDW_Lepophidium_jeannae_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2016.tif
-GMEX_IDW_Lepophidium_jeannae_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2017.tif
-GMEX_IDW_Lepophidium_jeannae_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2018.tif
-GMEX_IDW_Lepophidium_jeannae_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2019.tif
-GMEX_IDW_Lepophidium_jeannae_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2021.tif
-GMEX_IDW_Lepophidium_jeannae_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2022.tif
-GMEX_IDW_Lepophidium_jeannae_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2023.tif
-GMEX_IDW_Lepophidium_jeannae_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lepophidium jeannae\GMEX_IDW_Lepophidium_jeannae_2024.tif
-GMEX_IDW_Lolliguncula_brevis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2010.tif
-GMEX_IDW_Lolliguncula_brevis_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2011.tif
-GMEX_IDW_Lolliguncula_brevis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2012.tif
-GMEX_IDW_Lolliguncula_brevis_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2013.tif
-GMEX_IDW_Lolliguncula_brevis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2014.tif
-GMEX_IDW_Lolliguncula_brevis_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2015.tif
-GMEX_IDW_Lolliguncula_brevis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2016.tif
-GMEX_IDW_Lolliguncula_brevis_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2017.tif
-GMEX_IDW_Lolliguncula_brevis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2018.tif
-GMEX_IDW_Lolliguncula_brevis_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2019.tif
-GMEX_IDW_Lolliguncula_brevis_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2021.tif
-GMEX_IDW_Lolliguncula_brevis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2022.tif
-GMEX_IDW_Lolliguncula_brevis_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2023.tif
-GMEX_IDW_Lolliguncula_brevis_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lolliguncula brevis\GMEX_IDW_Lolliguncula_brevis_2024.tif
-GMEX_IDW_Luidia_clathrata_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2010.tif
-GMEX_IDW_Luidia_clathrata_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2011.tif
-GMEX_IDW_Luidia_clathrata_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2012.tif
-GMEX_IDW_Luidia_clathrata_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2013.tif
-GMEX_IDW_Luidia_clathrata_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2014.tif
-GMEX_IDW_Luidia_clathrata_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2015.tif
-GMEX_IDW_Luidia_clathrata_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2016.tif
-GMEX_IDW_Luidia_clathrata_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2017.tif
-GMEX_IDW_Luidia_clathrata_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2018.tif
-GMEX_IDW_Luidia_clathrata_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2019.tif
-GMEX_IDW_Luidia_clathrata_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2021.tif
-GMEX_IDW_Luidia_clathrata_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2022.tif
-GMEX_IDW_Luidia_clathrata_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2023.tif
-GMEX_IDW_Luidia_clathrata_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Luidia clathrata\GMEX_IDW_Luidia_clathrata_2024.tif
-GMEX_IDW_Lutjanus_campechanus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2010.tif
-GMEX_IDW_Lutjanus_campechanus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2011.tif
-GMEX_IDW_Lutjanus_campechanus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2012.tif
-GMEX_IDW_Lutjanus_campechanus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2013.tif
-GMEX_IDW_Lutjanus_campechanus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2014.tif
-GMEX_IDW_Lutjanus_campechanus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2015.tif
-GMEX_IDW_Lutjanus_campechanus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2016.tif
-GMEX_IDW_Lutjanus_campechanus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2017.tif
-GMEX_IDW_Lutjanus_campechanus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2018.tif
-GMEX_IDW_Lutjanus_campechanus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2019.tif
-GMEX_IDW_Lutjanus_campechanus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2021.tif
-GMEX_IDW_Lutjanus_campechanus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2022.tif
-GMEX_IDW_Lutjanus_campechanus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2023.tif
-GMEX_IDW_Lutjanus_campechanus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus campechanus\GMEX_IDW_Lutjanus_campechanus_2024.tif
-GMEX_IDW_Lutjanus_griseus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2010.tif
-GMEX_IDW_Lutjanus_griseus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2011.tif
-GMEX_IDW_Lutjanus_griseus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2012.tif
-GMEX_IDW_Lutjanus_griseus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2013.tif
-GMEX_IDW_Lutjanus_griseus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2014.tif
-GMEX_IDW_Lutjanus_griseus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2015.tif
-GMEX_IDW_Lutjanus_griseus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2016.tif
-GMEX_IDW_Lutjanus_griseus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2017.tif
-GMEX_IDW_Lutjanus_griseus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2018.tif
-GMEX_IDW_Lutjanus_griseus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2019.tif
-GMEX_IDW_Lutjanus_griseus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2021.tif
-GMEX_IDW_Lutjanus_griseus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2022.tif
-GMEX_IDW_Lutjanus_griseus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2023.tif
-GMEX_IDW_Lutjanus_griseus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus griseus\GMEX_IDW_Lutjanus_griseus_2024.tif
-GMEX_IDW_Lutjanus_synagris_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2010.tif
-GMEX_IDW_Lutjanus_synagris_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:27:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2011.tif
-GMEX_IDW_Lutjanus_synagris_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2012.tif
-GMEX_IDW_Lutjanus_synagris_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2013.tif
-GMEX_IDW_Lutjanus_synagris_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2014.tif
-GMEX_IDW_Lutjanus_synagris_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2015.tif
-GMEX_IDW_Lutjanus_synagris_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2016.tif
-GMEX_IDW_Lutjanus_synagris_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2017.tif
-GMEX_IDW_Lutjanus_synagris_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2018.tif
-GMEX_IDW_Lutjanus_synagris_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2019.tif
-GMEX_IDW_Lutjanus_synagris_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2021.tif
-GMEX_IDW_Lutjanus_synagris_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2022.tif
-GMEX_IDW_Lutjanus_synagris_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2023.tif
-GMEX_IDW_Lutjanus_synagris_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Lutjanus synagris\GMEX_IDW_Lutjanus_synagris_2024.tif
-GMEX_IDW_Metapenaeopsis_goodei_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2010.tif
-GMEX_IDW_Metapenaeopsis_goodei_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2011.tif
-GMEX_IDW_Metapenaeopsis_goodei_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2012.tif
-GMEX_IDW_Metapenaeopsis_goodei_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2013.tif
-GMEX_IDW_Metapenaeopsis_goodei_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2014.tif
-GMEX_IDW_Metapenaeopsis_goodei_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2015.tif
-GMEX_IDW_Metapenaeopsis_goodei_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2016.tif
-GMEX_IDW_Metapenaeopsis_goodei_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2017.tif
-GMEX_IDW_Metapenaeopsis_goodei_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2018.tif
-GMEX_IDW_Metapenaeopsis_goodei_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2019.tif
-GMEX_IDW_Metapenaeopsis_goodei_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2021.tif
-GMEX_IDW_Metapenaeopsis_goodei_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2022.tif
-GMEX_IDW_Metapenaeopsis_goodei_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2023.tif
-GMEX_IDW_Metapenaeopsis_goodei_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Metapenaeopsis goodei\GMEX_IDW_Metapenaeopsis_goodei_2024.tif
-GMEX_IDW_Micropogonias_undulatus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2010.tif
-GMEX_IDW_Micropogonias_undulatus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2011.tif
-GMEX_IDW_Micropogonias_undulatus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2012.tif
-GMEX_IDW_Micropogonias_undulatus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2013.tif
-GMEX_IDW_Micropogonias_undulatus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2014.tif
-GMEX_IDW_Micropogonias_undulatus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2015.tif
-GMEX_IDW_Micropogonias_undulatus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2016.tif
-GMEX_IDW_Micropogonias_undulatus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2017.tif
-GMEX_IDW_Micropogonias_undulatus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2018.tif
-GMEX_IDW_Micropogonias_undulatus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2019.tif
-GMEX_IDW_Micropogonias_undulatus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2021.tif
-GMEX_IDW_Micropogonias_undulatus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2022.tif
-GMEX_IDW_Micropogonias_undulatus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2023.tif
-GMEX_IDW_Micropogonias_undulatus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Micropogonias undulatus\GMEX_IDW_Micropogonias_undulatus_2024.tif
-GMEX_IDW_Monacanthus_ciliatus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2010.tif
-GMEX_IDW_Monacanthus_ciliatus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2011.tif
-GMEX_IDW_Monacanthus_ciliatus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2012.tif
-GMEX_IDW_Monacanthus_ciliatus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2013.tif
-GMEX_IDW_Monacanthus_ciliatus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2014.tif
-GMEX_IDW_Monacanthus_ciliatus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2015.tif
-GMEX_IDW_Monacanthus_ciliatus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2016.tif
-GMEX_IDW_Monacanthus_ciliatus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2017.tif
-GMEX_IDW_Monacanthus_ciliatus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2018.tif
-GMEX_IDW_Monacanthus_ciliatus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2019.tif
-GMEX_IDW_Monacanthus_ciliatus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2021.tif
-GMEX_IDW_Monacanthus_ciliatus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2022.tif
-GMEX_IDW_Monacanthus_ciliatus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2023.tif
-GMEX_IDW_Monacanthus_ciliatus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Monacanthus ciliatus\GMEX_IDW_Monacanthus_ciliatus_2024.tif
-GMEX_IDW_Moreiradromia_antillensis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Moreiradromia antillensis\GMEX_IDW_Moreiradromia_antillensis_2010.tif
-GMEX_IDW_Moreiradromia_antillensis_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Moreiradromia antillensis\GMEX_IDW_Moreiradromia_antillensis_2011.tif
-GMEX_IDW_Moreiradromia_antillensis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Moreiradromia antillensis\GMEX_IDW_Moreiradromia_antillensis_2012.tif
-GMEX_IDW_Moreiradromia_antillensis_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Moreiradromia antillensis\GMEX_IDW_Moreiradromia_antillensis_2013.tif
-GMEX_IDW_Moreiradromia_antillensis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Moreiradromia antillensis\GMEX_IDW_Moreiradromia_antillensis_2014.tif
-GMEX_IDW_Moreiradromia_antillensis_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Moreiradromia antillensis\GMEX_IDW_Moreiradromia_antillensis_2015.tif
-GMEX_IDW_Moreiradromia_antillensis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Moreiradromia antillensis\GMEX_IDW_Moreiradromia_antillensis_2016.tif
-GMEX_IDW_Moreiradromia_antillensis_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Moreiradromia antillensis\GMEX_IDW_Moreiradromia_antillensis_2017.tif
-GMEX_IDW_Moreiradromia_antillensis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Moreiradromia antillensis\GMEX_IDW_Moreiradromia_antillensis_2018.tif
-GMEX_IDW_Moreiradromia_antillensis_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Moreiradromia antillensis\GMEX_IDW_Moreiradromia_antillensis_2019.tif
-GMEX_IDW_Moreiradromia_antillensis_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Moreiradromia antillensis\GMEX_IDW_Moreiradromia_antillensis_2021.tif
-GMEX_IDW_Moreiradromia_antillensis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Moreiradromia antillensis\GMEX_IDW_Moreiradromia_antillensis_2022.tif
-GMEX_IDW_Moreiradromia_antillensis_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Moreiradromia antillensis\GMEX_IDW_Moreiradromia_antillensis_2023.tif
-GMEX_IDW_Moreiradromia_antillensis_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Moreiradromia antillensis\GMEX_IDW_Moreiradromia_antillensis_2024.tif
-GMEX_IDW_Mullus_auratus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2010.tif
-GMEX_IDW_Mullus_auratus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2011.tif
-GMEX_IDW_Mullus_auratus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2012.tif
-GMEX_IDW_Mullus_auratus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2013.tif
-GMEX_IDW_Mullus_auratus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2014.tif
-GMEX_IDW_Mullus_auratus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2015.tif
-GMEX_IDW_Mullus_auratus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2016.tif
-GMEX_IDW_Mullus_auratus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2017.tif
-GMEX_IDW_Mullus_auratus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2018.tif
-GMEX_IDW_Mullus_auratus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2019.tif
-GMEX_IDW_Mullus_auratus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2021.tif
-GMEX_IDW_Mullus_auratus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2022.tif
-GMEX_IDW_Mullus_auratus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2023.tif
-GMEX_IDW_Mullus_auratus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Mullus auratus\GMEX_IDW_Mullus_auratus_2024.tif
-GMEX_IDW_Nicholsina_usta_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2010.tif
-GMEX_IDW_Nicholsina_usta_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2011.tif
-GMEX_IDW_Nicholsina_usta_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2012.tif
-GMEX_IDW_Nicholsina_usta_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2013.tif
-GMEX_IDW_Nicholsina_usta_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2014.tif
-GMEX_IDW_Nicholsina_usta_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2015.tif
-GMEX_IDW_Nicholsina_usta_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2016.tif
-GMEX_IDW_Nicholsina_usta_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2017.tif
-GMEX_IDW_Nicholsina_usta_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2018.tif
-GMEX_IDW_Nicholsina_usta_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2019.tif
-GMEX_IDW_Nicholsina_usta_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2021.tif
-GMEX_IDW_Nicholsina_usta_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2022.tif
-GMEX_IDW_Nicholsina_usta_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2023.tif
-GMEX_IDW_Nicholsina_usta_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Nicholsina usta\GMEX_IDW_Nicholsina_usta_2024.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2010.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2011.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2012.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2013.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2014.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2015.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2016.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2017.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2018.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2019.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2021.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2022.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2023.tif
-GMEX_IDW_Ogcocephalus_declivirostris_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus declivirostris\GMEX_IDW_Ogcocephalus_declivirostris_2024.tif
-GMEX_IDW_Ogcocephalus_parvus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus parvus\GMEX_IDW_Ogcocephalus_parvus_2010.tif
-GMEX_IDW_Ogcocephalus_parvus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus parvus\GMEX_IDW_Ogcocephalus_parvus_2011.tif
-GMEX_IDW_Ogcocephalus_parvus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus parvus\GMEX_IDW_Ogcocephalus_parvus_2012.tif
-GMEX_IDW_Ogcocephalus_parvus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus parvus\GMEX_IDW_Ogcocephalus_parvus_2013.tif
-GMEX_IDW_Ogcocephalus_parvus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus parvus\GMEX_IDW_Ogcocephalus_parvus_2014.tif
-GMEX_IDW_Ogcocephalus_parvus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus parvus\GMEX_IDW_Ogcocephalus_parvus_2015.tif
-GMEX_IDW_Ogcocephalus_parvus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus parvus\GMEX_IDW_Ogcocephalus_parvus_2016.tif
-GMEX_IDW_Ogcocephalus_parvus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus parvus\GMEX_IDW_Ogcocephalus_parvus_2017.tif
-GMEX_IDW_Ogcocephalus_parvus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus parvus\GMEX_IDW_Ogcocephalus_parvus_2018.tif
-GMEX_IDW_Ogcocephalus_parvus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus parvus\GMEX_IDW_Ogcocephalus_parvus_2019.tif
-GMEX_IDW_Ogcocephalus_parvus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus parvus\GMEX_IDW_Ogcocephalus_parvus_2021.tif
-GMEX_IDW_Ogcocephalus_parvus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus parvus\GMEX_IDW_Ogcocephalus_parvus_2022.tif
-GMEX_IDW_Ogcocephalus_parvus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus parvus\GMEX_IDW_Ogcocephalus_parvus_2023.tif
-GMEX_IDW_Ogcocephalus_parvus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ogcocephalus parvus\GMEX_IDW_Ogcocephalus_parvus_2024.tif
-GMEX_IDW_Ophidion_holbrookii_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophidion holbrookii\GMEX_IDW_Ophidion_holbrookii_2010.tif
-GMEX_IDW_Ophidion_holbrookii_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophidion holbrookii\GMEX_IDW_Ophidion_holbrookii_2011.tif
-GMEX_IDW_Ophidion_holbrookii_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophidion holbrookii\GMEX_IDW_Ophidion_holbrookii_2012.tif
-GMEX_IDW_Ophidion_holbrookii_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophidion holbrookii\GMEX_IDW_Ophidion_holbrookii_2013.tif
-GMEX_IDW_Ophidion_holbrookii_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophidion holbrookii\GMEX_IDW_Ophidion_holbrookii_2014.tif
-GMEX_IDW_Ophidion_holbrookii_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophidion holbrookii\GMEX_IDW_Ophidion_holbrookii_2015.tif
-GMEX_IDW_Ophidion_holbrookii_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophidion holbrookii\GMEX_IDW_Ophidion_holbrookii_2016.tif
-GMEX_IDW_Ophidion_holbrookii_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophidion holbrookii\GMEX_IDW_Ophidion_holbrookii_2017.tif
-GMEX_IDW_Ophidion_holbrookii_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophidion holbrookii\GMEX_IDW_Ophidion_holbrookii_2018.tif
-GMEX_IDW_Ophidion_holbrookii_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophidion holbrookii\GMEX_IDW_Ophidion_holbrookii_2019.tif
-GMEX_IDW_Ophidion_holbrookii_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophidion holbrookii\GMEX_IDW_Ophidion_holbrookii_2021.tif
-GMEX_IDW_Ophidion_holbrookii_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophidion holbrookii\GMEX_IDW_Ophidion_holbrookii_2022.tif
-GMEX_IDW_Ophidion_holbrookii_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophidion holbrookii\GMEX_IDW_Ophidion_holbrookii_2023.tif
-GMEX_IDW_Ophidion_holbrookii_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophidion holbrookii\GMEX_IDW_Ophidion_holbrookii_2024.tif
-GMEX_IDW_Ophiolepis_elegans_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2010.tif
-GMEX_IDW_Ophiolepis_elegans_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2011.tif
-GMEX_IDW_Ophiolepis_elegans_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2012.tif
-GMEX_IDW_Ophiolepis_elegans_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2013.tif
-GMEX_IDW_Ophiolepis_elegans_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2014.tif
-GMEX_IDW_Ophiolepis_elegans_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2015.tif
-GMEX_IDW_Ophiolepis_elegans_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2016.tif
-GMEX_IDW_Ophiolepis_elegans_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2017.tif
-GMEX_IDW_Ophiolepis_elegans_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2018.tif
-GMEX_IDW_Ophiolepis_elegans_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2019.tif
-GMEX_IDW_Ophiolepis_elegans_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2021.tif
-GMEX_IDW_Ophiolepis_elegans_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2022.tif
-GMEX_IDW_Ophiolepis_elegans_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2023.tif
-GMEX_IDW_Ophiolepis_elegans_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Ophiolepis elegans\GMEX_IDW_Ophiolepis_elegans_2024.tif
-GMEX_IDW_Opisthonema_oglinum_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2010.tif
-GMEX_IDW_Opisthonema_oglinum_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2011.tif
-GMEX_IDW_Opisthonema_oglinum_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2012.tif
-GMEX_IDW_Opisthonema_oglinum_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2013.tif
-GMEX_IDW_Opisthonema_oglinum_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2014.tif
-GMEX_IDW_Opisthonema_oglinum_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2015.tif
-GMEX_IDW_Opisthonema_oglinum_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2016.tif
-GMEX_IDW_Opisthonema_oglinum_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2017.tif
-GMEX_IDW_Opisthonema_oglinum_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2018.tif
-GMEX_IDW_Opisthonema_oglinum_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2019.tif
-GMEX_IDW_Opisthonema_oglinum_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2021.tif
-GMEX_IDW_Opisthonema_oglinum_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2022.tif
-GMEX_IDW_Opisthonema_oglinum_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2023.tif
-GMEX_IDW_Opisthonema_oglinum_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Opisthonema oglinum\GMEX_IDW_Opisthonema_oglinum_2024.tif
-GMEX_IDW_Orthopristis_chrysoptera_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Orthopristis chrysoptera\GMEX_IDW_Orthopristis_chrysoptera_2010.tif
-GMEX_IDW_Orthopristis_chrysoptera_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Orthopristis chrysoptera\GMEX_IDW_Orthopristis_chrysoptera_2011.tif
-GMEX_IDW_Orthopristis_chrysoptera_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Orthopristis chrysoptera\GMEX_IDW_Orthopristis_chrysoptera_2012.tif
-GMEX_IDW_Orthopristis_chrysoptera_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Orthopristis chrysoptera\GMEX_IDW_Orthopristis_chrysoptera_2013.tif
-GMEX_IDW_Orthopristis_chrysoptera_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Orthopristis chrysoptera\GMEX_IDW_Orthopristis_chrysoptera_2014.tif
-GMEX_IDW_Orthopristis_chrysoptera_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Orthopristis chrysoptera\GMEX_IDW_Orthopristis_chrysoptera_2015.tif
-GMEX_IDW_Orthopristis_chrysoptera_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Orthopristis chrysoptera\GMEX_IDW_Orthopristis_chrysoptera_2016.tif
-GMEX_IDW_Orthopristis_chrysoptera_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Orthopristis chrysoptera\GMEX_IDW_Orthopristis_chrysoptera_2017.tif
-GMEX_IDW_Orthopristis_chrysoptera_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Orthopristis chrysoptera\GMEX_IDW_Orthopristis_chrysoptera_2018.tif
-GMEX_IDW_Orthopristis_chrysoptera_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Orthopristis chrysoptera\GMEX_IDW_Orthopristis_chrysoptera_2019.tif
-GMEX_IDW_Orthopristis_chrysoptera_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Orthopristis chrysoptera\GMEX_IDW_Orthopristis_chrysoptera_2021.tif
-GMEX_IDW_Orthopristis_chrysoptera_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Orthopristis chrysoptera\GMEX_IDW_Orthopristis_chrysoptera_2022.tif
-GMEX_IDW_Orthopristis_chrysoptera_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Orthopristis chrysoptera\GMEX_IDW_Orthopristis_chrysoptera_2023.tif
-GMEX_IDW_Orthopristis_chrysoptera_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Orthopristis chrysoptera\GMEX_IDW_Orthopristis_chrysoptera_2024.tif
-GMEX_IDW_Penaeus_aztecus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2010.tif
-GMEX_IDW_Penaeus_aztecus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2011.tif
-GMEX_IDW_Penaeus_aztecus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2012.tif
-GMEX_IDW_Penaeus_aztecus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2013.tif
-GMEX_IDW_Penaeus_aztecus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2014.tif
-GMEX_IDW_Penaeus_aztecus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2015.tif
-GMEX_IDW_Penaeus_aztecus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2016.tif
-GMEX_IDW_Penaeus_aztecus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2017.tif
-GMEX_IDW_Penaeus_aztecus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2018.tif
-GMEX_IDW_Penaeus_aztecus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2019.tif
-GMEX_IDW_Penaeus_aztecus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2021.tif
-GMEX_IDW_Penaeus_aztecus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2022.tif
-GMEX_IDW_Penaeus_aztecus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2023.tif
-GMEX_IDW_Penaeus_aztecus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus aztecus\GMEX_IDW_Penaeus_aztecus_2024.tif
-GMEX_IDW_Penaeus_duorarum_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2010.tif
-GMEX_IDW_Penaeus_duorarum_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2011.tif
-GMEX_IDW_Penaeus_duorarum_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2012.tif
-GMEX_IDW_Penaeus_duorarum_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2013.tif
-GMEX_IDW_Penaeus_duorarum_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2014.tif
-GMEX_IDW_Penaeus_duorarum_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:28:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2015.tif
-GMEX_IDW_Penaeus_duorarum_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2016.tif
-GMEX_IDW_Penaeus_duorarum_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2017.tif
-GMEX_IDW_Penaeus_duorarum_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2018.tif
-GMEX_IDW_Penaeus_duorarum_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2019.tif
-GMEX_IDW_Penaeus_duorarum_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2021.tif
-GMEX_IDW_Penaeus_duorarum_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2022.tif
-GMEX_IDW_Penaeus_duorarum_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2023.tif
-GMEX_IDW_Penaeus_duorarum_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus duorarum\GMEX_IDW_Penaeus_duorarum_2024.tif
-GMEX_IDW_Penaeus_setiferus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2010.tif
-GMEX_IDW_Penaeus_setiferus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2011.tif
-GMEX_IDW_Penaeus_setiferus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2012.tif
-GMEX_IDW_Penaeus_setiferus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2013.tif
-GMEX_IDW_Penaeus_setiferus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2014.tif
-GMEX_IDW_Penaeus_setiferus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2015.tif
-GMEX_IDW_Penaeus_setiferus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2016.tif
-GMEX_IDW_Penaeus_setiferus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2017.tif
-GMEX_IDW_Penaeus_setiferus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2018.tif
-GMEX_IDW_Penaeus_setiferus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2019.tif
-GMEX_IDW_Penaeus_setiferus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2021.tif
-GMEX_IDW_Penaeus_setiferus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2022.tif
-GMEX_IDW_Penaeus_setiferus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2023.tif
-GMEX_IDW_Penaeus_setiferus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Penaeus setiferus\GMEX_IDW_Penaeus_setiferus_2024.tif
-GMEX_IDW_Peprilus_burti_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2010.tif
-GMEX_IDW_Peprilus_burti_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2011.tif
-GMEX_IDW_Peprilus_burti_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2012.tif
-GMEX_IDW_Peprilus_burti_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2013.tif
-GMEX_IDW_Peprilus_burti_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2014.tif
-GMEX_IDW_Peprilus_burti_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2015.tif
-GMEX_IDW_Peprilus_burti_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2016.tif
-GMEX_IDW_Peprilus_burti_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2017.tif
-GMEX_IDW_Peprilus_burti_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2018.tif
-GMEX_IDW_Peprilus_burti_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2019.tif
-GMEX_IDW_Peprilus_burti_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2021.tif
-GMEX_IDW_Peprilus_burti_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2022.tif
-GMEX_IDW_Peprilus_burti_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2023.tif
-GMEX_IDW_Peprilus_burti_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Peprilus burti\GMEX_IDW_Peprilus_burti_2024.tif
-GMEX_IDW_Pitarenus_cordatus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2010.tif
-GMEX_IDW_Pitarenus_cordatus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2011.tif
-GMEX_IDW_Pitarenus_cordatus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2012.tif
-GMEX_IDW_Pitarenus_cordatus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2013.tif
-GMEX_IDW_Pitarenus_cordatus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2014.tif
-GMEX_IDW_Pitarenus_cordatus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2015.tif
-GMEX_IDW_Pitarenus_cordatus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2016.tif
-GMEX_IDW_Pitarenus_cordatus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2017.tif
-GMEX_IDW_Pitarenus_cordatus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2018.tif
-GMEX_IDW_Pitarenus_cordatus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2019.tif
-GMEX_IDW_Pitarenus_cordatus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2021.tif
-GMEX_IDW_Pitarenus_cordatus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2022.tif
-GMEX_IDW_Pitarenus_cordatus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2023.tif
-GMEX_IDW_Pitarenus_cordatus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pitarenus cordatus\GMEX_IDW_Pitarenus_cordatus_2024.tif
-GMEX_IDW_Platylambrus_granulatus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2010.tif
-GMEX_IDW_Platylambrus_granulatus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2011.tif
-GMEX_IDW_Platylambrus_granulatus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2012.tif
-GMEX_IDW_Platylambrus_granulatus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2013.tif
-GMEX_IDW_Platylambrus_granulatus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2014.tif
-GMEX_IDW_Platylambrus_granulatus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2015.tif
-GMEX_IDW_Platylambrus_granulatus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2016.tif
-GMEX_IDW_Platylambrus_granulatus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2017.tif
-GMEX_IDW_Platylambrus_granulatus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2018.tif
-GMEX_IDW_Platylambrus_granulatus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2019.tif
-GMEX_IDW_Platylambrus_granulatus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2021.tif
-GMEX_IDW_Platylambrus_granulatus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2022.tif
-GMEX_IDW_Platylambrus_granulatus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2023.tif
-GMEX_IDW_Platylambrus_granulatus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Platylambrus granulatus\GMEX_IDW_Platylambrus_granulatus_2024.tif
-GMEX_IDW_Porichthys_plectrodon_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2010.tif
-GMEX_IDW_Porichthys_plectrodon_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2011.tif
-GMEX_IDW_Porichthys_plectrodon_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2012.tif
-GMEX_IDW_Porichthys_plectrodon_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2013.tif
-GMEX_IDW_Porichthys_plectrodon_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2014.tif
-GMEX_IDW_Porichthys_plectrodon_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2015.tif
-GMEX_IDW_Porichthys_plectrodon_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2016.tif
-GMEX_IDW_Porichthys_plectrodon_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2017.tif
-GMEX_IDW_Porichthys_plectrodon_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2018.tif
-GMEX_IDW_Porichthys_plectrodon_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2019.tif
-GMEX_IDW_Porichthys_plectrodon_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2021.tif
-GMEX_IDW_Porichthys_plectrodon_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2022.tif
-GMEX_IDW_Porichthys_plectrodon_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2023.tif
-GMEX_IDW_Porichthys_plectrodon_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Porichthys plectrodon\GMEX_IDW_Porichthys_plectrodon_2024.tif
-GMEX_IDW_Prionotus_alatus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus alatus\GMEX_IDW_Prionotus_alatus_2010.tif
-GMEX_IDW_Prionotus_alatus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus alatus\GMEX_IDW_Prionotus_alatus_2011.tif
-GMEX_IDW_Prionotus_alatus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus alatus\GMEX_IDW_Prionotus_alatus_2012.tif
-GMEX_IDW_Prionotus_alatus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus alatus\GMEX_IDW_Prionotus_alatus_2013.tif
-GMEX_IDW_Prionotus_alatus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus alatus\GMEX_IDW_Prionotus_alatus_2014.tif
-GMEX_IDW_Prionotus_alatus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus alatus\GMEX_IDW_Prionotus_alatus_2015.tif
-GMEX_IDW_Prionotus_alatus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus alatus\GMEX_IDW_Prionotus_alatus_2016.tif
-GMEX_IDW_Prionotus_alatus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus alatus\GMEX_IDW_Prionotus_alatus_2017.tif
-GMEX_IDW_Prionotus_alatus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus alatus\GMEX_IDW_Prionotus_alatus_2018.tif
-GMEX_IDW_Prionotus_alatus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus alatus\GMEX_IDW_Prionotus_alatus_2019.tif
-GMEX_IDW_Prionotus_alatus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus alatus\GMEX_IDW_Prionotus_alatus_2021.tif
-GMEX_IDW_Prionotus_alatus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus alatus\GMEX_IDW_Prionotus_alatus_2022.tif
-GMEX_IDW_Prionotus_alatus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus alatus\GMEX_IDW_Prionotus_alatus_2023.tif
-GMEX_IDW_Prionotus_alatus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus alatus\GMEX_IDW_Prionotus_alatus_2024.tif
-GMEX_IDW_Prionotus_longispinosus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2010.tif
-GMEX_IDW_Prionotus_longispinosus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2011.tif
-GMEX_IDW_Prionotus_longispinosus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2012.tif
-GMEX_IDW_Prionotus_longispinosus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2013.tif
-GMEX_IDW_Prionotus_longispinosus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2014.tif
-GMEX_IDW_Prionotus_longispinosus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2015.tif
-GMEX_IDW_Prionotus_longispinosus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2016.tif
-GMEX_IDW_Prionotus_longispinosus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2017.tif
-GMEX_IDW_Prionotus_longispinosus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2018.tif
-GMEX_IDW_Prionotus_longispinosus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2019.tif
-GMEX_IDW_Prionotus_longispinosus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2021.tif
-GMEX_IDW_Prionotus_longispinosus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2022.tif
-GMEX_IDW_Prionotus_longispinosus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2023.tif
-GMEX_IDW_Prionotus_longispinosus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus longispinosus\GMEX_IDW_Prionotus_longispinosus_2024.tif
-GMEX_IDW_Prionotus_ophryas_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2010.tif
-GMEX_IDW_Prionotus_ophryas_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2011.tif
-GMEX_IDW_Prionotus_ophryas_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2012.tif
-GMEX_IDW_Prionotus_ophryas_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2013.tif
-GMEX_IDW_Prionotus_ophryas_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2014.tif
-GMEX_IDW_Prionotus_ophryas_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2015.tif
-GMEX_IDW_Prionotus_ophryas_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2016.tif
-GMEX_IDW_Prionotus_ophryas_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2017.tif
-GMEX_IDW_Prionotus_ophryas_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2018.tif
-GMEX_IDW_Prionotus_ophryas_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2019.tif
-GMEX_IDW_Prionotus_ophryas_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2021.tif
-GMEX_IDW_Prionotus_ophryas_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2022.tif
-GMEX_IDW_Prionotus_ophryas_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2023.tif
-GMEX_IDW_Prionotus_ophryas_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus ophryas\GMEX_IDW_Prionotus_ophryas_2024.tif
-GMEX_IDW_Prionotus_paralatus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus paralatus\GMEX_IDW_Prionotus_paralatus_2010.tif
-GMEX_IDW_Prionotus_paralatus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus paralatus\GMEX_IDW_Prionotus_paralatus_2011.tif
-GMEX_IDW_Prionotus_paralatus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus paralatus\GMEX_IDW_Prionotus_paralatus_2012.tif
-GMEX_IDW_Prionotus_paralatus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus paralatus\GMEX_IDW_Prionotus_paralatus_2013.tif
-GMEX_IDW_Prionotus_paralatus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus paralatus\GMEX_IDW_Prionotus_paralatus_2014.tif
-GMEX_IDW_Prionotus_paralatus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus paralatus\GMEX_IDW_Prionotus_paralatus_2015.tif
-GMEX_IDW_Prionotus_paralatus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus paralatus\GMEX_IDW_Prionotus_paralatus_2016.tif
-GMEX_IDW_Prionotus_paralatus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus paralatus\GMEX_IDW_Prionotus_paralatus_2017.tif
-GMEX_IDW_Prionotus_paralatus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus paralatus\GMEX_IDW_Prionotus_paralatus_2018.tif
-GMEX_IDW_Prionotus_paralatus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus paralatus\GMEX_IDW_Prionotus_paralatus_2019.tif
-GMEX_IDW_Prionotus_paralatus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus paralatus\GMEX_IDW_Prionotus_paralatus_2021.tif
-GMEX_IDW_Prionotus_paralatus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus paralatus\GMEX_IDW_Prionotus_paralatus_2022.tif
-GMEX_IDW_Prionotus_paralatus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus paralatus\GMEX_IDW_Prionotus_paralatus_2023.tif
-GMEX_IDW_Prionotus_paralatus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus paralatus\GMEX_IDW_Prionotus_paralatus_2024.tif
-GMEX_IDW_Prionotus_roseus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2010.tif
-GMEX_IDW_Prionotus_roseus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2011.tif
-GMEX_IDW_Prionotus_roseus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2012.tif
-GMEX_IDW_Prionotus_roseus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2013.tif
-GMEX_IDW_Prionotus_roseus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2014.tif
-GMEX_IDW_Prionotus_roseus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2015.tif
-GMEX_IDW_Prionotus_roseus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2016.tif
-GMEX_IDW_Prionotus_roseus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2017.tif
-GMEX_IDW_Prionotus_roseus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2018.tif
-GMEX_IDW_Prionotus_roseus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2019.tif
-GMEX_IDW_Prionotus_roseus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2021.tif
-GMEX_IDW_Prionotus_roseus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2022.tif
-GMEX_IDW_Prionotus_roseus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2023.tif
-GMEX_IDW_Prionotus_roseus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus roseus\GMEX_IDW_Prionotus_roseus_2024.tif
-GMEX_IDW_Prionotus_rubio_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2010.tif
-GMEX_IDW_Prionotus_rubio_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2011.tif
-GMEX_IDW_Prionotus_rubio_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2012.tif
-GMEX_IDW_Prionotus_rubio_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2013.tif
-GMEX_IDW_Prionotus_rubio_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2014.tif
-GMEX_IDW_Prionotus_rubio_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2015.tif
-GMEX_IDW_Prionotus_rubio_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2016.tif
-GMEX_IDW_Prionotus_rubio_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2017.tif
-GMEX_IDW_Prionotus_rubio_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2018.tif
-GMEX_IDW_Prionotus_rubio_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2019.tif
-GMEX_IDW_Prionotus_rubio_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2021.tif
-GMEX_IDW_Prionotus_rubio_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2022.tif
-GMEX_IDW_Prionotus_rubio_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2023.tif
-GMEX_IDW_Prionotus_rubio_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus rubio\GMEX_IDW_Prionotus_rubio_2024.tif
-GMEX_IDW_Prionotus_stearnsi_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2010.tif
-GMEX_IDW_Prionotus_stearnsi_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2011.tif
-GMEX_IDW_Prionotus_stearnsi_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2012.tif
-GMEX_IDW_Prionotus_stearnsi_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2013.tif
-GMEX_IDW_Prionotus_stearnsi_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2014.tif
-GMEX_IDW_Prionotus_stearnsi_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2015.tif
-GMEX_IDW_Prionotus_stearnsi_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2016.tif
-GMEX_IDW_Prionotus_stearnsi_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2017.tif
-GMEX_IDW_Prionotus_stearnsi_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2018.tif
-GMEX_IDW_Prionotus_stearnsi_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2019.tif
-GMEX_IDW_Prionotus_stearnsi_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2021.tif
-GMEX_IDW_Prionotus_stearnsi_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2022.tif
-GMEX_IDW_Prionotus_stearnsi_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2023.tif
-GMEX_IDW_Prionotus_stearnsi_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Prionotus stearnsi\GMEX_IDW_Prionotus_stearnsi_2024.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2010.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2011.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2012.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2013.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2014.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2015.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2016.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2017.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2018.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2019.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2021.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2022.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2023.tif
-GMEX_IDW_Pristipomoides_aquilonaris_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Pristipomoides aquilonaris\GMEX_IDW_Pristipomoides_aquilonaris_2024.tif
-GMEX_IDW_Raninoides_louisianensis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2010.tif
-GMEX_IDW_Raninoides_louisianensis_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2011.tif
-GMEX_IDW_Raninoides_louisianensis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2012.tif
-GMEX_IDW_Raninoides_louisianensis_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2013.tif
-GMEX_IDW_Raninoides_louisianensis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2014.tif
-GMEX_IDW_Raninoides_louisianensis_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2015.tif
-GMEX_IDW_Raninoides_louisianensis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2016.tif
-GMEX_IDW_Raninoides_louisianensis_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2017.tif
-GMEX_IDW_Raninoides_louisianensis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2018.tif
-GMEX_IDW_Raninoides_louisianensis_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2019.tif
-GMEX_IDW_Raninoides_louisianensis_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2021.tif
-GMEX_IDW_Raninoides_louisianensis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2022.tif
-GMEX_IDW_Raninoides_louisianensis_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2023.tif
-GMEX_IDW_Raninoides_louisianensis_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Raninoides louisianensis\GMEX_IDW_Raninoides_louisianensis_2024.tif
-GMEX_IDW_Renilla_muelleri_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2010.tif
-GMEX_IDW_Renilla_muelleri_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2011.tif
-GMEX_IDW_Renilla_muelleri_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2012.tif
-GMEX_IDW_Renilla_muelleri_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2013.tif
-GMEX_IDW_Renilla_muelleri_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2014.tif
-GMEX_IDW_Renilla_muelleri_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2015.tif
-GMEX_IDW_Renilla_muelleri_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2016.tif
-GMEX_IDW_Renilla_muelleri_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2017.tif
-GMEX_IDW_Renilla_muelleri_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2018.tif
-GMEX_IDW_Renilla_muelleri_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2019.tif
-GMEX_IDW_Renilla_muelleri_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2021.tif
-GMEX_IDW_Renilla_muelleri_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2022.tif
-GMEX_IDW_Renilla_muelleri_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2023.tif
-GMEX_IDW_Renilla_muelleri_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Renilla muelleri\GMEX_IDW_Renilla_muelleri_2024.tif
-GMEX_IDW_Rhizoprionodon_terraenovae_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhizoprionodon terraenovae\GMEX_IDW_Rhizoprionodon_terraenovae_2010.tif
-GMEX_IDW_Rhizoprionodon_terraenovae_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhizoprionodon terraenovae\GMEX_IDW_Rhizoprionodon_terraenovae_2011.tif
-GMEX_IDW_Rhizoprionodon_terraenovae_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhizoprionodon terraenovae\GMEX_IDW_Rhizoprionodon_terraenovae_2012.tif
-GMEX_IDW_Rhizoprionodon_terraenovae_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhizoprionodon terraenovae\GMEX_IDW_Rhizoprionodon_terraenovae_2013.tif
-GMEX_IDW_Rhizoprionodon_terraenovae_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhizoprionodon terraenovae\GMEX_IDW_Rhizoprionodon_terraenovae_2014.tif
-GMEX_IDW_Rhizoprionodon_terraenovae_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhizoprionodon terraenovae\GMEX_IDW_Rhizoprionodon_terraenovae_2015.tif
-GMEX_IDW_Rhizoprionodon_terraenovae_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhizoprionodon terraenovae\GMEX_IDW_Rhizoprionodon_terraenovae_2016.tif
-GMEX_IDW_Rhizoprionodon_terraenovae_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhizoprionodon terraenovae\GMEX_IDW_Rhizoprionodon_terraenovae_2017.tif
-GMEX_IDW_Rhizoprionodon_terraenovae_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhizoprionodon terraenovae\GMEX_IDW_Rhizoprionodon_terraenovae_2018.tif
-GMEX_IDW_Rhizoprionodon_terraenovae_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhizoprionodon terraenovae\GMEX_IDW_Rhizoprionodon_terraenovae_2019.tif
-GMEX_IDW_Rhizoprionodon_terraenovae_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhizoprionodon terraenovae\GMEX_IDW_Rhizoprionodon_terraenovae_2021.tif
-GMEX_IDW_Rhizoprionodon_terraenovae_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhizoprionodon terraenovae\GMEX_IDW_Rhizoprionodon_terraenovae_2022.tif
-GMEX_IDW_Rhizoprionodon_terraenovae_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhizoprionodon terraenovae\GMEX_IDW_Rhizoprionodon_terraenovae_2023.tif
-GMEX_IDW_Rhizoprionodon_terraenovae_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhizoprionodon terraenovae\GMEX_IDW_Rhizoprionodon_terraenovae_2024.tif
-GMEX_IDW_Rhomboplites_aurorubens_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2010.tif
-GMEX_IDW_Rhomboplites_aurorubens_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:29:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2011.tif
-GMEX_IDW_Rhomboplites_aurorubens_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2012.tif
-GMEX_IDW_Rhomboplites_aurorubens_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2013.tif
-GMEX_IDW_Rhomboplites_aurorubens_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2014.tif
-GMEX_IDW_Rhomboplites_aurorubens_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2015.tif
-GMEX_IDW_Rhomboplites_aurorubens_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2016.tif
-GMEX_IDW_Rhomboplites_aurorubens_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2017.tif
-GMEX_IDW_Rhomboplites_aurorubens_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2018.tif
-GMEX_IDW_Rhomboplites_aurorubens_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2019.tif
-GMEX_IDW_Rhomboplites_aurorubens_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2021.tif
-GMEX_IDW_Rhomboplites_aurorubens_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2022.tif
-GMEX_IDW_Rhomboplites_aurorubens_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2023.tif
-GMEX_IDW_Rhomboplites_aurorubens_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rhomboplites aurorubens\GMEX_IDW_Rhomboplites_aurorubens_2024.tif
-GMEX_IDW_Rostroraja_eglanteria_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja eglanteria\GMEX_IDW_Rostroraja_eglanteria_2010.tif
-GMEX_IDW_Rostroraja_eglanteria_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja eglanteria\GMEX_IDW_Rostroraja_eglanteria_2011.tif
-GMEX_IDW_Rostroraja_eglanteria_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja eglanteria\GMEX_IDW_Rostroraja_eglanteria_2012.tif
-GMEX_IDW_Rostroraja_eglanteria_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja eglanteria\GMEX_IDW_Rostroraja_eglanteria_2013.tif
-GMEX_IDW_Rostroraja_eglanteria_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja eglanteria\GMEX_IDW_Rostroraja_eglanteria_2014.tif
-GMEX_IDW_Rostroraja_eglanteria_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja eglanteria\GMEX_IDW_Rostroraja_eglanteria_2015.tif
-GMEX_IDW_Rostroraja_eglanteria_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja eglanteria\GMEX_IDW_Rostroraja_eglanteria_2016.tif
-GMEX_IDW_Rostroraja_eglanteria_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja eglanteria\GMEX_IDW_Rostroraja_eglanteria_2017.tif
-GMEX_IDW_Rostroraja_eglanteria_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja eglanteria\GMEX_IDW_Rostroraja_eglanteria_2018.tif
-GMEX_IDW_Rostroraja_eglanteria_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja eglanteria\GMEX_IDW_Rostroraja_eglanteria_2019.tif
-GMEX_IDW_Rostroraja_eglanteria_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja eglanteria\GMEX_IDW_Rostroraja_eglanteria_2021.tif
-GMEX_IDW_Rostroraja_eglanteria_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja eglanteria\GMEX_IDW_Rostroraja_eglanteria_2022.tif
-GMEX_IDW_Rostroraja_eglanteria_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja eglanteria\GMEX_IDW_Rostroraja_eglanteria_2023.tif
-GMEX_IDW_Rostroraja_eglanteria_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja eglanteria\GMEX_IDW_Rostroraja_eglanteria_2024.tif
-GMEX_IDW_Rostroraja_texana_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja texana\GMEX_IDW_Rostroraja_texana_2010.tif
-GMEX_IDW_Rostroraja_texana_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja texana\GMEX_IDW_Rostroraja_texana_2011.tif
-GMEX_IDW_Rostroraja_texana_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja texana\GMEX_IDW_Rostroraja_texana_2012.tif
-GMEX_IDW_Rostroraja_texana_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja texana\GMEX_IDW_Rostroraja_texana_2013.tif
-GMEX_IDW_Rostroraja_texana_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja texana\GMEX_IDW_Rostroraja_texana_2014.tif
-GMEX_IDW_Rostroraja_texana_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja texana\GMEX_IDW_Rostroraja_texana_2015.tif
-GMEX_IDW_Rostroraja_texana_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja texana\GMEX_IDW_Rostroraja_texana_2016.tif
-GMEX_IDW_Rostroraja_texana_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja texana\GMEX_IDW_Rostroraja_texana_2017.tif
-GMEX_IDW_Rostroraja_texana_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja texana\GMEX_IDW_Rostroraja_texana_2018.tif
-GMEX_IDW_Rostroraja_texana_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja texana\GMEX_IDW_Rostroraja_texana_2019.tif
-GMEX_IDW_Rostroraja_texana_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja texana\GMEX_IDW_Rostroraja_texana_2021.tif
-GMEX_IDW_Rostroraja_texana_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja texana\GMEX_IDW_Rostroraja_texana_2022.tif
-GMEX_IDW_Rostroraja_texana_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja texana\GMEX_IDW_Rostroraja_texana_2023.tif
-GMEX_IDW_Rostroraja_texana_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Rostroraja texana\GMEX_IDW_Rostroraja_texana_2024.tif
-GMEX_IDW_Sardinella_aurita_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2010.tif
-GMEX_IDW_Sardinella_aurita_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2011.tif
-GMEX_IDW_Sardinella_aurita_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2012.tif
-GMEX_IDW_Sardinella_aurita_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2013.tif
-GMEX_IDW_Sardinella_aurita_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2014.tif
-GMEX_IDW_Sardinella_aurita_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2015.tif
-GMEX_IDW_Sardinella_aurita_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2016.tif
-GMEX_IDW_Sardinella_aurita_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2017.tif
-GMEX_IDW_Sardinella_aurita_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2018.tif
-GMEX_IDW_Sardinella_aurita_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2019.tif
-GMEX_IDW_Sardinella_aurita_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2021.tif
-GMEX_IDW_Sardinella_aurita_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2022.tif
-GMEX_IDW_Sardinella_aurita_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2023.tif
-GMEX_IDW_Sardinella_aurita_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sardinella aurita\GMEX_IDW_Sardinella_aurita_2024.tif
-GMEX_IDW_Saurida_brasiliensis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2010.tif
-GMEX_IDW_Saurida_brasiliensis_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2011.tif
-GMEX_IDW_Saurida_brasiliensis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2012.tif
-GMEX_IDW_Saurida_brasiliensis_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2013.tif
-GMEX_IDW_Saurida_brasiliensis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2014.tif
-GMEX_IDW_Saurida_brasiliensis_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2015.tif
-GMEX_IDW_Saurida_brasiliensis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2016.tif
-GMEX_IDW_Saurida_brasiliensis_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2017.tif
-GMEX_IDW_Saurida_brasiliensis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2018.tif
-GMEX_IDW_Saurida_brasiliensis_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2019.tif
-GMEX_IDW_Saurida_brasiliensis_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2021.tif
-GMEX_IDW_Saurida_brasiliensis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2022.tif
-GMEX_IDW_Saurida_brasiliensis_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2023.tif
-GMEX_IDW_Saurida_brasiliensis_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida brasiliensis\GMEX_IDW_Saurida_brasiliensis_2024.tif
-GMEX_IDW_Saurida_normani_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida normani\GMEX_IDW_Saurida_normani_2010.tif
-GMEX_IDW_Saurida_normani_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida normani\GMEX_IDW_Saurida_normani_2011.tif
-GMEX_IDW_Saurida_normani_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida normani\GMEX_IDW_Saurida_normani_2012.tif
-GMEX_IDW_Saurida_normani_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida normani\GMEX_IDW_Saurida_normani_2013.tif
-GMEX_IDW_Saurida_normani_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida normani\GMEX_IDW_Saurida_normani_2014.tif
-GMEX_IDW_Saurida_normani_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida normani\GMEX_IDW_Saurida_normani_2015.tif
-GMEX_IDW_Saurida_normani_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida normani\GMEX_IDW_Saurida_normani_2016.tif
-GMEX_IDW_Saurida_normani_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida normani\GMEX_IDW_Saurida_normani_2017.tif
-GMEX_IDW_Saurida_normani_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida normani\GMEX_IDW_Saurida_normani_2018.tif
-GMEX_IDW_Saurida_normani_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida normani\GMEX_IDW_Saurida_normani_2019.tif
-GMEX_IDW_Saurida_normani_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida normani\GMEX_IDW_Saurida_normani_2021.tif
-GMEX_IDW_Saurida_normani_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida normani\GMEX_IDW_Saurida_normani_2022.tif
-GMEX_IDW_Saurida_normani_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida normani\GMEX_IDW_Saurida_normani_2023.tif
-GMEX_IDW_Saurida_normani_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Saurida normani\GMEX_IDW_Saurida_normani_2024.tif
-GMEX_IDW_Scorpaena_agassizii_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena agassizii\GMEX_IDW_Scorpaena_agassizii_2010.tif
-GMEX_IDW_Scorpaena_agassizii_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena agassizii\GMEX_IDW_Scorpaena_agassizii_2011.tif
-GMEX_IDW_Scorpaena_agassizii_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena agassizii\GMEX_IDW_Scorpaena_agassizii_2012.tif
-GMEX_IDW_Scorpaena_agassizii_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena agassizii\GMEX_IDW_Scorpaena_agassizii_2013.tif
-GMEX_IDW_Scorpaena_agassizii_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena agassizii\GMEX_IDW_Scorpaena_agassizii_2014.tif
-GMEX_IDW_Scorpaena_agassizii_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena agassizii\GMEX_IDW_Scorpaena_agassizii_2015.tif
-GMEX_IDW_Scorpaena_agassizii_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena agassizii\GMEX_IDW_Scorpaena_agassizii_2016.tif
-GMEX_IDW_Scorpaena_agassizii_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena agassizii\GMEX_IDW_Scorpaena_agassizii_2017.tif
-GMEX_IDW_Scorpaena_agassizii_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena agassizii\GMEX_IDW_Scorpaena_agassizii_2018.tif
-GMEX_IDW_Scorpaena_agassizii_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena agassizii\GMEX_IDW_Scorpaena_agassizii_2019.tif
-GMEX_IDW_Scorpaena_agassizii_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena agassizii\GMEX_IDW_Scorpaena_agassizii_2021.tif
-GMEX_IDW_Scorpaena_agassizii_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena agassizii\GMEX_IDW_Scorpaena_agassizii_2022.tif
-GMEX_IDW_Scorpaena_agassizii_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena agassizii\GMEX_IDW_Scorpaena_agassizii_2023.tif
-GMEX_IDW_Scorpaena_agassizii_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena agassizii\GMEX_IDW_Scorpaena_agassizii_2024.tif
-GMEX_IDW_Scorpaena_brasiliensis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2010.tif
-GMEX_IDW_Scorpaena_brasiliensis_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2011.tif
-GMEX_IDW_Scorpaena_brasiliensis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2012.tif
-GMEX_IDW_Scorpaena_brasiliensis_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2013.tif
-GMEX_IDW_Scorpaena_brasiliensis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2014.tif
-GMEX_IDW_Scorpaena_brasiliensis_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2015.tif
-GMEX_IDW_Scorpaena_brasiliensis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2016.tif
-GMEX_IDW_Scorpaena_brasiliensis_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2017.tif
-GMEX_IDW_Scorpaena_brasiliensis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2018.tif
-GMEX_IDW_Scorpaena_brasiliensis_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2019.tif
-GMEX_IDW_Scorpaena_brasiliensis_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2021.tif
-GMEX_IDW_Scorpaena_brasiliensis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2022.tif
-GMEX_IDW_Scorpaena_brasiliensis_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2023.tif
-GMEX_IDW_Scorpaena_brasiliensis_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena brasiliensis\GMEX_IDW_Scorpaena_brasiliensis_2024.tif
-GMEX_IDW_Scorpaena_calcarata_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2010.tif
-GMEX_IDW_Scorpaena_calcarata_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2011.tif
-GMEX_IDW_Scorpaena_calcarata_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2012.tif
-GMEX_IDW_Scorpaena_calcarata_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2013.tif
-GMEX_IDW_Scorpaena_calcarata_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2014.tif
-GMEX_IDW_Scorpaena_calcarata_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2015.tif
-GMEX_IDW_Scorpaena_calcarata_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2016.tif
-GMEX_IDW_Scorpaena_calcarata_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2017.tif
-GMEX_IDW_Scorpaena_calcarata_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2018.tif
-GMEX_IDW_Scorpaena_calcarata_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2019.tif
-GMEX_IDW_Scorpaena_calcarata_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2021.tif
-GMEX_IDW_Scorpaena_calcarata_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2022.tif
-GMEX_IDW_Scorpaena_calcarata_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2023.tif
-GMEX_IDW_Scorpaena_calcarata_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scorpaena calcarata\GMEX_IDW_Scorpaena_calcarata_2024.tif
-GMEX_IDW_Scyllarides_nodifer_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2010.tif
-GMEX_IDW_Scyllarides_nodifer_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2011.tif
-GMEX_IDW_Scyllarides_nodifer_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2012.tif
-GMEX_IDW_Scyllarides_nodifer_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2013.tif
-GMEX_IDW_Scyllarides_nodifer_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2014.tif
-GMEX_IDW_Scyllarides_nodifer_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2015.tif
-GMEX_IDW_Scyllarides_nodifer_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2016.tif
-GMEX_IDW_Scyllarides_nodifer_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2017.tif
-GMEX_IDW_Scyllarides_nodifer_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2018.tif
-GMEX_IDW_Scyllarides_nodifer_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2019.tif
-GMEX_IDW_Scyllarides_nodifer_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2021.tif
-GMEX_IDW_Scyllarides_nodifer_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2022.tif
-GMEX_IDW_Scyllarides_nodifer_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2023.tif
-GMEX_IDW_Scyllarides_nodifer_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarides nodifer\GMEX_IDW_Scyllarides_nodifer_2024.tif
-GMEX_IDW_Scyllarus_chacei_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2010.tif
-GMEX_IDW_Scyllarus_chacei_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2011.tif
-GMEX_IDW_Scyllarus_chacei_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2012.tif
-GMEX_IDW_Scyllarus_chacei_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2013.tif
-GMEX_IDW_Scyllarus_chacei_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2014.tif
-GMEX_IDW_Scyllarus_chacei_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2015.tif
-GMEX_IDW_Scyllarus_chacei_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2016.tif
-GMEX_IDW_Scyllarus_chacei_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2017.tif
-GMEX_IDW_Scyllarus_chacei_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2018.tif
-GMEX_IDW_Scyllarus_chacei_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2019.tif
-GMEX_IDW_Scyllarus_chacei_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2021.tif
-GMEX_IDW_Scyllarus_chacei_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2022.tif
-GMEX_IDW_Scyllarus_chacei_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2023.tif
-GMEX_IDW_Scyllarus_chacei_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Scyllarus chacei\GMEX_IDW_Scyllarus_chacei_2024.tif
-GMEX_IDW_Selene_setapinnis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2010.tif
-GMEX_IDW_Selene_setapinnis_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2011.tif
-GMEX_IDW_Selene_setapinnis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2012.tif
-GMEX_IDW_Selene_setapinnis_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2013.tif
-GMEX_IDW_Selene_setapinnis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2014.tif
-GMEX_IDW_Selene_setapinnis_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2015.tif
-GMEX_IDW_Selene_setapinnis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2016.tif
-GMEX_IDW_Selene_setapinnis_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2017.tif
-GMEX_IDW_Selene_setapinnis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2018.tif
-GMEX_IDW_Selene_setapinnis_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2019.tif
-GMEX_IDW_Selene_setapinnis_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2021.tif
-GMEX_IDW_Selene_setapinnis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2022.tif
-GMEX_IDW_Selene_setapinnis_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2023.tif
-GMEX_IDW_Selene_setapinnis_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Selene setapinnis\GMEX_IDW_Selene_setapinnis_2024.tif
-GMEX_IDW_Serranus_atrobranchus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2010.tif
-GMEX_IDW_Serranus_atrobranchus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2011.tif
-GMEX_IDW_Serranus_atrobranchus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2012.tif
-GMEX_IDW_Serranus_atrobranchus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2013.tif
-GMEX_IDW_Serranus_atrobranchus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2014.tif
-GMEX_IDW_Serranus_atrobranchus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2015.tif
-GMEX_IDW_Serranus_atrobranchus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2016.tif
-GMEX_IDW_Serranus_atrobranchus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2017.tif
-GMEX_IDW_Serranus_atrobranchus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2018.tif
-GMEX_IDW_Serranus_atrobranchus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2019.tif
-GMEX_IDW_Serranus_atrobranchus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2021.tif
-GMEX_IDW_Serranus_atrobranchus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2022.tif
-GMEX_IDW_Serranus_atrobranchus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2023.tif
-GMEX_IDW_Serranus_atrobranchus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus atrobranchus\GMEX_IDW_Serranus_atrobranchus_2024.tif
-GMEX_IDW_Serranus_notospilus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus notospilus\GMEX_IDW_Serranus_notospilus_2010.tif
-GMEX_IDW_Serranus_notospilus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus notospilus\GMEX_IDW_Serranus_notospilus_2011.tif
-GMEX_IDW_Serranus_notospilus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus notospilus\GMEX_IDW_Serranus_notospilus_2012.tif
-GMEX_IDW_Serranus_notospilus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus notospilus\GMEX_IDW_Serranus_notospilus_2013.tif
-GMEX_IDW_Serranus_notospilus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus notospilus\GMEX_IDW_Serranus_notospilus_2014.tif
-GMEX_IDW_Serranus_notospilus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus notospilus\GMEX_IDW_Serranus_notospilus_2015.tif
-GMEX_IDW_Serranus_notospilus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus notospilus\GMEX_IDW_Serranus_notospilus_2016.tif
-GMEX_IDW_Serranus_notospilus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus notospilus\GMEX_IDW_Serranus_notospilus_2017.tif
-GMEX_IDW_Serranus_notospilus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus notospilus\GMEX_IDW_Serranus_notospilus_2018.tif
-GMEX_IDW_Serranus_notospilus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus notospilus\GMEX_IDW_Serranus_notospilus_2019.tif
-GMEX_IDW_Serranus_notospilus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus notospilus\GMEX_IDW_Serranus_notospilus_2021.tif
-GMEX_IDW_Serranus_notospilus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus notospilus\GMEX_IDW_Serranus_notospilus_2022.tif
-GMEX_IDW_Serranus_notospilus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus notospilus\GMEX_IDW_Serranus_notospilus_2023.tif
-GMEX_IDW_Serranus_notospilus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus notospilus\GMEX_IDW_Serranus_notospilus_2024.tif
-GMEX_IDW_Serranus_phoebe_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2010.tif
-GMEX_IDW_Serranus_phoebe_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:30:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2011.tif
-GMEX_IDW_Serranus_phoebe_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2012.tif
-GMEX_IDW_Serranus_phoebe_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2013.tif
-GMEX_IDW_Serranus_phoebe_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2014.tif
-GMEX_IDW_Serranus_phoebe_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2015.tif
-GMEX_IDW_Serranus_phoebe_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2016.tif
-GMEX_IDW_Serranus_phoebe_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2017.tif
-GMEX_IDW_Serranus_phoebe_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2018.tif
-GMEX_IDW_Serranus_phoebe_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2019.tif
-GMEX_IDW_Serranus_phoebe_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2021.tif
-GMEX_IDW_Serranus_phoebe_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2022.tif
-GMEX_IDW_Serranus_phoebe_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2023.tif
-GMEX_IDW_Serranus_phoebe_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Serranus phoebe\GMEX_IDW_Serranus_phoebe_2024.tif
-GMEX_IDW_Sicyonia_brevirostris_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2010.tif
-GMEX_IDW_Sicyonia_brevirostris_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2011.tif
-GMEX_IDW_Sicyonia_brevirostris_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2012.tif
-GMEX_IDW_Sicyonia_brevirostris_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2013.tif
-GMEX_IDW_Sicyonia_brevirostris_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2014.tif
-GMEX_IDW_Sicyonia_brevirostris_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2015.tif
-GMEX_IDW_Sicyonia_brevirostris_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2016.tif
-GMEX_IDW_Sicyonia_brevirostris_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2017.tif
-GMEX_IDW_Sicyonia_brevirostris_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2018.tif
-GMEX_IDW_Sicyonia_brevirostris_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2019.tif
-GMEX_IDW_Sicyonia_brevirostris_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2021.tif
-GMEX_IDW_Sicyonia_brevirostris_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2022.tif
-GMEX_IDW_Sicyonia_brevirostris_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2023.tif
-GMEX_IDW_Sicyonia_brevirostris_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia brevirostris\GMEX_IDW_Sicyonia_brevirostris_2024.tif
-GMEX_IDW_Sicyonia_dorsalis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2010.tif
-GMEX_IDW_Sicyonia_dorsalis_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2011.tif
-GMEX_IDW_Sicyonia_dorsalis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2012.tif
-GMEX_IDW_Sicyonia_dorsalis_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2013.tif
-GMEX_IDW_Sicyonia_dorsalis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2014.tif
-GMEX_IDW_Sicyonia_dorsalis_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2015.tif
-GMEX_IDW_Sicyonia_dorsalis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2016.tif
-GMEX_IDW_Sicyonia_dorsalis_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2017.tif
-GMEX_IDW_Sicyonia_dorsalis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2018.tif
-GMEX_IDW_Sicyonia_dorsalis_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2019.tif
-GMEX_IDW_Sicyonia_dorsalis_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2021.tif
-GMEX_IDW_Sicyonia_dorsalis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2022.tif
-GMEX_IDW_Sicyonia_dorsalis_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2023.tif
-GMEX_IDW_Sicyonia_dorsalis_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sicyonia dorsalis\GMEX_IDW_Sicyonia_dorsalis_2024.tif
-GMEX_IDW_Solenocera_atlantidis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera atlantidis\GMEX_IDW_Solenocera_atlantidis_2010.tif
-GMEX_IDW_Solenocera_atlantidis_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera atlantidis\GMEX_IDW_Solenocera_atlantidis_2011.tif
-GMEX_IDW_Solenocera_atlantidis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera atlantidis\GMEX_IDW_Solenocera_atlantidis_2012.tif
-GMEX_IDW_Solenocera_atlantidis_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera atlantidis\GMEX_IDW_Solenocera_atlantidis_2013.tif
-GMEX_IDW_Solenocera_atlantidis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera atlantidis\GMEX_IDW_Solenocera_atlantidis_2014.tif
-GMEX_IDW_Solenocera_atlantidis_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera atlantidis\GMEX_IDW_Solenocera_atlantidis_2015.tif
-GMEX_IDW_Solenocera_atlantidis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera atlantidis\GMEX_IDW_Solenocera_atlantidis_2016.tif
-GMEX_IDW_Solenocera_atlantidis_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera atlantidis\GMEX_IDW_Solenocera_atlantidis_2017.tif
-GMEX_IDW_Solenocera_atlantidis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera atlantidis\GMEX_IDW_Solenocera_atlantidis_2018.tif
-GMEX_IDW_Solenocera_atlantidis_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera atlantidis\GMEX_IDW_Solenocera_atlantidis_2019.tif
-GMEX_IDW_Solenocera_atlantidis_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera atlantidis\GMEX_IDW_Solenocera_atlantidis_2021.tif
-GMEX_IDW_Solenocera_atlantidis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera atlantidis\GMEX_IDW_Solenocera_atlantidis_2022.tif
-GMEX_IDW_Solenocera_atlantidis_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera atlantidis\GMEX_IDW_Solenocera_atlantidis_2023.tif
-GMEX_IDW_Solenocera_atlantidis_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera atlantidis\GMEX_IDW_Solenocera_atlantidis_2024.tif
-GMEX_IDW_Solenocera_vioscai_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera vioscai\GMEX_IDW_Solenocera_vioscai_2010.tif
-GMEX_IDW_Solenocera_vioscai_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera vioscai\GMEX_IDW_Solenocera_vioscai_2011.tif
-GMEX_IDW_Solenocera_vioscai_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera vioscai\GMEX_IDW_Solenocera_vioscai_2012.tif
-GMEX_IDW_Solenocera_vioscai_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera vioscai\GMEX_IDW_Solenocera_vioscai_2013.tif
-GMEX_IDW_Solenocera_vioscai_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera vioscai\GMEX_IDW_Solenocera_vioscai_2014.tif
-GMEX_IDW_Solenocera_vioscai_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera vioscai\GMEX_IDW_Solenocera_vioscai_2015.tif
-GMEX_IDW_Solenocera_vioscai_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera vioscai\GMEX_IDW_Solenocera_vioscai_2016.tif
-GMEX_IDW_Solenocera_vioscai_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera vioscai\GMEX_IDW_Solenocera_vioscai_2017.tif
-GMEX_IDW_Solenocera_vioscai_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera vioscai\GMEX_IDW_Solenocera_vioscai_2018.tif
-GMEX_IDW_Solenocera_vioscai_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera vioscai\GMEX_IDW_Solenocera_vioscai_2019.tif
-GMEX_IDW_Solenocera_vioscai_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera vioscai\GMEX_IDW_Solenocera_vioscai_2021.tif
-GMEX_IDW_Solenocera_vioscai_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera vioscai\GMEX_IDW_Solenocera_vioscai_2022.tif
-GMEX_IDW_Solenocera_vioscai_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera vioscai\GMEX_IDW_Solenocera_vioscai_2023.tif
-GMEX_IDW_Solenocera_vioscai_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Solenocera vioscai\GMEX_IDW_Solenocera_vioscai_2024.tif
-GMEX_IDW_Sphoeroides_dorsalis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2010.tif
-GMEX_IDW_Sphoeroides_dorsalis_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2011.tif
-GMEX_IDW_Sphoeroides_dorsalis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2012.tif
-GMEX_IDW_Sphoeroides_dorsalis_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2013.tif
-GMEX_IDW_Sphoeroides_dorsalis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2014.tif
-GMEX_IDW_Sphoeroides_dorsalis_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2015.tif
-GMEX_IDW_Sphoeroides_dorsalis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2016.tif
-GMEX_IDW_Sphoeroides_dorsalis_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2017.tif
-GMEX_IDW_Sphoeroides_dorsalis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2018.tif
-GMEX_IDW_Sphoeroides_dorsalis_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2019.tif
-GMEX_IDW_Sphoeroides_dorsalis_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2021.tif
-GMEX_IDW_Sphoeroides_dorsalis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2022.tif
-GMEX_IDW_Sphoeroides_dorsalis_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2023.tif
-GMEX_IDW_Sphoeroides_dorsalis_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides dorsalis\GMEX_IDW_Sphoeroides_dorsalis_2024.tif
-GMEX_IDW_Sphoeroides_parvus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2010.tif
-GMEX_IDW_Sphoeroides_parvus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2011.tif
-GMEX_IDW_Sphoeroides_parvus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2012.tif
-GMEX_IDW_Sphoeroides_parvus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2013.tif
-GMEX_IDW_Sphoeroides_parvus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2014.tif
-GMEX_IDW_Sphoeroides_parvus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2015.tif
-GMEX_IDW_Sphoeroides_parvus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2016.tif
-GMEX_IDW_Sphoeroides_parvus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2017.tif
-GMEX_IDW_Sphoeroides_parvus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2018.tif
-GMEX_IDW_Sphoeroides_parvus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2019.tif
-GMEX_IDW_Sphoeroides_parvus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2021.tif
-GMEX_IDW_Sphoeroides_parvus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2022.tif
-GMEX_IDW_Sphoeroides_parvus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2023.tif
-GMEX_IDW_Sphoeroides_parvus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides parvus\GMEX_IDW_Sphoeroides_parvus_2024.tif
-GMEX_IDW_Sphoeroides_spengleri_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2010.tif
-GMEX_IDW_Sphoeroides_spengleri_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2011.tif
-GMEX_IDW_Sphoeroides_spengleri_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2012.tif
-GMEX_IDW_Sphoeroides_spengleri_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2013.tif
-GMEX_IDW_Sphoeroides_spengleri_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2014.tif
-GMEX_IDW_Sphoeroides_spengleri_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2015.tif
-GMEX_IDW_Sphoeroides_spengleri_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2016.tif
-GMEX_IDW_Sphoeroides_spengleri_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2017.tif
-GMEX_IDW_Sphoeroides_spengleri_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2018.tif
-GMEX_IDW_Sphoeroides_spengleri_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2019.tif
-GMEX_IDW_Sphoeroides_spengleri_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2021.tif
-GMEX_IDW_Sphoeroides_spengleri_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2022.tif
-GMEX_IDW_Sphoeroides_spengleri_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2023.tif
-GMEX_IDW_Sphoeroides_spengleri_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Sphoeroides spengleri\GMEX_IDW_Sphoeroides_spengleri_2024.tif
-GMEX_IDW_Squilla_chydaea_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2010.tif
-GMEX_IDW_Squilla_chydaea_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2011.tif
-GMEX_IDW_Squilla_chydaea_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2012.tif
-GMEX_IDW_Squilla_chydaea_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2013.tif
-GMEX_IDW_Squilla_chydaea_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2014.tif
-GMEX_IDW_Squilla_chydaea_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2015.tif
-GMEX_IDW_Squilla_chydaea_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2016.tif
-GMEX_IDW_Squilla_chydaea_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2017.tif
-GMEX_IDW_Squilla_chydaea_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2018.tif
-GMEX_IDW_Squilla_chydaea_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2019.tif
-GMEX_IDW_Squilla_chydaea_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2021.tif
-GMEX_IDW_Squilla_chydaea_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2022.tif
-GMEX_IDW_Squilla_chydaea_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2023.tif
-GMEX_IDW_Squilla_chydaea_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla chydaea\GMEX_IDW_Squilla_chydaea_2024.tif
-GMEX_IDW_Squilla_empusa_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2010.tif
-GMEX_IDW_Squilla_empusa_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2011.tif
-GMEX_IDW_Squilla_empusa_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2012.tif
-GMEX_IDW_Squilla_empusa_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2013.tif
-GMEX_IDW_Squilla_empusa_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2014.tif
-GMEX_IDW_Squilla_empusa_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2015.tif
-GMEX_IDW_Squilla_empusa_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2016.tif
-GMEX_IDW_Squilla_empusa_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2017.tif
-GMEX_IDW_Squilla_empusa_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2018.tif
-GMEX_IDW_Squilla_empusa_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2019.tif
-GMEX_IDW_Squilla_empusa_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2021.tif
-GMEX_IDW_Squilla_empusa_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2022.tif
-GMEX_IDW_Squilla_empusa_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2023.tif
-GMEX_IDW_Squilla_empusa_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Squilla empusa\GMEX_IDW_Squilla_empusa_2024.tif
-GMEX_IDW_Stenorhynchus_seticornis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2010.tif
-GMEX_IDW_Stenorhynchus_seticornis_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2011.tif
-GMEX_IDW_Stenorhynchus_seticornis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2012.tif
-GMEX_IDW_Stenorhynchus_seticornis_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2013.tif
-GMEX_IDW_Stenorhynchus_seticornis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2014.tif
-GMEX_IDW_Stenorhynchus_seticornis_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2015.tif
-GMEX_IDW_Stenorhynchus_seticornis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2016.tif
-GMEX_IDW_Stenorhynchus_seticornis_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2017.tif
-GMEX_IDW_Stenorhynchus_seticornis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2018.tif
-GMEX_IDW_Stenorhynchus_seticornis_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2019.tif
-GMEX_IDW_Stenorhynchus_seticornis_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2021.tif
-GMEX_IDW_Stenorhynchus_seticornis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2022.tif
-GMEX_IDW_Stenorhynchus_seticornis_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2023.tif
-GMEX_IDW_Stenorhynchus_seticornis_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenorhynchus seticornis\GMEX_IDW_Stenorhynchus_seticornis_2024.tif
-GMEX_IDW_Stenotomus_caprinus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2010.tif
-GMEX_IDW_Stenotomus_caprinus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2011.tif
-GMEX_IDW_Stenotomus_caprinus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2012.tif
-GMEX_IDW_Stenotomus_caprinus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2013.tif
-GMEX_IDW_Stenotomus_caprinus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2014.tif
-GMEX_IDW_Stenotomus_caprinus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2015.tif
-GMEX_IDW_Stenotomus_caprinus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2016.tif
-GMEX_IDW_Stenotomus_caprinus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2017.tif
-GMEX_IDW_Stenotomus_caprinus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2018.tif
-GMEX_IDW_Stenotomus_caprinus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2019.tif
-GMEX_IDW_Stenotomus_caprinus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2021.tif
-GMEX_IDW_Stenotomus_caprinus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2022.tif
-GMEX_IDW_Stenotomus_caprinus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2023.tif
-GMEX_IDW_Stenotomus_caprinus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stenotomus caprinus\GMEX_IDW_Stenotomus_caprinus_2024.tif
-GMEX_IDW_Stephanolepis_hispida_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2010.tif
-GMEX_IDW_Stephanolepis_hispida_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2011.tif
-GMEX_IDW_Stephanolepis_hispida_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2012.tif
-GMEX_IDW_Stephanolepis_hispida_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2013.tif
-GMEX_IDW_Stephanolepis_hispida_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2014.tif
-GMEX_IDW_Stephanolepis_hispida_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2015.tif
-GMEX_IDW_Stephanolepis_hispida_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2016.tif
-GMEX_IDW_Stephanolepis_hispida_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2017.tif
-GMEX_IDW_Stephanolepis_hispida_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2018.tif
-GMEX_IDW_Stephanolepis_hispida_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2019.tif
-GMEX_IDW_Stephanolepis_hispida_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2021.tif
-GMEX_IDW_Stephanolepis_hispida_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2022.tif
-GMEX_IDW_Stephanolepis_hispida_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2023.tif
-GMEX_IDW_Stephanolepis_hispida_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stephanolepis hispida\GMEX_IDW_Stephanolepis_hispida_2024.tif
-GMEX_IDW_Stylocidaris_affinis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2010.tif
-GMEX_IDW_Stylocidaris_affinis_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2011.tif
-GMEX_IDW_Stylocidaris_affinis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2012.tif
-GMEX_IDW_Stylocidaris_affinis_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2013.tif
-GMEX_IDW_Stylocidaris_affinis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2014.tif
-GMEX_IDW_Stylocidaris_affinis_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2015.tif
-GMEX_IDW_Stylocidaris_affinis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2016.tif
-GMEX_IDW_Stylocidaris_affinis_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2017.tif
-GMEX_IDW_Stylocidaris_affinis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2018.tif
-GMEX_IDW_Stylocidaris_affinis_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2019.tif
-GMEX_IDW_Stylocidaris_affinis_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2021.tif
-GMEX_IDW_Stylocidaris_affinis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2022.tif
-GMEX_IDW_Stylocidaris_affinis_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2023.tif
-GMEX_IDW_Stylocidaris_affinis_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Stylocidaris affinis\GMEX_IDW_Stylocidaris_affinis_2024.tif
-GMEX_IDW_Syacium_gunteri_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2010.tif
-GMEX_IDW_Syacium_gunteri_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2011.tif
-GMEX_IDW_Syacium_gunteri_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2012.tif
-GMEX_IDW_Syacium_gunteri_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2013.tif
-GMEX_IDW_Syacium_gunteri_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2014.tif
-GMEX_IDW_Syacium_gunteri_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2015.tif
-GMEX_IDW_Syacium_gunteri_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2016.tif
-GMEX_IDW_Syacium_gunteri_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2017.tif
-GMEX_IDW_Syacium_gunteri_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2018.tif
-GMEX_IDW_Syacium_gunteri_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2019.tif
-GMEX_IDW_Syacium_gunteri_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2021.tif
-GMEX_IDW_Syacium_gunteri_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2022.tif
-GMEX_IDW_Syacium_gunteri_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2023.tif
-GMEX_IDW_Syacium_gunteri_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium gunteri\GMEX_IDW_Syacium_gunteri_2024.tif
-GMEX_IDW_Syacium_papillosum_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2010.tif
-GMEX_IDW_Syacium_papillosum_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2011.tif
-GMEX_IDW_Syacium_papillosum_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2012.tif
-GMEX_IDW_Syacium_papillosum_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2013.tif
-GMEX_IDW_Syacium_papillosum_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2014.tif
-GMEX_IDW_Syacium_papillosum_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2015.tif
-GMEX_IDW_Syacium_papillosum_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2016.tif
-GMEX_IDW_Syacium_papillosum_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2017.tif
-GMEX_IDW_Syacium_papillosum_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2018.tif
-GMEX_IDW_Syacium_papillosum_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2019.tif
-GMEX_IDW_Syacium_papillosum_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2021.tif
-GMEX_IDW_Syacium_papillosum_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2022.tif
-GMEX_IDW_Syacium_papillosum_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2023.tif
-GMEX_IDW_Syacium_papillosum_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Syacium papillosum\GMEX_IDW_Syacium_papillosum_2024.tif
-GMEX_IDW_Symphurus_diomedeanus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Symphurus diomedeanus\GMEX_IDW_Symphurus_diomedeanus_2010.tif
-GMEX_IDW_Symphurus_diomedeanus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:31:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Symphurus diomedeanus\GMEX_IDW_Symphurus_diomedeanus_2011.tif
-GMEX_IDW_Symphurus_diomedeanus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Symphurus diomedeanus\GMEX_IDW_Symphurus_diomedeanus_2012.tif
-GMEX_IDW_Symphurus_diomedeanus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Symphurus diomedeanus\GMEX_IDW_Symphurus_diomedeanus_2013.tif
-GMEX_IDW_Symphurus_diomedeanus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Symphurus diomedeanus\GMEX_IDW_Symphurus_diomedeanus_2014.tif
-GMEX_IDW_Symphurus_diomedeanus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Symphurus diomedeanus\GMEX_IDW_Symphurus_diomedeanus_2015.tif
-GMEX_IDW_Symphurus_diomedeanus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Symphurus diomedeanus\GMEX_IDW_Symphurus_diomedeanus_2016.tif
-GMEX_IDW_Symphurus_diomedeanus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Symphurus diomedeanus\GMEX_IDW_Symphurus_diomedeanus_2017.tif
-GMEX_IDW_Symphurus_diomedeanus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Symphurus diomedeanus\GMEX_IDW_Symphurus_diomedeanus_2018.tif
-GMEX_IDW_Symphurus_diomedeanus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Symphurus diomedeanus\GMEX_IDW_Symphurus_diomedeanus_2019.tif
-GMEX_IDW_Symphurus_diomedeanus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Symphurus diomedeanus\GMEX_IDW_Symphurus_diomedeanus_2021.tif
-GMEX_IDW_Symphurus_diomedeanus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Symphurus diomedeanus\GMEX_IDW_Symphurus_diomedeanus_2022.tif
-GMEX_IDW_Symphurus_diomedeanus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Symphurus diomedeanus\GMEX_IDW_Symphurus_diomedeanus_2023.tif
-GMEX_IDW_Symphurus_diomedeanus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Symphurus diomedeanus\GMEX_IDW_Symphurus_diomedeanus_2024.tif
-GMEX_IDW_Synodus_foetens_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2010.tif
-GMEX_IDW_Synodus_foetens_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2011.tif
-GMEX_IDW_Synodus_foetens_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2012.tif
-GMEX_IDW_Synodus_foetens_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2013.tif
-GMEX_IDW_Synodus_foetens_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2014.tif
-GMEX_IDW_Synodus_foetens_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2015.tif
-GMEX_IDW_Synodus_foetens_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2016.tif
-GMEX_IDW_Synodus_foetens_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2017.tif
-GMEX_IDW_Synodus_foetens_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2018.tif
-GMEX_IDW_Synodus_foetens_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2019.tif
-GMEX_IDW_Synodus_foetens_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2021.tif
-GMEX_IDW_Synodus_foetens_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2022.tif
-GMEX_IDW_Synodus_foetens_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2023.tif
-GMEX_IDW_Synodus_foetens_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus foetens\GMEX_IDW_Synodus_foetens_2024.tif
-GMEX_IDW_Synodus_intermedius_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2010.tif
-GMEX_IDW_Synodus_intermedius_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2011.tif
-GMEX_IDW_Synodus_intermedius_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2012.tif
-GMEX_IDW_Synodus_intermedius_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2013.tif
-GMEX_IDW_Synodus_intermedius_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2014.tif
-GMEX_IDW_Synodus_intermedius_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2015.tif
-GMEX_IDW_Synodus_intermedius_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2016.tif
-GMEX_IDW_Synodus_intermedius_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2017.tif
-GMEX_IDW_Synodus_intermedius_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2018.tif
-GMEX_IDW_Synodus_intermedius_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2019.tif
-GMEX_IDW_Synodus_intermedius_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2021.tif
-GMEX_IDW_Synodus_intermedius_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2022.tif
-GMEX_IDW_Synodus_intermedius_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2023.tif
-GMEX_IDW_Synodus_intermedius_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus intermedius\GMEX_IDW_Synodus_intermedius_2024.tif
-GMEX_IDW_Synodus_poeyi_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2010.tif
-GMEX_IDW_Synodus_poeyi_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2011.tif
-GMEX_IDW_Synodus_poeyi_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2012.tif
-GMEX_IDW_Synodus_poeyi_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2013.tif
-GMEX_IDW_Synodus_poeyi_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2014.tif
-GMEX_IDW_Synodus_poeyi_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2015.tif
-GMEX_IDW_Synodus_poeyi_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2016.tif
-GMEX_IDW_Synodus_poeyi_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2017.tif
-GMEX_IDW_Synodus_poeyi_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2018.tif
-GMEX_IDW_Synodus_poeyi_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2019.tif
-GMEX_IDW_Synodus_poeyi_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2021.tif
-GMEX_IDW_Synodus_poeyi_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2022.tif
-GMEX_IDW_Synodus_poeyi_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2023.tif
-GMEX_IDW_Synodus_poeyi_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Synodus poeyi\GMEX_IDW_Synodus_poeyi_2024.tif
-GMEX_IDW_Trachinocephalus_myops_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2010.tif
-GMEX_IDW_Trachinocephalus_myops_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2011.tif
-GMEX_IDW_Trachinocephalus_myops_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2012.tif
-GMEX_IDW_Trachinocephalus_myops_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2013.tif
-GMEX_IDW_Trachinocephalus_myops_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2014.tif
-GMEX_IDW_Trachinocephalus_myops_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2015.tif
-GMEX_IDW_Trachinocephalus_myops_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2016.tif
-GMEX_IDW_Trachinocephalus_myops_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2017.tif
-GMEX_IDW_Trachinocephalus_myops_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2018.tif
-GMEX_IDW_Trachinocephalus_myops_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2019.tif
-GMEX_IDW_Trachinocephalus_myops_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2021.tif
-GMEX_IDW_Trachinocephalus_myops_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2022.tif
-GMEX_IDW_Trachinocephalus_myops_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2023.tif
-GMEX_IDW_Trachinocephalus_myops_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachinocephalus myops\GMEX_IDW_Trachinocephalus_myops_2024.tif
-GMEX_IDW_Trachurus_lathami_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2010.tif
-GMEX_IDW_Trachurus_lathami_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2011.tif
-GMEX_IDW_Trachurus_lathami_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2012.tif
-GMEX_IDW_Trachurus_lathami_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2013.tif
-GMEX_IDW_Trachurus_lathami_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2014.tif
-GMEX_IDW_Trachurus_lathami_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2015.tif
-GMEX_IDW_Trachurus_lathami_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2016.tif
-GMEX_IDW_Trachurus_lathami_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2017.tif
-GMEX_IDW_Trachurus_lathami_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2018.tif
-GMEX_IDW_Trachurus_lathami_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2019.tif
-GMEX_IDW_Trachurus_lathami_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2021.tif
-GMEX_IDW_Trachurus_lathami_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2022.tif
-GMEX_IDW_Trachurus_lathami_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2023.tif
-GMEX_IDW_Trachurus_lathami_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trachurus lathami\GMEX_IDW_Trachurus_lathami_2024.tif
-GMEX_IDW_Trichiurus_lepturus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2010.tif
-GMEX_IDW_Trichiurus_lepturus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2011.tif
-GMEX_IDW_Trichiurus_lepturus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2012.tif
-GMEX_IDW_Trichiurus_lepturus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2013.tif
-GMEX_IDW_Trichiurus_lepturus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2014.tif
-GMEX_IDW_Trichiurus_lepturus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2015.tif
-GMEX_IDW_Trichiurus_lepturus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2016.tif
-GMEX_IDW_Trichiurus_lepturus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2017.tif
-GMEX_IDW_Trichiurus_lepturus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2018.tif
-GMEX_IDW_Trichiurus_lepturus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2019.tif
-GMEX_IDW_Trichiurus_lepturus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2021.tif
-GMEX_IDW_Trichiurus_lepturus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2022.tif
-GMEX_IDW_Trichiurus_lepturus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2023.tif
-GMEX_IDW_Trichiurus_lepturus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichiurus lepturus\GMEX_IDW_Trichiurus_lepturus_2024.tif
-GMEX_IDW_Trichopsetta_ventralis_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2010.tif
-GMEX_IDW_Trichopsetta_ventralis_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2011.tif
-GMEX_IDW_Trichopsetta_ventralis_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2012.tif
-GMEX_IDW_Trichopsetta_ventralis_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2013.tif
-GMEX_IDW_Trichopsetta_ventralis_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2014.tif
-GMEX_IDW_Trichopsetta_ventralis_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2015.tif
-GMEX_IDW_Trichopsetta_ventralis_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2016.tif
-GMEX_IDW_Trichopsetta_ventralis_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2017.tif
-GMEX_IDW_Trichopsetta_ventralis_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2018.tif
-GMEX_IDW_Trichopsetta_ventralis_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2019.tif
-GMEX_IDW_Trichopsetta_ventralis_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2021.tif
-GMEX_IDW_Trichopsetta_ventralis_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2022.tif
-GMEX_IDW_Trichopsetta_ventralis_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2023.tif
-GMEX_IDW_Trichopsetta_ventralis_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Trichopsetta ventralis\GMEX_IDW_Trichopsetta_ventralis_2024.tif
-GMEX_IDW_Upeneus_parvus_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2010.tif
-GMEX_IDW_Upeneus_parvus_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2011.tif
-GMEX_IDW_Upeneus_parvus_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2012.tif
-GMEX_IDW_Upeneus_parvus_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2013.tif
-GMEX_IDW_Upeneus_parvus_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2014.tif
-GMEX_IDW_Upeneus_parvus_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2015.tif
-GMEX_IDW_Upeneus_parvus_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2016.tif
-GMEX_IDW_Upeneus_parvus_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2017.tif
-GMEX_IDW_Upeneus_parvus_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2018.tif
-GMEX_IDW_Upeneus_parvus_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2019.tif
-GMEX_IDW_Upeneus_parvus_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2021.tif
-GMEX_IDW_Upeneus_parvus_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2022.tif
-GMEX_IDW_Upeneus_parvus_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2023.tif
-GMEX_IDW_Upeneus_parvus_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Upeneus parvus\GMEX_IDW_Upeneus_parvus_2024.tif
-GMEX_IDW_Xyrichtys_novacula_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Xyrichtys novacula\GMEX_IDW_Xyrichtys_novacula_2010.tif
-GMEX_IDW_Xyrichtys_novacula_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Xyrichtys novacula\GMEX_IDW_Xyrichtys_novacula_2011.tif
-GMEX_IDW_Xyrichtys_novacula_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Xyrichtys novacula\GMEX_IDW_Xyrichtys_novacula_2012.tif
-GMEX_IDW_Xyrichtys_novacula_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Xyrichtys novacula\GMEX_IDW_Xyrichtys_novacula_2013.tif
-GMEX_IDW_Xyrichtys_novacula_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Xyrichtys novacula\GMEX_IDW_Xyrichtys_novacula_2014.tif
-GMEX_IDW_Xyrichtys_novacula_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Xyrichtys novacula\GMEX_IDW_Xyrichtys_novacula_2015.tif
-GMEX_IDW_Xyrichtys_novacula_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Xyrichtys novacula\GMEX_IDW_Xyrichtys_novacula_2016.tif
-GMEX_IDW_Xyrichtys_novacula_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Xyrichtys novacula\GMEX_IDW_Xyrichtys_novacula_2017.tif
-GMEX_IDW_Xyrichtys_novacula_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Xyrichtys novacula\GMEX_IDW_Xyrichtys_novacula_2018.tif
-GMEX_IDW_Xyrichtys_novacula_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Xyrichtys novacula\GMEX_IDW_Xyrichtys_novacula_2019.tif
-GMEX_IDW_Xyrichtys_novacula_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Xyrichtys novacula\GMEX_IDW_Xyrichtys_novacula_2021.tif
-GMEX_IDW_Xyrichtys_novacula_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Xyrichtys novacula\GMEX_IDW_Xyrichtys_novacula_2022.tif
-GMEX_IDW_Xyrichtys_novacula_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Xyrichtys novacula\GMEX_IDW_Xyrichtys_novacula_2023.tif
-GMEX_IDW_Xyrichtys_novacula_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\Xyrichtys novacula\GMEX_IDW_Xyrichtys_novacula_2024.tif
-GMEX_IDW_Core_Species_Richness_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2010.tif
-GMEX_IDW_Core_Species_Richness_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2011.tif
-GMEX_IDW_Core_Species_Richness_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2012.tif
-GMEX_IDW_Core_Species_Richness_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2013.tif
-GMEX_IDW_Core_Species_Richness_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2014.tif
-GMEX_IDW_Core_Species_Richness_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2015.tif
-GMEX_IDW_Core_Species_Richness_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2016.tif
-GMEX_IDW_Core_Species_Richness_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2017.tif
-GMEX_IDW_Core_Species_Richness_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2018.tif
-GMEX_IDW_Core_Species_Richness_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2019.tif
-GMEX_IDW_Core_Species_Richness_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2021.tif
-GMEX_IDW_Core_Species_Richness_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2022.tif
-GMEX_IDW_Core_Species_Richness_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2023.tif
-GMEX_IDW_Core_Species_Richness_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Core Species Richness\GMEX_IDW_Core_Species_Richness_2024.tif
-GMEX_IDW_Species_Richness_2010.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2010.tif
-GMEX_IDW_Species_Richness_2011.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2011.tif
-GMEX_IDW_Species_Richness_2012.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2012.tif
-GMEX_IDW_Species_Richness_2013.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2013.tif
-GMEX_IDW_Species_Richness_2014.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2014.tif
-GMEX_IDW_Species_Richness_2015.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2015.tif
-GMEX_IDW_Species_Richness_2016.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2016.tif
-GMEX_IDW_Species_Richness_2017.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2017.tif
-GMEX_IDW_Species_Richness_2018.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2018.tif
-GMEX_IDW_Species_Richness_2019.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2019.tif
-GMEX_IDW_Species_Richness_2021.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2021.tif
-GMEX_IDW_Species_Richness_2022.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2022.tif
-GMEX_IDW_Species_Richness_2023.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2023.tif
-GMEX_IDW_Species_Richness_2024.tif,.tif,1.32 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GMEX_IDW\_Species Richness\GMEX_IDW_Species_Richness_2024.tif
-GOA_IDW_Anoplopoma_fimbria_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_1990.tif
-GOA_IDW_Anoplopoma_fimbria_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_1993.tif
-GOA_IDW_Anoplopoma_fimbria_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_1996.tif
-GOA_IDW_Anoplopoma_fimbria_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_1999.tif
-GOA_IDW_Anoplopoma_fimbria_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_2003.tif
-GOA_IDW_Anoplopoma_fimbria_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_2005.tif
-GOA_IDW_Anoplopoma_fimbria_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_2007.tif
-GOA_IDW_Anoplopoma_fimbria_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_2009.tif
-GOA_IDW_Anoplopoma_fimbria_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_2011.tif
-GOA_IDW_Anoplopoma_fimbria_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_2013.tif
-GOA_IDW_Anoplopoma_fimbria_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_2015.tif
-GOA_IDW_Anoplopoma_fimbria_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_2017.tif
-GOA_IDW_Anoplopoma_fimbria_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_2019.tif
-GOA_IDW_Anoplopoma_fimbria_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_2021.tif
-GOA_IDW_Anoplopoma_fimbria_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Anoplopoma fimbria\GOA_IDW_Anoplopoma_fimbria_2023.tif
-GOA_IDW_Atheresthes_stomias_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_1990.tif
-GOA_IDW_Atheresthes_stomias_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_1993.tif
-GOA_IDW_Atheresthes_stomias_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_1996.tif
-GOA_IDW_Atheresthes_stomias_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_1999.tif
-GOA_IDW_Atheresthes_stomias_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_2003.tif
-GOA_IDW_Atheresthes_stomias_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_2005.tif
-GOA_IDW_Atheresthes_stomias_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_2007.tif
-GOA_IDW_Atheresthes_stomias_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_2009.tif
-GOA_IDW_Atheresthes_stomias_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_2011.tif
-GOA_IDW_Atheresthes_stomias_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_2013.tif
-GOA_IDW_Atheresthes_stomias_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_2015.tif
-GOA_IDW_Atheresthes_stomias_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_2017.tif
-GOA_IDW_Atheresthes_stomias_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_2019.tif
-GOA_IDW_Atheresthes_stomias_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_2021.tif
-GOA_IDW_Atheresthes_stomias_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Atheresthes stomias\GOA_IDW_Atheresthes_stomias_2023.tif
-GOA_IDW_Bathymaster_signatus_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_1990.tif
-GOA_IDW_Bathymaster_signatus_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_1993.tif
-GOA_IDW_Bathymaster_signatus_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_1996.tif
-GOA_IDW_Bathymaster_signatus_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_1999.tif
-GOA_IDW_Bathymaster_signatus_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_2003.tif
-GOA_IDW_Bathymaster_signatus_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_2005.tif
-GOA_IDW_Bathymaster_signatus_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_2007.tif
-GOA_IDW_Bathymaster_signatus_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_2009.tif
-GOA_IDW_Bathymaster_signatus_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_2011.tif
-GOA_IDW_Bathymaster_signatus_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_2013.tif
-GOA_IDW_Bathymaster_signatus_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_2015.tif
-GOA_IDW_Bathymaster_signatus_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:32:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_2017.tif
-GOA_IDW_Bathymaster_signatus_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_2019.tif
-GOA_IDW_Bathymaster_signatus_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_2021.tif
-GOA_IDW_Bathymaster_signatus_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Bathymaster signatus\GOA_IDW_Bathymaster_signatus_2023.tif
-GOA_IDW_Beringraja_binoculata_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_1990.tif
-GOA_IDW_Beringraja_binoculata_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_1993.tif
-GOA_IDW_Beringraja_binoculata_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_1996.tif
-GOA_IDW_Beringraja_binoculata_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_1999.tif
-GOA_IDW_Beringraja_binoculata_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_2003.tif
-GOA_IDW_Beringraja_binoculata_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_2005.tif
-GOA_IDW_Beringraja_binoculata_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_2007.tif
-GOA_IDW_Beringraja_binoculata_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_2009.tif
-GOA_IDW_Beringraja_binoculata_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_2011.tif
-GOA_IDW_Beringraja_binoculata_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_2013.tif
-GOA_IDW_Beringraja_binoculata_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_2015.tif
-GOA_IDW_Beringraja_binoculata_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_2017.tif
-GOA_IDW_Beringraja_binoculata_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_2019.tif
-GOA_IDW_Beringraja_binoculata_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_2021.tif
-GOA_IDW_Beringraja_binoculata_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja binoculata\GOA_IDW_Beringraja_binoculata_2023.tif
-GOA_IDW_Beringraja_rhina_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_1990.tif
-GOA_IDW_Beringraja_rhina_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_1993.tif
-GOA_IDW_Beringraja_rhina_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_1996.tif
-GOA_IDW_Beringraja_rhina_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_1999.tif
-GOA_IDW_Beringraja_rhina_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_2003.tif
-GOA_IDW_Beringraja_rhina_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_2005.tif
-GOA_IDW_Beringraja_rhina_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_2007.tif
-GOA_IDW_Beringraja_rhina_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_2009.tif
-GOA_IDW_Beringraja_rhina_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_2011.tif
-GOA_IDW_Beringraja_rhina_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_2013.tif
-GOA_IDW_Beringraja_rhina_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_2015.tif
-GOA_IDW_Beringraja_rhina_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_2017.tif
-GOA_IDW_Beringraja_rhina_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_2019.tif
-GOA_IDW_Beringraja_rhina_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_2021.tif
-GOA_IDW_Beringraja_rhina_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Beringraja rhina\GOA_IDW_Beringraja_rhina_2023.tif
-GOA_IDW_Berryteuthis_magister_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_1990.tif
-GOA_IDW_Berryteuthis_magister_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_1993.tif
-GOA_IDW_Berryteuthis_magister_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_1996.tif
-GOA_IDW_Berryteuthis_magister_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_1999.tif
-GOA_IDW_Berryteuthis_magister_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_2003.tif
-GOA_IDW_Berryteuthis_magister_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_2005.tif
-GOA_IDW_Berryteuthis_magister_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_2007.tif
-GOA_IDW_Berryteuthis_magister_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_2009.tif
-GOA_IDW_Berryteuthis_magister_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_2011.tif
-GOA_IDW_Berryteuthis_magister_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_2013.tif
-GOA_IDW_Berryteuthis_magister_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_2015.tif
-GOA_IDW_Berryteuthis_magister_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_2017.tif
-GOA_IDW_Berryteuthis_magister_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_2019.tif
-GOA_IDW_Berryteuthis_magister_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_2021.tif
-GOA_IDW_Berryteuthis_magister_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Berryteuthis magister\GOA_IDW_Berryteuthis_magister_2023.tif
-GOA_IDW_Chionoecetes_bairdi_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_1990.tif
-GOA_IDW_Chionoecetes_bairdi_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_1993.tif
-GOA_IDW_Chionoecetes_bairdi_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_1996.tif
-GOA_IDW_Chionoecetes_bairdi_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_1999.tif
-GOA_IDW_Chionoecetes_bairdi_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_2003.tif
-GOA_IDW_Chionoecetes_bairdi_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_2005.tif
-GOA_IDW_Chionoecetes_bairdi_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_2007.tif
-GOA_IDW_Chionoecetes_bairdi_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_2009.tif
-GOA_IDW_Chionoecetes_bairdi_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_2011.tif
-GOA_IDW_Chionoecetes_bairdi_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_2013.tif
-GOA_IDW_Chionoecetes_bairdi_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_2015.tif
-GOA_IDW_Chionoecetes_bairdi_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_2017.tif
-GOA_IDW_Chionoecetes_bairdi_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_2019.tif
-GOA_IDW_Chionoecetes_bairdi_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_2021.tif
-GOA_IDW_Chionoecetes_bairdi_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Chionoecetes bairdi\GOA_IDW_Chionoecetes_bairdi_2023.tif
-GOA_IDW_Clupea_pallasii_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_1990.tif
-GOA_IDW_Clupea_pallasii_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_1993.tif
-GOA_IDW_Clupea_pallasii_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_1996.tif
-GOA_IDW_Clupea_pallasii_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_1999.tif
-GOA_IDW_Clupea_pallasii_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_2003.tif
-GOA_IDW_Clupea_pallasii_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_2005.tif
-GOA_IDW_Clupea_pallasii_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_2007.tif
-GOA_IDW_Clupea_pallasii_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_2009.tif
-GOA_IDW_Clupea_pallasii_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_2011.tif
-GOA_IDW_Clupea_pallasii_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_2013.tif
-GOA_IDW_Clupea_pallasii_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_2015.tif
-GOA_IDW_Clupea_pallasii_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_2017.tif
-GOA_IDW_Clupea_pallasii_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_2019.tif
-GOA_IDW_Clupea_pallasii_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_2021.tif
-GOA_IDW_Clupea_pallasii_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Clupea pallasii\GOA_IDW_Clupea_pallasii_2023.tif
-GOA_IDW_Crossaster_papposus_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_1990.tif
-GOA_IDW_Crossaster_papposus_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_1993.tif
-GOA_IDW_Crossaster_papposus_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_1996.tif
-GOA_IDW_Crossaster_papposus_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_1999.tif
-GOA_IDW_Crossaster_papposus_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_2003.tif
-GOA_IDW_Crossaster_papposus_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_2005.tif
-GOA_IDW_Crossaster_papposus_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_2007.tif
-GOA_IDW_Crossaster_papposus_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_2009.tif
-GOA_IDW_Crossaster_papposus_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_2011.tif
-GOA_IDW_Crossaster_papposus_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_2013.tif
-GOA_IDW_Crossaster_papposus_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_2015.tif
-GOA_IDW_Crossaster_papposus_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_2017.tif
-GOA_IDW_Crossaster_papposus_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_2019.tif
-GOA_IDW_Crossaster_papposus_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_2021.tif
-GOA_IDW_Crossaster_papposus_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Crossaster papposus\GOA_IDW_Crossaster_papposus_2023.tif
-GOA_IDW_Ctenodiscus_crispatus_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_1990.tif
-GOA_IDW_Ctenodiscus_crispatus_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_1993.tif
-GOA_IDW_Ctenodiscus_crispatus_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_1996.tif
-GOA_IDW_Ctenodiscus_crispatus_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_1999.tif
-GOA_IDW_Ctenodiscus_crispatus_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_2003.tif
-GOA_IDW_Ctenodiscus_crispatus_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_2005.tif
-GOA_IDW_Ctenodiscus_crispatus_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_2007.tif
-GOA_IDW_Ctenodiscus_crispatus_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_2009.tif
-GOA_IDW_Ctenodiscus_crispatus_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_2011.tif
-GOA_IDW_Ctenodiscus_crispatus_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_2013.tif
-GOA_IDW_Ctenodiscus_crispatus_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_2015.tif
-GOA_IDW_Ctenodiscus_crispatus_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_2017.tif
-GOA_IDW_Ctenodiscus_crispatus_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_2019.tif
-GOA_IDW_Ctenodiscus_crispatus_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_2021.tif
-GOA_IDW_Ctenodiscus_crispatus_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ctenodiscus crispatus\GOA_IDW_Ctenodiscus_crispatus_2023.tif
-GOA_IDW_Dasycottus_setiger_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_1990.tif
-GOA_IDW_Dasycottus_setiger_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_1993.tif
-GOA_IDW_Dasycottus_setiger_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_1996.tif
-GOA_IDW_Dasycottus_setiger_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_1999.tif
-GOA_IDW_Dasycottus_setiger_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_2003.tif
-GOA_IDW_Dasycottus_setiger_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_2005.tif
-GOA_IDW_Dasycottus_setiger_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_2007.tif
-GOA_IDW_Dasycottus_setiger_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_2009.tif
-GOA_IDW_Dasycottus_setiger_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_2011.tif
-GOA_IDW_Dasycottus_setiger_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_2013.tif
-GOA_IDW_Dasycottus_setiger_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_2015.tif
-GOA_IDW_Dasycottus_setiger_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_2017.tif
-GOA_IDW_Dasycottus_setiger_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_2019.tif
-GOA_IDW_Dasycottus_setiger_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_2021.tif
-GOA_IDW_Dasycottus_setiger_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Dasycottus setiger\GOA_IDW_Dasycottus_setiger_2023.tif
-GOA_IDW_Elassochirus_tenuimanus_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_1990.tif
-GOA_IDW_Elassochirus_tenuimanus_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_1993.tif
-GOA_IDW_Elassochirus_tenuimanus_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_1996.tif
-GOA_IDW_Elassochirus_tenuimanus_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_1999.tif
-GOA_IDW_Elassochirus_tenuimanus_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_2003.tif
-GOA_IDW_Elassochirus_tenuimanus_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_2005.tif
-GOA_IDW_Elassochirus_tenuimanus_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_2007.tif
-GOA_IDW_Elassochirus_tenuimanus_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_2009.tif
-GOA_IDW_Elassochirus_tenuimanus_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_2011.tif
-GOA_IDW_Elassochirus_tenuimanus_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_2013.tif
-GOA_IDW_Elassochirus_tenuimanus_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_2015.tif
-GOA_IDW_Elassochirus_tenuimanus_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_2017.tif
-GOA_IDW_Elassochirus_tenuimanus_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_2019.tif
-GOA_IDW_Elassochirus_tenuimanus_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_2021.tif
-GOA_IDW_Elassochirus_tenuimanus_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Elassochirus tenuimanus\GOA_IDW_Elassochirus_tenuimanus_2023.tif
-GOA_IDW_Gadus_chalcogrammus_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_1990.tif
-GOA_IDW_Gadus_chalcogrammus_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_1993.tif
-GOA_IDW_Gadus_chalcogrammus_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_1996.tif
-GOA_IDW_Gadus_chalcogrammus_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_1999.tif
-GOA_IDW_Gadus_chalcogrammus_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_2003.tif
-GOA_IDW_Gadus_chalcogrammus_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_2005.tif
-GOA_IDW_Gadus_chalcogrammus_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_2007.tif
-GOA_IDW_Gadus_chalcogrammus_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_2009.tif
-GOA_IDW_Gadus_chalcogrammus_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_2011.tif
-GOA_IDW_Gadus_chalcogrammus_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_2013.tif
-GOA_IDW_Gadus_chalcogrammus_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_2015.tif
-GOA_IDW_Gadus_chalcogrammus_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_2017.tif
-GOA_IDW_Gadus_chalcogrammus_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_2019.tif
-GOA_IDW_Gadus_chalcogrammus_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_2021.tif
-GOA_IDW_Gadus_chalcogrammus_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus chalcogrammus\GOA_IDW_Gadus_chalcogrammus_2023.tif
-GOA_IDW_Gadus_macrocephalus_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_1990.tif
-GOA_IDW_Gadus_macrocephalus_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_1993.tif
-GOA_IDW_Gadus_macrocephalus_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_1996.tif
-GOA_IDW_Gadus_macrocephalus_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_1999.tif
-GOA_IDW_Gadus_macrocephalus_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_2003.tif
-GOA_IDW_Gadus_macrocephalus_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_2005.tif
-GOA_IDW_Gadus_macrocephalus_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_2007.tif
-GOA_IDW_Gadus_macrocephalus_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_2009.tif
-GOA_IDW_Gadus_macrocephalus_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_2011.tif
-GOA_IDW_Gadus_macrocephalus_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_2013.tif
-GOA_IDW_Gadus_macrocephalus_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_2015.tif
-GOA_IDW_Gadus_macrocephalus_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_2017.tif
-GOA_IDW_Gadus_macrocephalus_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_2019.tif
-GOA_IDW_Gadus_macrocephalus_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_2021.tif
-GOA_IDW_Gadus_macrocephalus_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gadus macrocephalus\GOA_IDW_Gadus_macrocephalus_2023.tif
-GOA_IDW_Glyptocephalus_zachirus_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_1990.tif
-GOA_IDW_Glyptocephalus_zachirus_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_1993.tif
-GOA_IDW_Glyptocephalus_zachirus_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_1996.tif
-GOA_IDW_Glyptocephalus_zachirus_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_1999.tif
-GOA_IDW_Glyptocephalus_zachirus_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_2003.tif
-GOA_IDW_Glyptocephalus_zachirus_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_2005.tif
-GOA_IDW_Glyptocephalus_zachirus_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_2007.tif
-GOA_IDW_Glyptocephalus_zachirus_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_2009.tif
-GOA_IDW_Glyptocephalus_zachirus_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_2011.tif
-GOA_IDW_Glyptocephalus_zachirus_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_2013.tif
-GOA_IDW_Glyptocephalus_zachirus_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_2015.tif
-GOA_IDW_Glyptocephalus_zachirus_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_2017.tif
-GOA_IDW_Glyptocephalus_zachirus_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_2019.tif
-GOA_IDW_Glyptocephalus_zachirus_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_2021.tif
-GOA_IDW_Glyptocephalus_zachirus_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Glyptocephalus zachirus\GOA_IDW_Glyptocephalus_zachirus_2023.tif
-GOA_IDW_Gorgonocephalus_eucnemis_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_1990.tif
-GOA_IDW_Gorgonocephalus_eucnemis_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_1993.tif
-GOA_IDW_Gorgonocephalus_eucnemis_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_1996.tif
-GOA_IDW_Gorgonocephalus_eucnemis_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_1999.tif
-GOA_IDW_Gorgonocephalus_eucnemis_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_2003.tif
-GOA_IDW_Gorgonocephalus_eucnemis_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_2005.tif
-GOA_IDW_Gorgonocephalus_eucnemis_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_2007.tif
-GOA_IDW_Gorgonocephalus_eucnemis_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_2009.tif
-GOA_IDW_Gorgonocephalus_eucnemis_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_2011.tif
-GOA_IDW_Gorgonocephalus_eucnemis_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:33:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_2013.tif
-GOA_IDW_Gorgonocephalus_eucnemis_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_2015.tif
-GOA_IDW_Gorgonocephalus_eucnemis_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_2017.tif
-GOA_IDW_Gorgonocephalus_eucnemis_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_2019.tif
-GOA_IDW_Gorgonocephalus_eucnemis_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_2021.tif
-GOA_IDW_Gorgonocephalus_eucnemis_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Gorgonocephalus eucnemis\GOA_IDW_Gorgonocephalus_eucnemis_2023.tif
-GOA_IDW_Hemilepidotus_jordani_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_1990.tif
-GOA_IDW_Hemilepidotus_jordani_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_1993.tif
-GOA_IDW_Hemilepidotus_jordani_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_1996.tif
-GOA_IDW_Hemilepidotus_jordani_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_1999.tif
-GOA_IDW_Hemilepidotus_jordani_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_2003.tif
-GOA_IDW_Hemilepidotus_jordani_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_2005.tif
-GOA_IDW_Hemilepidotus_jordani_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_2007.tif
-GOA_IDW_Hemilepidotus_jordani_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_2009.tif
-GOA_IDW_Hemilepidotus_jordani_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_2011.tif
-GOA_IDW_Hemilepidotus_jordani_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_2013.tif
-GOA_IDW_Hemilepidotus_jordani_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_2015.tif
-GOA_IDW_Hemilepidotus_jordani_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_2017.tif
-GOA_IDW_Hemilepidotus_jordani_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_2019.tif
-GOA_IDW_Hemilepidotus_jordani_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_2021.tif
-GOA_IDW_Hemilepidotus_jordani_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemilepidotus jordani\GOA_IDW_Hemilepidotus_jordani_2023.tif
-GOA_IDW_Hemitripterus_bolini_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_1990.tif
-GOA_IDW_Hemitripterus_bolini_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_1993.tif
-GOA_IDW_Hemitripterus_bolini_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_1996.tif
-GOA_IDW_Hemitripterus_bolini_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_1999.tif
-GOA_IDW_Hemitripterus_bolini_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_2003.tif
-GOA_IDW_Hemitripterus_bolini_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_2005.tif
-GOA_IDW_Hemitripterus_bolini_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_2007.tif
-GOA_IDW_Hemitripterus_bolini_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_2009.tif
-GOA_IDW_Hemitripterus_bolini_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_2011.tif
-GOA_IDW_Hemitripterus_bolini_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_2013.tif
-GOA_IDW_Hemitripterus_bolini_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_2015.tif
-GOA_IDW_Hemitripterus_bolini_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_2017.tif
-GOA_IDW_Hemitripterus_bolini_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_2019.tif
-GOA_IDW_Hemitripterus_bolini_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_2021.tif
-GOA_IDW_Hemitripterus_bolini_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hemitripterus bolini\GOA_IDW_Hemitripterus_bolini_2023.tif
-GOA_IDW_Hippoglossoides_elassodon_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_1990.tif
-GOA_IDW_Hippoglossoides_elassodon_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_1993.tif
-GOA_IDW_Hippoglossoides_elassodon_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_1996.tif
-GOA_IDW_Hippoglossoides_elassodon_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_1999.tif
-GOA_IDW_Hippoglossoides_elassodon_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_2003.tif
-GOA_IDW_Hippoglossoides_elassodon_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_2005.tif
-GOA_IDW_Hippoglossoides_elassodon_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_2007.tif
-GOA_IDW_Hippoglossoides_elassodon_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_2009.tif
-GOA_IDW_Hippoglossoides_elassodon_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_2011.tif
-GOA_IDW_Hippoglossoides_elassodon_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_2013.tif
-GOA_IDW_Hippoglossoides_elassodon_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_2015.tif
-GOA_IDW_Hippoglossoides_elassodon_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_2017.tif
-GOA_IDW_Hippoglossoides_elassodon_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_2019.tif
-GOA_IDW_Hippoglossoides_elassodon_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_2021.tif
-GOA_IDW_Hippoglossoides_elassodon_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossoides elassodon\GOA_IDW_Hippoglossoides_elassodon_2023.tif
-GOA_IDW_Hippoglossus_stenolepis_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_1990.tif
-GOA_IDW_Hippoglossus_stenolepis_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_1993.tif
-GOA_IDW_Hippoglossus_stenolepis_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_1996.tif
-GOA_IDW_Hippoglossus_stenolepis_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_1999.tif
-GOA_IDW_Hippoglossus_stenolepis_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_2003.tif
-GOA_IDW_Hippoglossus_stenolepis_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_2005.tif
-GOA_IDW_Hippoglossus_stenolepis_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_2007.tif
-GOA_IDW_Hippoglossus_stenolepis_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_2009.tif
-GOA_IDW_Hippoglossus_stenolepis_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_2011.tif
-GOA_IDW_Hippoglossus_stenolepis_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_2013.tif
-GOA_IDW_Hippoglossus_stenolepis_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_2015.tif
-GOA_IDW_Hippoglossus_stenolepis_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_2017.tif
-GOA_IDW_Hippoglossus_stenolepis_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_2019.tif
-GOA_IDW_Hippoglossus_stenolepis_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_2021.tif
-GOA_IDW_Hippoglossus_stenolepis_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hippoglossus stenolepis\GOA_IDW_Hippoglossus_stenolepis_2023.tif
-GOA_IDW_Hyas_lyratus_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_1990.tif
-GOA_IDW_Hyas_lyratus_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_1993.tif
-GOA_IDW_Hyas_lyratus_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_1996.tif
-GOA_IDW_Hyas_lyratus_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_1999.tif
-GOA_IDW_Hyas_lyratus_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_2003.tif
-GOA_IDW_Hyas_lyratus_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_2005.tif
-GOA_IDW_Hyas_lyratus_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_2007.tif
-GOA_IDW_Hyas_lyratus_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_2009.tif
-GOA_IDW_Hyas_lyratus_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_2011.tif
-GOA_IDW_Hyas_lyratus_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_2013.tif
-GOA_IDW_Hyas_lyratus_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_2015.tif
-GOA_IDW_Hyas_lyratus_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_2017.tif
-GOA_IDW_Hyas_lyratus_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_2019.tif
-GOA_IDW_Hyas_lyratus_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_2021.tif
-GOA_IDW_Hyas_lyratus_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hyas lyratus\GOA_IDW_Hyas_lyratus_2023.tif
-GOA_IDW_Hydrolagus_colliei_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_1990.tif
-GOA_IDW_Hydrolagus_colliei_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_1993.tif
-GOA_IDW_Hydrolagus_colliei_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_1996.tif
-GOA_IDW_Hydrolagus_colliei_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_1999.tif
-GOA_IDW_Hydrolagus_colliei_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_2003.tif
-GOA_IDW_Hydrolagus_colliei_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_2005.tif
-GOA_IDW_Hydrolagus_colliei_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_2007.tif
-GOA_IDW_Hydrolagus_colliei_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_2009.tif
-GOA_IDW_Hydrolagus_colliei_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_2011.tif
-GOA_IDW_Hydrolagus_colliei_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_2013.tif
-GOA_IDW_Hydrolagus_colliei_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_2015.tif
-GOA_IDW_Hydrolagus_colliei_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_2017.tif
-GOA_IDW_Hydrolagus_colliei_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_2019.tif
-GOA_IDW_Hydrolagus_colliei_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_2021.tif
-GOA_IDW_Hydrolagus_colliei_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Hydrolagus colliei\GOA_IDW_Hydrolagus_colliei_2023.tif
-GOA_IDW_Isopsetta_isolepis_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_1990.tif
-GOA_IDW_Isopsetta_isolepis_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_1993.tif
-GOA_IDW_Isopsetta_isolepis_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_1996.tif
-GOA_IDW_Isopsetta_isolepis_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_1999.tif
-GOA_IDW_Isopsetta_isolepis_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_2003.tif
-GOA_IDW_Isopsetta_isolepis_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_2005.tif
-GOA_IDW_Isopsetta_isolepis_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_2007.tif
-GOA_IDW_Isopsetta_isolepis_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_2009.tif
-GOA_IDW_Isopsetta_isolepis_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_2011.tif
-GOA_IDW_Isopsetta_isolepis_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_2013.tif
-GOA_IDW_Isopsetta_isolepis_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_2015.tif
-GOA_IDW_Isopsetta_isolepis_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_2017.tif
-GOA_IDW_Isopsetta_isolepis_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_2019.tif
-GOA_IDW_Isopsetta_isolepis_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_2021.tif
-GOA_IDW_Isopsetta_isolepis_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Isopsetta isolepis\GOA_IDW_Isopsetta_isolepis_2023.tif
-GOA_IDW_Lepidopsetta_sp_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_1990.tif
-GOA_IDW_Lepidopsetta_sp_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_1993.tif
-GOA_IDW_Lepidopsetta_sp_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_1996.tif
-GOA_IDW_Lepidopsetta_sp_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_1999.tif
-GOA_IDW_Lepidopsetta_sp_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_2003.tif
-GOA_IDW_Lepidopsetta_sp_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_2005.tif
-GOA_IDW_Lepidopsetta_sp_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_2007.tif
-GOA_IDW_Lepidopsetta_sp_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_2009.tif
-GOA_IDW_Lepidopsetta_sp_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_2011.tif
-GOA_IDW_Lepidopsetta_sp_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_2013.tif
-GOA_IDW_Lepidopsetta_sp_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_2015.tif
-GOA_IDW_Lepidopsetta_sp_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_2017.tif
-GOA_IDW_Lepidopsetta_sp_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_2019.tif
-GOA_IDW_Lepidopsetta_sp_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_2021.tif
-GOA_IDW_Lepidopsetta_sp_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lepidopsetta sp\GOA_IDW_Lepidopsetta_sp_2023.tif
-GOA_IDW_Lethasterias_nanimensis_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_1990.tif
-GOA_IDW_Lethasterias_nanimensis_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_1993.tif
-GOA_IDW_Lethasterias_nanimensis_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_1996.tif
-GOA_IDW_Lethasterias_nanimensis_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_1999.tif
-GOA_IDW_Lethasterias_nanimensis_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_2003.tif
-GOA_IDW_Lethasterias_nanimensis_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_2005.tif
-GOA_IDW_Lethasterias_nanimensis_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_2007.tif
-GOA_IDW_Lethasterias_nanimensis_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_2009.tif
-GOA_IDW_Lethasterias_nanimensis_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_2011.tif
-GOA_IDW_Lethasterias_nanimensis_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_2013.tif
-GOA_IDW_Lethasterias_nanimensis_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_2015.tif
-GOA_IDW_Lethasterias_nanimensis_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_2017.tif
-GOA_IDW_Lethasterias_nanimensis_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_2019.tif
-GOA_IDW_Lethasterias_nanimensis_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_2021.tif
-GOA_IDW_Lethasterias_nanimensis_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lethasterias nanimensis\GOA_IDW_Lethasterias_nanimensis_2023.tif
-GOA_IDW_Limanda_aspera_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_1990.tif
-GOA_IDW_Limanda_aspera_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_1993.tif
-GOA_IDW_Limanda_aspera_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_1996.tif
-GOA_IDW_Limanda_aspera_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_1999.tif
-GOA_IDW_Limanda_aspera_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_2003.tif
-GOA_IDW_Limanda_aspera_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_2005.tif
-GOA_IDW_Limanda_aspera_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_2007.tif
-GOA_IDW_Limanda_aspera_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_2009.tif
-GOA_IDW_Limanda_aspera_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_2011.tif
-GOA_IDW_Limanda_aspera_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_2013.tif
-GOA_IDW_Limanda_aspera_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_2015.tif
-GOA_IDW_Limanda_aspera_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_2017.tif
-GOA_IDW_Limanda_aspera_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_2019.tif
-GOA_IDW_Limanda_aspera_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_2021.tif
-GOA_IDW_Limanda_aspera_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Limanda aspera\GOA_IDW_Limanda_aspera_2023.tif
-GOA_IDW_Lycodes_brevipes_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_1990.tif
-GOA_IDW_Lycodes_brevipes_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_1993.tif
-GOA_IDW_Lycodes_brevipes_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_1996.tif
-GOA_IDW_Lycodes_brevipes_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_1999.tif
-GOA_IDW_Lycodes_brevipes_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_2003.tif
-GOA_IDW_Lycodes_brevipes_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_2005.tif
-GOA_IDW_Lycodes_brevipes_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_2007.tif
-GOA_IDW_Lycodes_brevipes_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_2009.tif
-GOA_IDW_Lycodes_brevipes_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_2011.tif
-GOA_IDW_Lycodes_brevipes_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_2013.tif
-GOA_IDW_Lycodes_brevipes_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_2015.tif
-GOA_IDW_Lycodes_brevipes_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_2017.tif
-GOA_IDW_Lycodes_brevipes_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_2019.tif
-GOA_IDW_Lycodes_brevipes_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_2021.tif
-GOA_IDW_Lycodes_brevipes_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes brevipes\GOA_IDW_Lycodes_brevipes_2023.tif
-GOA_IDW_Lycodes_palearis_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_1990.tif
-GOA_IDW_Lycodes_palearis_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_1993.tif
-GOA_IDW_Lycodes_palearis_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_1996.tif
-GOA_IDW_Lycodes_palearis_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_1999.tif
-GOA_IDW_Lycodes_palearis_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_2003.tif
-GOA_IDW_Lycodes_palearis_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_2005.tif
-GOA_IDW_Lycodes_palearis_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_2007.tif
-GOA_IDW_Lycodes_palearis_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_2009.tif
-GOA_IDW_Lycodes_palearis_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_2011.tif
-GOA_IDW_Lycodes_palearis_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_2013.tif
-GOA_IDW_Lycodes_palearis_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_2015.tif
-GOA_IDW_Lycodes_palearis_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_2017.tif
-GOA_IDW_Lycodes_palearis_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_2019.tif
-GOA_IDW_Lycodes_palearis_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_2021.tif
-GOA_IDW_Lycodes_palearis_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lycodes palearis\GOA_IDW_Lycodes_palearis_2023.tif
-GOA_IDW_Lyopsetta_exilis_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_1990.tif
-GOA_IDW_Lyopsetta_exilis_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_1993.tif
-GOA_IDW_Lyopsetta_exilis_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_1996.tif
-GOA_IDW_Lyopsetta_exilis_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_1999.tif
-GOA_IDW_Lyopsetta_exilis_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_2003.tif
-GOA_IDW_Lyopsetta_exilis_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_2005.tif
-GOA_IDW_Lyopsetta_exilis_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_2007.tif
-GOA_IDW_Lyopsetta_exilis_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_2009.tif
-GOA_IDW_Lyopsetta_exilis_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_2011.tif
-GOA_IDW_Lyopsetta_exilis_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_2013.tif
-GOA_IDW_Lyopsetta_exilis_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_2015.tif
-GOA_IDW_Lyopsetta_exilis_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_2017.tif
-GOA_IDW_Lyopsetta_exilis_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_2019.tif
-GOA_IDW_Lyopsetta_exilis_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_2021.tif
-GOA_IDW_Lyopsetta_exilis_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Lyopsetta exilis\GOA_IDW_Lyopsetta_exilis_2023.tif
-GOA_IDW_Malacocottus_zonurus_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_1990.tif
-GOA_IDW_Malacocottus_zonurus_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_1993.tif
-GOA_IDW_Malacocottus_zonurus_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_1996.tif
-GOA_IDW_Malacocottus_zonurus_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_1999.tif
-GOA_IDW_Malacocottus_zonurus_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_2003.tif
-GOA_IDW_Malacocottus_zonurus_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_2005.tif
-GOA_IDW_Malacocottus_zonurus_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_2007.tif
-GOA_IDW_Malacocottus_zonurus_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:34:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_2009.tif
-GOA_IDW_Malacocottus_zonurus_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_2011.tif
-GOA_IDW_Malacocottus_zonurus_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_2013.tif
-GOA_IDW_Malacocottus_zonurus_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_2015.tif
-GOA_IDW_Malacocottus_zonurus_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_2017.tif
-GOA_IDW_Malacocottus_zonurus_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_2019.tif
-GOA_IDW_Malacocottus_zonurus_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_2021.tif
-GOA_IDW_Malacocottus_zonurus_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Malacocottus zonurus\GOA_IDW_Malacocottus_zonurus_2023.tif
-GOA_IDW_Mallotus_villosus_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_1990.tif
-GOA_IDW_Mallotus_villosus_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_1993.tif
-GOA_IDW_Mallotus_villosus_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_1996.tif
-GOA_IDW_Mallotus_villosus_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_1999.tif
-GOA_IDW_Mallotus_villosus_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_2003.tif
-GOA_IDW_Mallotus_villosus_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_2005.tif
-GOA_IDW_Mallotus_villosus_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_2007.tif
-GOA_IDW_Mallotus_villosus_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_2009.tif
-GOA_IDW_Mallotus_villosus_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_2011.tif
-GOA_IDW_Mallotus_villosus_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_2013.tif
-GOA_IDW_Mallotus_villosus_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_2015.tif
-GOA_IDW_Mallotus_villosus_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_2017.tif
-GOA_IDW_Mallotus_villosus_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_2019.tif
-GOA_IDW_Mallotus_villosus_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_2021.tif
-GOA_IDW_Mallotus_villosus_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Mallotus villosus\GOA_IDW_Mallotus_villosus_2023.tif
-GOA_IDW_Microstomus_pacificus_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:34:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_1990.tif
-GOA_IDW_Microstomus_pacificus_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:34:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_1993.tif
-GOA_IDW_Microstomus_pacificus_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:34:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_1996.tif
-GOA_IDW_Microstomus_pacificus_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:34:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_1999.tif
-GOA_IDW_Microstomus_pacificus_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:34:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_2003.tif
-GOA_IDW_Microstomus_pacificus_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:34:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_2005.tif
-GOA_IDW_Microstomus_pacificus_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:34:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_2007.tif
-GOA_IDW_Microstomus_pacificus_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:34:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_2009.tif
-GOA_IDW_Microstomus_pacificus_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:34:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_2011.tif
-GOA_IDW_Microstomus_pacificus_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:34:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_2013.tif
-GOA_IDW_Microstomus_pacificus_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:34:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_2015.tif
-GOA_IDW_Microstomus_pacificus_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:34:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_2017.tif
-GOA_IDW_Microstomus_pacificus_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:34:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_2019.tif
-GOA_IDW_Microstomus_pacificus_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:34:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_2021.tif
-GOA_IDW_Microstomus_pacificus_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:34:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Microstomus pacificus\GOA_IDW_Microstomus_pacificus_2023.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_1990.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_1993.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_1996.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_1999.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_2003.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_2005.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_2007.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_2009.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_2011.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_2013.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_2015.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_2017.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_2019.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_2021.tif
-GOA_IDW_Myoxocephalus_polyacanthocephalus_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Myoxocephalus polyacanthocephalus\GOA_IDW_Myoxocephalus_polyacanthocephalus_2023.tif
-GOA_IDW_Ophiodon_elongatus_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_1990.tif
-GOA_IDW_Ophiodon_elongatus_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_1993.tif
-GOA_IDW_Ophiodon_elongatus_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_1996.tif
-GOA_IDW_Ophiodon_elongatus_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_1999.tif
-GOA_IDW_Ophiodon_elongatus_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_2003.tif
-GOA_IDW_Ophiodon_elongatus_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_2005.tif
-GOA_IDW_Ophiodon_elongatus_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_2007.tif
-GOA_IDW_Ophiodon_elongatus_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_2009.tif
-GOA_IDW_Ophiodon_elongatus_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_2011.tif
-GOA_IDW_Ophiodon_elongatus_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_2013.tif
-GOA_IDW_Ophiodon_elongatus_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_2015.tif
-GOA_IDW_Ophiodon_elongatus_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_2017.tif
-GOA_IDW_Ophiodon_elongatus_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_2019.tif
-GOA_IDW_Ophiodon_elongatus_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_2021.tif
-GOA_IDW_Ophiodon_elongatus_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Ophiodon elongatus\GOA_IDW_Ophiodon_elongatus_2023.tif
-GOA_IDW_Oregonia_gracilis_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_1990.tif
-GOA_IDW_Oregonia_gracilis_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_1993.tif
-GOA_IDW_Oregonia_gracilis_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_1996.tif
-GOA_IDW_Oregonia_gracilis_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_1999.tif
-GOA_IDW_Oregonia_gracilis_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_2003.tif
-GOA_IDW_Oregonia_gracilis_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_2005.tif
-GOA_IDW_Oregonia_gracilis_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_2007.tif
-GOA_IDW_Oregonia_gracilis_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_2009.tif
-GOA_IDW_Oregonia_gracilis_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_2011.tif
-GOA_IDW_Oregonia_gracilis_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_2013.tif
-GOA_IDW_Oregonia_gracilis_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_2015.tif
-GOA_IDW_Oregonia_gracilis_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_2017.tif
-GOA_IDW_Oregonia_gracilis_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_2019.tif
-GOA_IDW_Oregonia_gracilis_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_2021.tif
-GOA_IDW_Oregonia_gracilis_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Oregonia gracilis\GOA_IDW_Oregonia_gracilis_2023.tif
-GOA_IDW_Pagurus_aleuticus_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_1990.tif
-GOA_IDW_Pagurus_aleuticus_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_1993.tif
-GOA_IDW_Pagurus_aleuticus_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_1996.tif
-GOA_IDW_Pagurus_aleuticus_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_1999.tif
-GOA_IDW_Pagurus_aleuticus_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_2003.tif
-GOA_IDW_Pagurus_aleuticus_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_2005.tif
-GOA_IDW_Pagurus_aleuticus_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_2007.tif
-GOA_IDW_Pagurus_aleuticus_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_2009.tif
-GOA_IDW_Pagurus_aleuticus_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_2011.tif
-GOA_IDW_Pagurus_aleuticus_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_2013.tif
-GOA_IDW_Pagurus_aleuticus_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_2015.tif
-GOA_IDW_Pagurus_aleuticus_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_2017.tif
-GOA_IDW_Pagurus_aleuticus_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_2019.tif
-GOA_IDW_Pagurus_aleuticus_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_2021.tif
-GOA_IDW_Pagurus_aleuticus_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pagurus aleuticus\GOA_IDW_Pagurus_aleuticus_2023.tif
-GOA_IDW_Parophrys_vetulus_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_1990.tif
-GOA_IDW_Parophrys_vetulus_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_1993.tif
-GOA_IDW_Parophrys_vetulus_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_1996.tif
-GOA_IDW_Parophrys_vetulus_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_1999.tif
-GOA_IDW_Parophrys_vetulus_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_2003.tif
-GOA_IDW_Parophrys_vetulus_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_2005.tif
-GOA_IDW_Parophrys_vetulus_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_2007.tif
-GOA_IDW_Parophrys_vetulus_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_2009.tif
-GOA_IDW_Parophrys_vetulus_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_2011.tif
-GOA_IDW_Parophrys_vetulus_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_2013.tif
-GOA_IDW_Parophrys_vetulus_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_2015.tif
-GOA_IDW_Parophrys_vetulus_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_2017.tif
-GOA_IDW_Parophrys_vetulus_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_2019.tif
-GOA_IDW_Parophrys_vetulus_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_2021.tif
-GOA_IDW_Parophrys_vetulus_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Parophrys vetulus\GOA_IDW_Parophrys_vetulus_2023.tif
-GOA_IDW_Pasiphaea_pacifica_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_1990.tif
-GOA_IDW_Pasiphaea_pacifica_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_1993.tif
-GOA_IDW_Pasiphaea_pacifica_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_1996.tif
-GOA_IDW_Pasiphaea_pacifica_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_1999.tif
-GOA_IDW_Pasiphaea_pacifica_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_2003.tif
-GOA_IDW_Pasiphaea_pacifica_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_2005.tif
-GOA_IDW_Pasiphaea_pacifica_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_2007.tif
-GOA_IDW_Pasiphaea_pacifica_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_2009.tif
-GOA_IDW_Pasiphaea_pacifica_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_2011.tif
-GOA_IDW_Pasiphaea_pacifica_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_2013.tif
-GOA_IDW_Pasiphaea_pacifica_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_2015.tif
-GOA_IDW_Pasiphaea_pacifica_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_2017.tif
-GOA_IDW_Pasiphaea_pacifica_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_2019.tif
-GOA_IDW_Pasiphaea_pacifica_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_2021.tif
-GOA_IDW_Pasiphaea_pacifica_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pasiphaea pacifica\GOA_IDW_Pasiphaea_pacifica_2023.tif
-GOA_IDW_Platichthys_stellatus_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_1990.tif
-GOA_IDW_Platichthys_stellatus_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_1993.tif
-GOA_IDW_Platichthys_stellatus_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_1996.tif
-GOA_IDW_Platichthys_stellatus_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_1999.tif
-GOA_IDW_Platichthys_stellatus_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_2003.tif
-GOA_IDW_Platichthys_stellatus_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_2005.tif
-GOA_IDW_Platichthys_stellatus_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_2007.tif
-GOA_IDW_Platichthys_stellatus_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_2009.tif
-GOA_IDW_Platichthys_stellatus_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_2011.tif
-GOA_IDW_Platichthys_stellatus_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_2013.tif
-GOA_IDW_Platichthys_stellatus_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_2015.tif
-GOA_IDW_Platichthys_stellatus_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_2017.tif
-GOA_IDW_Platichthys_stellatus_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_2019.tif
-GOA_IDW_Platichthys_stellatus_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_2021.tif
-GOA_IDW_Platichthys_stellatus_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Platichthys stellatus\GOA_IDW_Platichthys_stellatus_2023.tif
-GOA_IDW_Pleurogrammus_monopterygius_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_1990.tif
-GOA_IDW_Pleurogrammus_monopterygius_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_1993.tif
-GOA_IDW_Pleurogrammus_monopterygius_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_1996.tif
-GOA_IDW_Pleurogrammus_monopterygius_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_1999.tif
-GOA_IDW_Pleurogrammus_monopterygius_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_2003.tif
-GOA_IDW_Pleurogrammus_monopterygius_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_2005.tif
-GOA_IDW_Pleurogrammus_monopterygius_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_2007.tif
-GOA_IDW_Pleurogrammus_monopterygius_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_2009.tif
-GOA_IDW_Pleurogrammus_monopterygius_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_2011.tif
-GOA_IDW_Pleurogrammus_monopterygius_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_2013.tif
-GOA_IDW_Pleurogrammus_monopterygius_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_2015.tif
-GOA_IDW_Pleurogrammus_monopterygius_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_2017.tif
-GOA_IDW_Pleurogrammus_monopterygius_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_2019.tif
-GOA_IDW_Pleurogrammus_monopterygius_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_2021.tif
-GOA_IDW_Pleurogrammus_monopterygius_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pleurogrammus monopterygius\GOA_IDW_Pleurogrammus_monopterygius_2023.tif
-GOA_IDW_Pycnopodia_helianthoides_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_1990.tif
-GOA_IDW_Pycnopodia_helianthoides_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_1993.tif
-GOA_IDW_Pycnopodia_helianthoides_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_1996.tif
-GOA_IDW_Pycnopodia_helianthoides_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_1999.tif
-GOA_IDW_Pycnopodia_helianthoides_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_2003.tif
-GOA_IDW_Pycnopodia_helianthoides_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_2005.tif
-GOA_IDW_Pycnopodia_helianthoides_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_2007.tif
-GOA_IDW_Pycnopodia_helianthoides_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_2009.tif
-GOA_IDW_Pycnopodia_helianthoides_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_2011.tif
-GOA_IDW_Pycnopodia_helianthoides_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_2013.tif
-GOA_IDW_Pycnopodia_helianthoides_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_2015.tif
-GOA_IDW_Pycnopodia_helianthoides_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_2017.tif
-GOA_IDW_Pycnopodia_helianthoides_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_2019.tif
-GOA_IDW_Pycnopodia_helianthoides_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_2021.tif
-GOA_IDW_Pycnopodia_helianthoides_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Pycnopodia helianthoides\GOA_IDW_Pycnopodia_helianthoides_2023.tif
-GOA_IDW_Sebastes_alutus_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_1990.tif
-GOA_IDW_Sebastes_alutus_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_1993.tif
-GOA_IDW_Sebastes_alutus_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_1996.tif
-GOA_IDW_Sebastes_alutus_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_1999.tif
-GOA_IDW_Sebastes_alutus_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_2003.tif
-GOA_IDW_Sebastes_alutus_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_2005.tif
-GOA_IDW_Sebastes_alutus_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_2007.tif
-GOA_IDW_Sebastes_alutus_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_2009.tif
-GOA_IDW_Sebastes_alutus_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_2011.tif
-GOA_IDW_Sebastes_alutus_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_2013.tif
-GOA_IDW_Sebastes_alutus_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_2015.tif
-GOA_IDW_Sebastes_alutus_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_2017.tif
-GOA_IDW_Sebastes_alutus_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_2019.tif
-GOA_IDW_Sebastes_alutus_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_2021.tif
-GOA_IDW_Sebastes_alutus_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes alutus\GOA_IDW_Sebastes_alutus_2023.tif
-GOA_IDW_Sebastes_babcocki_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_1990.tif
-GOA_IDW_Sebastes_babcocki_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_1993.tif
-GOA_IDW_Sebastes_babcocki_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_1996.tif
-GOA_IDW_Sebastes_babcocki_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_1999.tif
-GOA_IDW_Sebastes_babcocki_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_2003.tif
-GOA_IDW_Sebastes_babcocki_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_2005.tif
-GOA_IDW_Sebastes_babcocki_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_2007.tif
-GOA_IDW_Sebastes_babcocki_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_2009.tif
-GOA_IDW_Sebastes_babcocki_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_2011.tif
-GOA_IDW_Sebastes_babcocki_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_2013.tif
-GOA_IDW_Sebastes_babcocki_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_2015.tif
-GOA_IDW_Sebastes_babcocki_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_2017.tif
-GOA_IDW_Sebastes_babcocki_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_2019.tif
-GOA_IDW_Sebastes_babcocki_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_2021.tif
-GOA_IDW_Sebastes_babcocki_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes babcocki\GOA_IDW_Sebastes_babcocki_2023.tif
-GOA_IDW_Sebastes_borealis_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_1990.tif
-GOA_IDW_Sebastes_borealis_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_1993.tif
-GOA_IDW_Sebastes_borealis_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_1996.tif
-GOA_IDW_Sebastes_borealis_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_1999.tif
-GOA_IDW_Sebastes_borealis_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_2003.tif
-GOA_IDW_Sebastes_borealis_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_2005.tif
-GOA_IDW_Sebastes_borealis_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_2007.tif
-GOA_IDW_Sebastes_borealis_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_2009.tif
-GOA_IDW_Sebastes_borealis_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_2011.tif
-GOA_IDW_Sebastes_borealis_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_2013.tif
-GOA_IDW_Sebastes_borealis_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_2015.tif
-GOA_IDW_Sebastes_borealis_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_2017.tif
-GOA_IDW_Sebastes_borealis_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_2019.tif
-GOA_IDW_Sebastes_borealis_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_2021.tif
-GOA_IDW_Sebastes_borealis_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes borealis\GOA_IDW_Sebastes_borealis_2023.tif
-GOA_IDW_Sebastes_brevispinis_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_1990.tif
-GOA_IDW_Sebastes_brevispinis_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_1993.tif
-GOA_IDW_Sebastes_brevispinis_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_1996.tif
-GOA_IDW_Sebastes_brevispinis_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_1999.tif
-GOA_IDW_Sebastes_brevispinis_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_2003.tif
-GOA_IDW_Sebastes_brevispinis_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_2005.tif
-GOA_IDW_Sebastes_brevispinis_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_2007.tif
-GOA_IDW_Sebastes_brevispinis_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_2009.tif
-GOA_IDW_Sebastes_brevispinis_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_2011.tif
-GOA_IDW_Sebastes_brevispinis_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_2013.tif
-GOA_IDW_Sebastes_brevispinis_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_2015.tif
-GOA_IDW_Sebastes_brevispinis_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_2017.tif
-GOA_IDW_Sebastes_brevispinis_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:35:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_2019.tif
-GOA_IDW_Sebastes_brevispinis_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_2021.tif
-GOA_IDW_Sebastes_brevispinis_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes brevispinis\GOA_IDW_Sebastes_brevispinis_2023.tif
-GOA_IDW_Sebastes_polyspinis_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_1990.tif
-GOA_IDW_Sebastes_polyspinis_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_1993.tif
-GOA_IDW_Sebastes_polyspinis_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_1996.tif
-GOA_IDW_Sebastes_polyspinis_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_1999.tif
-GOA_IDW_Sebastes_polyspinis_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_2003.tif
-GOA_IDW_Sebastes_polyspinis_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_2005.tif
-GOA_IDW_Sebastes_polyspinis_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_2007.tif
-GOA_IDW_Sebastes_polyspinis_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_2009.tif
-GOA_IDW_Sebastes_polyspinis_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_2011.tif
-GOA_IDW_Sebastes_polyspinis_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_2013.tif
-GOA_IDW_Sebastes_polyspinis_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_2015.tif
-GOA_IDW_Sebastes_polyspinis_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_2017.tif
-GOA_IDW_Sebastes_polyspinis_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_2019.tif
-GOA_IDW_Sebastes_polyspinis_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_2021.tif
-GOA_IDW_Sebastes_polyspinis_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes polyspinis\GOA_IDW_Sebastes_polyspinis_2023.tif
-GOA_IDW_Sebastes_zacentrus_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_1990.tif
-GOA_IDW_Sebastes_zacentrus_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_1993.tif
-GOA_IDW_Sebastes_zacentrus_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_1996.tif
-GOA_IDW_Sebastes_zacentrus_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_1999.tif
-GOA_IDW_Sebastes_zacentrus_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_2003.tif
-GOA_IDW_Sebastes_zacentrus_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_2005.tif
-GOA_IDW_Sebastes_zacentrus_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_2007.tif
-GOA_IDW_Sebastes_zacentrus_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_2009.tif
-GOA_IDW_Sebastes_zacentrus_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_2011.tif
-GOA_IDW_Sebastes_zacentrus_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_2013.tif
-GOA_IDW_Sebastes_zacentrus_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_2015.tif
-GOA_IDW_Sebastes_zacentrus_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_2017.tif
-GOA_IDW_Sebastes_zacentrus_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_2019.tif
-GOA_IDW_Sebastes_zacentrus_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_2021.tif
-GOA_IDW_Sebastes_zacentrus_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastes zacentrus\GOA_IDW_Sebastes_zacentrus_2023.tif
-GOA_IDW_Sebastolobus_alascanus_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_1990.tif
-GOA_IDW_Sebastolobus_alascanus_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_1993.tif
-GOA_IDW_Sebastolobus_alascanus_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_1996.tif
-GOA_IDW_Sebastolobus_alascanus_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_1999.tif
-GOA_IDW_Sebastolobus_alascanus_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_2003.tif
-GOA_IDW_Sebastolobus_alascanus_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_2005.tif
-GOA_IDW_Sebastolobus_alascanus_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_2007.tif
-GOA_IDW_Sebastolobus_alascanus_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_2009.tif
-GOA_IDW_Sebastolobus_alascanus_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_2011.tif
-GOA_IDW_Sebastolobus_alascanus_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_2013.tif
-GOA_IDW_Sebastolobus_alascanus_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_2015.tif
-GOA_IDW_Sebastolobus_alascanus_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_2017.tif
-GOA_IDW_Sebastolobus_alascanus_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_2019.tif
-GOA_IDW_Sebastolobus_alascanus_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_2021.tif
-GOA_IDW_Sebastolobus_alascanus_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Sebastolobus alascanus\GOA_IDW_Sebastolobus_alascanus_2023.tif
-GOA_IDW_Squalus_suckleyi_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_1990.tif
-GOA_IDW_Squalus_suckleyi_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_1993.tif
-GOA_IDW_Squalus_suckleyi_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_1996.tif
-GOA_IDW_Squalus_suckleyi_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_1999.tif
-GOA_IDW_Squalus_suckleyi_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_2003.tif
-GOA_IDW_Squalus_suckleyi_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_2005.tif
-GOA_IDW_Squalus_suckleyi_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_2007.tif
-GOA_IDW_Squalus_suckleyi_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_2009.tif
-GOA_IDW_Squalus_suckleyi_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_2011.tif
-GOA_IDW_Squalus_suckleyi_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_2013.tif
-GOA_IDW_Squalus_suckleyi_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_2015.tif
-GOA_IDW_Squalus_suckleyi_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_2017.tif
-GOA_IDW_Squalus_suckleyi_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_2019.tif
-GOA_IDW_Squalus_suckleyi_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_2021.tif
-GOA_IDW_Squalus_suckleyi_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Squalus suckleyi\GOA_IDW_Squalus_suckleyi_2023.tif
-GOA_IDW_Thaleichthys_pacificus_1990.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_1990.tif
-GOA_IDW_Thaleichthys_pacificus_1993.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_1993.tif
-GOA_IDW_Thaleichthys_pacificus_1996.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_1996.tif
-GOA_IDW_Thaleichthys_pacificus_1999.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_1999.tif
-GOA_IDW_Thaleichthys_pacificus_2003.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_2003.tif
-GOA_IDW_Thaleichthys_pacificus_2005.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_2005.tif
-GOA_IDW_Thaleichthys_pacificus_2007.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_2007.tif
-GOA_IDW_Thaleichthys_pacificus_2009.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_2009.tif
-GOA_IDW_Thaleichthys_pacificus_2011.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_2011.tif
-GOA_IDW_Thaleichthys_pacificus_2013.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_2013.tif
-GOA_IDW_Thaleichthys_pacificus_2015.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_2015.tif
-GOA_IDW_Thaleichthys_pacificus_2017.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_2017.tif
-GOA_IDW_Thaleichthys_pacificus_2019.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_2019.tif
-GOA_IDW_Thaleichthys_pacificus_2021.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_2021.tif
-GOA_IDW_Thaleichthys_pacificus_2023.tif,.tif,2.51 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\Thaleichthys pacificus\GOA_IDW_Thaleichthys_pacificus_2023.tif
-GOA_IDW_Core_Species_Richness_1990.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_1990.tif
-GOA_IDW_Core_Species_Richness_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_1993.tif
-GOA_IDW_Core_Species_Richness_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_1996.tif
-GOA_IDW_Core_Species_Richness_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_1999.tif
-GOA_IDW_Core_Species_Richness_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_2003.tif
-GOA_IDW_Core_Species_Richness_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_2005.tif
-GOA_IDW_Core_Species_Richness_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_2007.tif
-GOA_IDW_Core_Species_Richness_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_2009.tif
-GOA_IDW_Core_Species_Richness_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_2011.tif
-GOA_IDW_Core_Species_Richness_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_2013.tif
-GOA_IDW_Core_Species_Richness_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_2015.tif
-GOA_IDW_Core_Species_Richness_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_2017.tif
-GOA_IDW_Core_Species_Richness_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_2019.tif
-GOA_IDW_Core_Species_Richness_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_2021.tif
-GOA_IDW_Core_Species_Richness_2023.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Core Species Richness\GOA_IDW_Core_Species_Richness_2023.tif
-GOA_IDW_Species_Richness_1990.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_1990.tif
-GOA_IDW_Species_Richness_1993.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_1993.tif
-GOA_IDW_Species_Richness_1996.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_1996.tif
-GOA_IDW_Species_Richness_1999.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_1999.tif
-GOA_IDW_Species_Richness_2003.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_2003.tif
-GOA_IDW_Species_Richness_2005.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_2005.tif
-GOA_IDW_Species_Richness_2007.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_2007.tif
-GOA_IDW_Species_Richness_2009.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_2009.tif
-GOA_IDW_Species_Richness_2011.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_2011.tif
-GOA_IDW_Species_Richness_2013.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_2013.tif
-GOA_IDW_Species_Richness_2015.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_2015.tif
-GOA_IDW_Species_Richness_2017.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_2017.tif
-GOA_IDW_Species_Richness_2019.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_2019.tif
-GOA_IDW_Species_Richness_2021.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_2021.tif
-GOA_IDW_Species_Richness_2023.tif,.tif,2.50 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\GOA_IDW\_Species Richness\GOA_IDW_Species_Richness_2023.tif
-HI_IDW_Aphareus_rutilans_2016.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Aphareus rutilans\HI_IDW_Aphareus_rutilans_2016.tif
-HI_IDW_Aphareus_rutilans_2017.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Aphareus rutilans\HI_IDW_Aphareus_rutilans_2017.tif
-HI_IDW_Aphareus_rutilans_2018.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Aphareus rutilans\HI_IDW_Aphareus_rutilans_2018.tif
-HI_IDW_Aphareus_rutilans_2019.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Aphareus rutilans\HI_IDW_Aphareus_rutilans_2019.tif
-HI_IDW_Aphareus_rutilans_2020.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Aphareus rutilans\HI_IDW_Aphareus_rutilans_2020.tif
-HI_IDW_Aphareus_rutilans_2021.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Aphareus rutilans\HI_IDW_Aphareus_rutilans_2021.tif
-HI_IDW_Aphareus_rutilans_2022.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Aphareus rutilans\HI_IDW_Aphareus_rutilans_2022.tif
-HI_IDW_Aphareus_rutilans_2023.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Aphareus rutilans\HI_IDW_Aphareus_rutilans_2023.tif
-HI_IDW_Etelis_carbunculus_2016.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Etelis carbunculus\HI_IDW_Etelis_carbunculus_2016.tif
-HI_IDW_Etelis_carbunculus_2017.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Etelis carbunculus\HI_IDW_Etelis_carbunculus_2017.tif
-HI_IDW_Etelis_carbunculus_2018.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Etelis carbunculus\HI_IDW_Etelis_carbunculus_2018.tif
-HI_IDW_Etelis_carbunculus_2019.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Etelis carbunculus\HI_IDW_Etelis_carbunculus_2019.tif
-HI_IDW_Etelis_carbunculus_2020.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Etelis carbunculus\HI_IDW_Etelis_carbunculus_2020.tif
-HI_IDW_Etelis_carbunculus_2021.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Etelis carbunculus\HI_IDW_Etelis_carbunculus_2021.tif
-HI_IDW_Etelis_carbunculus_2022.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Etelis carbunculus\HI_IDW_Etelis_carbunculus_2022.tif
-HI_IDW_Etelis_carbunculus_2023.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Etelis carbunculus\HI_IDW_Etelis_carbunculus_2023.tif
-HI_IDW_Etelis_coruscans_2016.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Etelis coruscans\HI_IDW_Etelis_coruscans_2016.tif
-HI_IDW_Etelis_coruscans_2017.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Etelis coruscans\HI_IDW_Etelis_coruscans_2017.tif
-HI_IDW_Etelis_coruscans_2018.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Etelis coruscans\HI_IDW_Etelis_coruscans_2018.tif
-HI_IDW_Etelis_coruscans_2019.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Etelis coruscans\HI_IDW_Etelis_coruscans_2019.tif
-HI_IDW_Etelis_coruscans_2020.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Etelis coruscans\HI_IDW_Etelis_coruscans_2020.tif
-HI_IDW_Etelis_coruscans_2021.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Etelis coruscans\HI_IDW_Etelis_coruscans_2021.tif
-HI_IDW_Etelis_coruscans_2022.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Etelis coruscans\HI_IDW_Etelis_coruscans_2022.tif
-HI_IDW_Etelis_coruscans_2023.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Etelis coruscans\HI_IDW_Etelis_coruscans_2023.tif
-HI_IDW_Hyporthodus_quernus_2016.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Hyporthodus quernus\HI_IDW_Hyporthodus_quernus_2016.tif
-HI_IDW_Hyporthodus_quernus_2017.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Hyporthodus quernus\HI_IDW_Hyporthodus_quernus_2017.tif
-HI_IDW_Hyporthodus_quernus_2018.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Hyporthodus quernus\HI_IDW_Hyporthodus_quernus_2018.tif
-HI_IDW_Hyporthodus_quernus_2019.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Hyporthodus quernus\HI_IDW_Hyporthodus_quernus_2019.tif
-HI_IDW_Hyporthodus_quernus_2020.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Hyporthodus quernus\HI_IDW_Hyporthodus_quernus_2020.tif
-HI_IDW_Hyporthodus_quernus_2021.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Hyporthodus quernus\HI_IDW_Hyporthodus_quernus_2021.tif
-HI_IDW_Hyporthodus_quernus_2022.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Hyporthodus quernus\HI_IDW_Hyporthodus_quernus_2022.tif
-HI_IDW_Hyporthodus_quernus_2023.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Hyporthodus quernus\HI_IDW_Hyporthodus_quernus_2023.tif
-HI_IDW_Pristipomoides_filamentosus_2016.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides filamentosus\HI_IDW_Pristipomoides_filamentosus_2016.tif
-HI_IDW_Pristipomoides_filamentosus_2017.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides filamentosus\HI_IDW_Pristipomoides_filamentosus_2017.tif
-HI_IDW_Pristipomoides_filamentosus_2018.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides filamentosus\HI_IDW_Pristipomoides_filamentosus_2018.tif
-HI_IDW_Pristipomoides_filamentosus_2019.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides filamentosus\HI_IDW_Pristipomoides_filamentosus_2019.tif
-HI_IDW_Pristipomoides_filamentosus_2020.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides filamentosus\HI_IDW_Pristipomoides_filamentosus_2020.tif
-HI_IDW_Pristipomoides_filamentosus_2021.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides filamentosus\HI_IDW_Pristipomoides_filamentosus_2021.tif
-HI_IDW_Pristipomoides_filamentosus_2022.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides filamentosus\HI_IDW_Pristipomoides_filamentosus_2022.tif
-HI_IDW_Pristipomoides_filamentosus_2023.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides filamentosus\HI_IDW_Pristipomoides_filamentosus_2023.tif
-HI_IDW_Pristipomoides_sieboldii_2016.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides sieboldii\HI_IDW_Pristipomoides_sieboldii_2016.tif
-HI_IDW_Pristipomoides_sieboldii_2017.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides sieboldii\HI_IDW_Pristipomoides_sieboldii_2017.tif
-HI_IDW_Pristipomoides_sieboldii_2018.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides sieboldii\HI_IDW_Pristipomoides_sieboldii_2018.tif
-HI_IDW_Pristipomoides_sieboldii_2019.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides sieboldii\HI_IDW_Pristipomoides_sieboldii_2019.tif
-HI_IDW_Pristipomoides_sieboldii_2020.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides sieboldii\HI_IDW_Pristipomoides_sieboldii_2020.tif
-HI_IDW_Pristipomoides_sieboldii_2021.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides sieboldii\HI_IDW_Pristipomoides_sieboldii_2021.tif
-HI_IDW_Pristipomoides_sieboldii_2022.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides sieboldii\HI_IDW_Pristipomoides_sieboldii_2022.tif
-HI_IDW_Pristipomoides_sieboldii_2023.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides sieboldii\HI_IDW_Pristipomoides_sieboldii_2023.tif
-HI_IDW_Pristipomoides_zonatus_2016.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides zonatus\HI_IDW_Pristipomoides_zonatus_2016.tif
-HI_IDW_Pristipomoides_zonatus_2017.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides zonatus\HI_IDW_Pristipomoides_zonatus_2017.tif
-HI_IDW_Pristipomoides_zonatus_2018.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides zonatus\HI_IDW_Pristipomoides_zonatus_2018.tif
-HI_IDW_Pristipomoides_zonatus_2019.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides zonatus\HI_IDW_Pristipomoides_zonatus_2019.tif
-HI_IDW_Pristipomoides_zonatus_2020.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides zonatus\HI_IDW_Pristipomoides_zonatus_2020.tif
-HI_IDW_Pristipomoides_zonatus_2021.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides zonatus\HI_IDW_Pristipomoides_zonatus_2021.tif
-HI_IDW_Pristipomoides_zonatus_2022.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides zonatus\HI_IDW_Pristipomoides_zonatus_2022.tif
-HI_IDW_Pristipomoides_zonatus_2023.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\Pristipomoides zonatus\HI_IDW_Pristipomoides_zonatus_2023.tif
-HI_IDW_Core_Species_Richness_2016.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\_Core Species Richness\HI_IDW_Core_Species_Richness_2016.tif
-HI_IDW_Core_Species_Richness_2017.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\_Core Species Richness\HI_IDW_Core_Species_Richness_2017.tif
-HI_IDW_Core_Species_Richness_2018.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\_Core Species Richness\HI_IDW_Core_Species_Richness_2018.tif
-HI_IDW_Core_Species_Richness_2019.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\_Core Species Richness\HI_IDW_Core_Species_Richness_2019.tif
-HI_IDW_Core_Species_Richness_2020.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\_Core Species Richness\HI_IDW_Core_Species_Richness_2020.tif
-HI_IDW_Core_Species_Richness_2021.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\_Core Species Richness\HI_IDW_Core_Species_Richness_2021.tif
-HI_IDW_Core_Species_Richness_2022.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\_Core Species Richness\HI_IDW_Core_Species_Richness_2022.tif
-HI_IDW_Core_Species_Richness_2023.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\_Core Species Richness\HI_IDW_Core_Species_Richness_2023.tif
-HI_IDW_Species_Richness_2016.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\_Species Richness\HI_IDW_Species_Richness_2016.tif
-HI_IDW_Species_Richness_2017.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\_Species Richness\HI_IDW_Species_Richness_2017.tif
-HI_IDW_Species_Richness_2018.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\_Species Richness\HI_IDW_Species_Richness_2018.tif
-HI_IDW_Species_Richness_2019.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\_Species Richness\HI_IDW_Species_Richness_2019.tif
-HI_IDW_Species_Richness_2020.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\_Species Richness\HI_IDW_Species_Richness_2020.tif
-HI_IDW_Species_Richness_2021.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\_Species Richness\HI_IDW_Species_Richness_2021.tif
-HI_IDW_Species_Richness_2022.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\_Species Richness\HI_IDW_Species_Richness_2022.tif
-HI_IDW_Species_Richness_2023.tif,.tif,3.38 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\HI_IDW\_Species Richness\HI_IDW_Species_Richness_2023.tif
-NBS_IDW_Acantholumpenus_mackayi_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Acantholumpenus mackayi\NBS_IDW_Acantholumpenus_mackayi_2010.tif
-NBS_IDW_Acantholumpenus_mackayi_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Acantholumpenus mackayi\NBS_IDW_Acantholumpenus_mackayi_2017.tif
-NBS_IDW_Acantholumpenus_mackayi_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Acantholumpenus mackayi\NBS_IDW_Acantholumpenus_mackayi_2019.tif
-NBS_IDW_Acantholumpenus_mackayi_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Acantholumpenus mackayi\NBS_IDW_Acantholumpenus_mackayi_2021.tif
-NBS_IDW_Acantholumpenus_mackayi_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Acantholumpenus mackayi\NBS_IDW_Acantholumpenus_mackayi_2022.tif
-NBS_IDW_Acantholumpenus_mackayi_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Acantholumpenus mackayi\NBS_IDW_Acantholumpenus_mackayi_2023.tif
-NBS_IDW_Arctoraja_parmifera_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Arctoraja parmifera\NBS_IDW_Arctoraja_parmifera_2010.tif
-NBS_IDW_Arctoraja_parmifera_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Arctoraja parmifera\NBS_IDW_Arctoraja_parmifera_2017.tif
-NBS_IDW_Arctoraja_parmifera_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Arctoraja parmifera\NBS_IDW_Arctoraja_parmifera_2019.tif
-NBS_IDW_Arctoraja_parmifera_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Arctoraja parmifera\NBS_IDW_Arctoraja_parmifera_2021.tif
-NBS_IDW_Arctoraja_parmifera_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Arctoraja parmifera\NBS_IDW_Arctoraja_parmifera_2022.tif
-NBS_IDW_Arctoraja_parmifera_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Arctoraja parmifera\NBS_IDW_Arctoraja_parmifera_2023.tif
-NBS_IDW_Aspidophoroides_olrikii_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Aspidophoroides olrikii\NBS_IDW_Aspidophoroides_olrikii_2010.tif
-NBS_IDW_Aspidophoroides_olrikii_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Aspidophoroides olrikii\NBS_IDW_Aspidophoroides_olrikii_2017.tif
-NBS_IDW_Aspidophoroides_olrikii_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Aspidophoroides olrikii\NBS_IDW_Aspidophoroides_olrikii_2019.tif
-NBS_IDW_Aspidophoroides_olrikii_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Aspidophoroides olrikii\NBS_IDW_Aspidophoroides_olrikii_2021.tif
-NBS_IDW_Aspidophoroides_olrikii_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Aspidophoroides olrikii\NBS_IDW_Aspidophoroides_olrikii_2022.tif
-NBS_IDW_Aspidophoroides_olrikii_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Aspidophoroides olrikii\NBS_IDW_Aspidophoroides_olrikii_2023.tif
-NBS_IDW_Asterias_amurensis_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Asterias amurensis\NBS_IDW_Asterias_amurensis_2010.tif
-NBS_IDW_Asterias_amurensis_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Asterias amurensis\NBS_IDW_Asterias_amurensis_2017.tif
-NBS_IDW_Asterias_amurensis_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Asterias amurensis\NBS_IDW_Asterias_amurensis_2019.tif
-NBS_IDW_Asterias_amurensis_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Asterias amurensis\NBS_IDW_Asterias_amurensis_2021.tif
-NBS_IDW_Asterias_amurensis_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Asterias amurensis\NBS_IDW_Asterias_amurensis_2022.tif
-NBS_IDW_Asterias_amurensis_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:36:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Asterias amurensis\NBS_IDW_Asterias_amurensis_2023.tif
-NBS_IDW_Boreogadus_saida_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Boreogadus saida\NBS_IDW_Boreogadus_saida_2010.tif
-NBS_IDW_Boreogadus_saida_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Boreogadus saida\NBS_IDW_Boreogadus_saida_2017.tif
-NBS_IDW_Boreogadus_saida_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Boreogadus saida\NBS_IDW_Boreogadus_saida_2019.tif
-NBS_IDW_Boreogadus_saida_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Boreogadus saida\NBS_IDW_Boreogadus_saida_2021.tif
-NBS_IDW_Boreogadus_saida_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Boreogadus saida\NBS_IDW_Boreogadus_saida_2022.tif
-NBS_IDW_Boreogadus_saida_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Boreogadus saida\NBS_IDW_Boreogadus_saida_2023.tif
-NBS_IDW_Chionoecetes_opilio_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Chionoecetes opilio\NBS_IDW_Chionoecetes_opilio_2010.tif
-NBS_IDW_Chionoecetes_opilio_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Chionoecetes opilio\NBS_IDW_Chionoecetes_opilio_2017.tif
-NBS_IDW_Chionoecetes_opilio_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Chionoecetes opilio\NBS_IDW_Chionoecetes_opilio_2019.tif
-NBS_IDW_Chionoecetes_opilio_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Chionoecetes opilio\NBS_IDW_Chionoecetes_opilio_2021.tif
-NBS_IDW_Chionoecetes_opilio_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Chionoecetes opilio\NBS_IDW_Chionoecetes_opilio_2022.tif
-NBS_IDW_Chionoecetes_opilio_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Chionoecetes opilio\NBS_IDW_Chionoecetes_opilio_2023.tif
-NBS_IDW_Clupea_pallasii_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Clupea pallasii\NBS_IDW_Clupea_pallasii_2010.tif
-NBS_IDW_Clupea_pallasii_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Clupea pallasii\NBS_IDW_Clupea_pallasii_2017.tif
-NBS_IDW_Clupea_pallasii_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Clupea pallasii\NBS_IDW_Clupea_pallasii_2019.tif
-NBS_IDW_Clupea_pallasii_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Clupea pallasii\NBS_IDW_Clupea_pallasii_2021.tif
-NBS_IDW_Clupea_pallasii_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Clupea pallasii\NBS_IDW_Clupea_pallasii_2022.tif
-NBS_IDW_Clupea_pallasii_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Clupea pallasii\NBS_IDW_Clupea_pallasii_2023.tif
-NBS_IDW_Crossaster_papposus_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Crossaster papposus\NBS_IDW_Crossaster_papposus_2010.tif
-NBS_IDW_Crossaster_papposus_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Crossaster papposus\NBS_IDW_Crossaster_papposus_2017.tif
-NBS_IDW_Crossaster_papposus_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Crossaster papposus\NBS_IDW_Crossaster_papposus_2019.tif
-NBS_IDW_Crossaster_papposus_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Crossaster papposus\NBS_IDW_Crossaster_papposus_2021.tif
-NBS_IDW_Crossaster_papposus_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Crossaster papposus\NBS_IDW_Crossaster_papposus_2022.tif
-NBS_IDW_Crossaster_papposus_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Crossaster papposus\NBS_IDW_Crossaster_papposus_2023.tif
-NBS_IDW_Eleginus_gracilis_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Eleginus gracilis\NBS_IDW_Eleginus_gracilis_2010.tif
-NBS_IDW_Eleginus_gracilis_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Eleginus gracilis\NBS_IDW_Eleginus_gracilis_2017.tif
-NBS_IDW_Eleginus_gracilis_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Eleginus gracilis\NBS_IDW_Eleginus_gracilis_2019.tif
-NBS_IDW_Eleginus_gracilis_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Eleginus gracilis\NBS_IDW_Eleginus_gracilis_2021.tif
-NBS_IDW_Eleginus_gracilis_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Eleginus gracilis\NBS_IDW_Eleginus_gracilis_2022.tif
-NBS_IDW_Eleginus_gracilis_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Eleginus gracilis\NBS_IDW_Eleginus_gracilis_2023.tif
-NBS_IDW_Enophrys_diceraus_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Enophrys diceraus\NBS_IDW_Enophrys_diceraus_2010.tif
-NBS_IDW_Enophrys_diceraus_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Enophrys diceraus\NBS_IDW_Enophrys_diceraus_2017.tif
-NBS_IDW_Enophrys_diceraus_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Enophrys diceraus\NBS_IDW_Enophrys_diceraus_2019.tif
-NBS_IDW_Enophrys_diceraus_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Enophrys diceraus\NBS_IDW_Enophrys_diceraus_2021.tif
-NBS_IDW_Enophrys_diceraus_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Enophrys diceraus\NBS_IDW_Enophrys_diceraus_2022.tif
-NBS_IDW_Enophrys_diceraus_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Enophrys diceraus\NBS_IDW_Enophrys_diceraus_2023.tif
-NBS_IDW_Erimacrus_isenbeckii_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Erimacrus isenbeckii\NBS_IDW_Erimacrus_isenbeckii_2010.tif
-NBS_IDW_Erimacrus_isenbeckii_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Erimacrus isenbeckii\NBS_IDW_Erimacrus_isenbeckii_2017.tif
-NBS_IDW_Erimacrus_isenbeckii_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Erimacrus isenbeckii\NBS_IDW_Erimacrus_isenbeckii_2019.tif
-NBS_IDW_Erimacrus_isenbeckii_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Erimacrus isenbeckii\NBS_IDW_Erimacrus_isenbeckii_2021.tif
-NBS_IDW_Erimacrus_isenbeckii_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Erimacrus isenbeckii\NBS_IDW_Erimacrus_isenbeckii_2022.tif
-NBS_IDW_Erimacrus_isenbeckii_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Erimacrus isenbeckii\NBS_IDW_Erimacrus_isenbeckii_2023.tif
-NBS_IDW_Evasterias_echinosoma_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Evasterias echinosoma\NBS_IDW_Evasterias_echinosoma_2010.tif
-NBS_IDW_Evasterias_echinosoma_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Evasterias echinosoma\NBS_IDW_Evasterias_echinosoma_2017.tif
-NBS_IDW_Evasterias_echinosoma_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Evasterias echinosoma\NBS_IDW_Evasterias_echinosoma_2019.tif
-NBS_IDW_Evasterias_echinosoma_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Evasterias echinosoma\NBS_IDW_Evasterias_echinosoma_2021.tif
-NBS_IDW_Evasterias_echinosoma_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Evasterias echinosoma\NBS_IDW_Evasterias_echinosoma_2022.tif
-NBS_IDW_Evasterias_echinosoma_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Evasterias echinosoma\NBS_IDW_Evasterias_echinosoma_2023.tif
-NBS_IDW_Gadus_chalcogrammus_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gadus chalcogrammus\NBS_IDW_Gadus_chalcogrammus_2010.tif
-NBS_IDW_Gadus_chalcogrammus_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gadus chalcogrammus\NBS_IDW_Gadus_chalcogrammus_2017.tif
-NBS_IDW_Gadus_chalcogrammus_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gadus chalcogrammus\NBS_IDW_Gadus_chalcogrammus_2019.tif
-NBS_IDW_Gadus_chalcogrammus_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gadus chalcogrammus\NBS_IDW_Gadus_chalcogrammus_2021.tif
-NBS_IDW_Gadus_chalcogrammus_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gadus chalcogrammus\NBS_IDW_Gadus_chalcogrammus_2022.tif
-NBS_IDW_Gadus_chalcogrammus_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gadus chalcogrammus\NBS_IDW_Gadus_chalcogrammus_2023.tif
-NBS_IDW_Gadus_macrocephalus_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gadus macrocephalus\NBS_IDW_Gadus_macrocephalus_2010.tif
-NBS_IDW_Gadus_macrocephalus_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gadus macrocephalus\NBS_IDW_Gadus_macrocephalus_2017.tif
-NBS_IDW_Gadus_macrocephalus_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gadus macrocephalus\NBS_IDW_Gadus_macrocephalus_2019.tif
-NBS_IDW_Gadus_macrocephalus_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gadus macrocephalus\NBS_IDW_Gadus_macrocephalus_2021.tif
-NBS_IDW_Gadus_macrocephalus_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gadus macrocephalus\NBS_IDW_Gadus_macrocephalus_2022.tif
-NBS_IDW_Gadus_macrocephalus_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gadus macrocephalus\NBS_IDW_Gadus_macrocephalus_2023.tif
-NBS_IDW_Gorgonocephalus_eucnemis_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gorgonocephalus eucnemis\NBS_IDW_Gorgonocephalus_eucnemis_2010.tif
-NBS_IDW_Gorgonocephalus_eucnemis_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gorgonocephalus eucnemis\NBS_IDW_Gorgonocephalus_eucnemis_2017.tif
-NBS_IDW_Gorgonocephalus_eucnemis_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gorgonocephalus eucnemis\NBS_IDW_Gorgonocephalus_eucnemis_2019.tif
-NBS_IDW_Gorgonocephalus_eucnemis_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gorgonocephalus eucnemis\NBS_IDW_Gorgonocephalus_eucnemis_2021.tif
-NBS_IDW_Gorgonocephalus_eucnemis_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gorgonocephalus eucnemis\NBS_IDW_Gorgonocephalus_eucnemis_2022.tif
-NBS_IDW_Gorgonocephalus_eucnemis_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gorgonocephalus eucnemis\NBS_IDW_Gorgonocephalus_eucnemis_2023.tif
-NBS_IDW_Gymnocanthus_pistilliger_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gymnocanthus pistilliger\NBS_IDW_Gymnocanthus_pistilliger_2010.tif
-NBS_IDW_Gymnocanthus_pistilliger_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gymnocanthus pistilliger\NBS_IDW_Gymnocanthus_pistilliger_2017.tif
-NBS_IDW_Gymnocanthus_pistilliger_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gymnocanthus pistilliger\NBS_IDW_Gymnocanthus_pistilliger_2019.tif
-NBS_IDW_Gymnocanthus_pistilliger_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gymnocanthus pistilliger\NBS_IDW_Gymnocanthus_pistilliger_2021.tif
-NBS_IDW_Gymnocanthus_pistilliger_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gymnocanthus pistilliger\NBS_IDW_Gymnocanthus_pistilliger_2022.tif
-NBS_IDW_Gymnocanthus_pistilliger_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Gymnocanthus pistilliger\NBS_IDW_Gymnocanthus_pistilliger_2023.tif
-NBS_IDW_Hexagrammos_stelleri_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Hexagrammos stelleri\NBS_IDW_Hexagrammos_stelleri_2010.tif
-NBS_IDW_Hexagrammos_stelleri_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Hexagrammos stelleri\NBS_IDW_Hexagrammos_stelleri_2017.tif
-NBS_IDW_Hexagrammos_stelleri_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Hexagrammos stelleri\NBS_IDW_Hexagrammos_stelleri_2019.tif
-NBS_IDW_Hexagrammos_stelleri_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Hexagrammos stelleri\NBS_IDW_Hexagrammos_stelleri_2021.tif
-NBS_IDW_Hexagrammos_stelleri_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Hexagrammos stelleri\NBS_IDW_Hexagrammos_stelleri_2022.tif
-NBS_IDW_Hexagrammos_stelleri_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Hexagrammos stelleri\NBS_IDW_Hexagrammos_stelleri_2023.tif
-NBS_IDW_Hippoglossus_stenolepis_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Hippoglossus stenolepis\NBS_IDW_Hippoglossus_stenolepis_2010.tif
-NBS_IDW_Hippoglossus_stenolepis_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Hippoglossus stenolepis\NBS_IDW_Hippoglossus_stenolepis_2017.tif
-NBS_IDW_Hippoglossus_stenolepis_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Hippoglossus stenolepis\NBS_IDW_Hippoglossus_stenolepis_2019.tif
-NBS_IDW_Hippoglossus_stenolepis_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Hippoglossus stenolepis\NBS_IDW_Hippoglossus_stenolepis_2021.tif
-NBS_IDW_Hippoglossus_stenolepis_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Hippoglossus stenolepis\NBS_IDW_Hippoglossus_stenolepis_2022.tif
-NBS_IDW_Hippoglossus_stenolepis_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Hippoglossus stenolepis\NBS_IDW_Hippoglossus_stenolepis_2023.tif
-NBS_IDW_Hyas_coarctatus_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Hyas coarctatus\NBS_IDW_Hyas_coarctatus_2010.tif
-NBS_IDW_Hyas_coarctatus_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Hyas coarctatus\NBS_IDW_Hyas_coarctatus_2017.tif
-NBS_IDW_Hyas_coarctatus_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Hyas coarctatus\NBS_IDW_Hyas_coarctatus_2019.tif
-NBS_IDW_Hyas_coarctatus_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Hyas coarctatus\NBS_IDW_Hyas_coarctatus_2021.tif
-NBS_IDW_Hyas_coarctatus_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Hyas coarctatus\NBS_IDW_Hyas_coarctatus_2022.tif
-NBS_IDW_Hyas_coarctatus_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Hyas coarctatus\NBS_IDW_Hyas_coarctatus_2023.tif
-NBS_IDW_Labidochirus_splendescens_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Labidochirus splendescens\NBS_IDW_Labidochirus_splendescens_2010.tif
-NBS_IDW_Labidochirus_splendescens_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Labidochirus splendescens\NBS_IDW_Labidochirus_splendescens_2017.tif
-NBS_IDW_Labidochirus_splendescens_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Labidochirus splendescens\NBS_IDW_Labidochirus_splendescens_2019.tif
-NBS_IDW_Labidochirus_splendescens_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Labidochirus splendescens\NBS_IDW_Labidochirus_splendescens_2021.tif
-NBS_IDW_Labidochirus_splendescens_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Labidochirus splendescens\NBS_IDW_Labidochirus_splendescens_2022.tif
-NBS_IDW_Labidochirus_splendescens_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Labidochirus splendescens\NBS_IDW_Labidochirus_splendescens_2023.tif
-NBS_IDW_Lepidopsetta_sp_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lepidopsetta sp\NBS_IDW_Lepidopsetta_sp_2010.tif
-NBS_IDW_Lepidopsetta_sp_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lepidopsetta sp\NBS_IDW_Lepidopsetta_sp_2017.tif
-NBS_IDW_Lepidopsetta_sp_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lepidopsetta sp\NBS_IDW_Lepidopsetta_sp_2019.tif
-NBS_IDW_Lepidopsetta_sp_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lepidopsetta sp\NBS_IDW_Lepidopsetta_sp_2021.tif
-NBS_IDW_Lepidopsetta_sp_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lepidopsetta sp\NBS_IDW_Lepidopsetta_sp_2022.tif
-NBS_IDW_Lepidopsetta_sp_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lepidopsetta sp\NBS_IDW_Lepidopsetta_sp_2023.tif
-NBS_IDW_Leptasterias_arctica_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Leptasterias arctica\NBS_IDW_Leptasterias_arctica_2010.tif
-NBS_IDW_Leptasterias_arctica_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Leptasterias arctica\NBS_IDW_Leptasterias_arctica_2017.tif
-NBS_IDW_Leptasterias_arctica_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Leptasterias arctica\NBS_IDW_Leptasterias_arctica_2019.tif
-NBS_IDW_Leptasterias_arctica_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Leptasterias arctica\NBS_IDW_Leptasterias_arctica_2021.tif
-NBS_IDW_Leptasterias_arctica_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Leptasterias arctica\NBS_IDW_Leptasterias_arctica_2022.tif
-NBS_IDW_Leptasterias_arctica_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Leptasterias arctica\NBS_IDW_Leptasterias_arctica_2023.tif
-NBS_IDW_Lethasterias_nanimensis_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lethasterias nanimensis\NBS_IDW_Lethasterias_nanimensis_2010.tif
-NBS_IDW_Lethasterias_nanimensis_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lethasterias nanimensis\NBS_IDW_Lethasterias_nanimensis_2017.tif
-NBS_IDW_Lethasterias_nanimensis_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lethasterias nanimensis\NBS_IDW_Lethasterias_nanimensis_2019.tif
-NBS_IDW_Lethasterias_nanimensis_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lethasterias nanimensis\NBS_IDW_Lethasterias_nanimensis_2021.tif
-NBS_IDW_Lethasterias_nanimensis_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lethasterias nanimensis\NBS_IDW_Lethasterias_nanimensis_2022.tif
-NBS_IDW_Lethasterias_nanimensis_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lethasterias nanimensis\NBS_IDW_Lethasterias_nanimensis_2023.tif
-NBS_IDW_Limanda_aspera_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Limanda aspera\NBS_IDW_Limanda_aspera_2010.tif
-NBS_IDW_Limanda_aspera_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Limanda aspera\NBS_IDW_Limanda_aspera_2017.tif
-NBS_IDW_Limanda_aspera_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Limanda aspera\NBS_IDW_Limanda_aspera_2019.tif
-NBS_IDW_Limanda_aspera_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Limanda aspera\NBS_IDW_Limanda_aspera_2021.tif
-NBS_IDW_Limanda_aspera_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Limanda aspera\NBS_IDW_Limanda_aspera_2022.tif
-NBS_IDW_Limanda_aspera_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Limanda aspera\NBS_IDW_Limanda_aspera_2023.tif
-NBS_IDW_Limanda_sakhalinensis_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Limanda sakhalinensis\NBS_IDW_Limanda_sakhalinensis_2010.tif
-NBS_IDW_Limanda_sakhalinensis_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Limanda sakhalinensis\NBS_IDW_Limanda_sakhalinensis_2017.tif
-NBS_IDW_Limanda_sakhalinensis_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Limanda sakhalinensis\NBS_IDW_Limanda_sakhalinensis_2019.tif
-NBS_IDW_Limanda_sakhalinensis_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Limanda sakhalinensis\NBS_IDW_Limanda_sakhalinensis_2021.tif
-NBS_IDW_Limanda_sakhalinensis_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Limanda sakhalinensis\NBS_IDW_Limanda_sakhalinensis_2022.tif
-NBS_IDW_Limanda_sakhalinensis_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Limanda sakhalinensis\NBS_IDW_Limanda_sakhalinensis_2023.tif
-NBS_IDW_Lumpenus_fabricii_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lumpenus fabricii\NBS_IDW_Lumpenus_fabricii_2010.tif
-NBS_IDW_Lumpenus_fabricii_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lumpenus fabricii\NBS_IDW_Lumpenus_fabricii_2017.tif
-NBS_IDW_Lumpenus_fabricii_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lumpenus fabricii\NBS_IDW_Lumpenus_fabricii_2019.tif
-NBS_IDW_Lumpenus_fabricii_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lumpenus fabricii\NBS_IDW_Lumpenus_fabricii_2021.tif
-NBS_IDW_Lumpenus_fabricii_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lumpenus fabricii\NBS_IDW_Lumpenus_fabricii_2022.tif
-NBS_IDW_Lumpenus_fabricii_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lumpenus fabricii\NBS_IDW_Lumpenus_fabricii_2023.tif
-NBS_IDW_Lycodes_palearis_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lycodes palearis\NBS_IDW_Lycodes_palearis_2010.tif
-NBS_IDW_Lycodes_palearis_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lycodes palearis\NBS_IDW_Lycodes_palearis_2017.tif
-NBS_IDW_Lycodes_palearis_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lycodes palearis\NBS_IDW_Lycodes_palearis_2019.tif
-NBS_IDW_Lycodes_palearis_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lycodes palearis\NBS_IDW_Lycodes_palearis_2021.tif
-NBS_IDW_Lycodes_palearis_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lycodes palearis\NBS_IDW_Lycodes_palearis_2022.tif
-NBS_IDW_Lycodes_palearis_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lycodes palearis\NBS_IDW_Lycodes_palearis_2023.tif
-NBS_IDW_Lycodes_turneri_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lycodes turneri\NBS_IDW_Lycodes_turneri_2010.tif
-NBS_IDW_Lycodes_turneri_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lycodes turneri\NBS_IDW_Lycodes_turneri_2017.tif
-NBS_IDW_Lycodes_turneri_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lycodes turneri\NBS_IDW_Lycodes_turneri_2019.tif
-NBS_IDW_Lycodes_turneri_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lycodes turneri\NBS_IDW_Lycodes_turneri_2021.tif
-NBS_IDW_Lycodes_turneri_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lycodes turneri\NBS_IDW_Lycodes_turneri_2022.tif
-NBS_IDW_Lycodes_turneri_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Lycodes turneri\NBS_IDW_Lycodes_turneri_2023.tif
-NBS_IDW_Mallotus_villosus_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Mallotus villosus\NBS_IDW_Mallotus_villosus_2010.tif
-NBS_IDW_Mallotus_villosus_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Mallotus villosus\NBS_IDW_Mallotus_villosus_2017.tif
-NBS_IDW_Mallotus_villosus_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Mallotus villosus\NBS_IDW_Mallotus_villosus_2019.tif
-NBS_IDW_Mallotus_villosus_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Mallotus villosus\NBS_IDW_Mallotus_villosus_2021.tif
-NBS_IDW_Mallotus_villosus_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Mallotus villosus\NBS_IDW_Mallotus_villosus_2022.tif
-NBS_IDW_Mallotus_villosus_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Mallotus villosus\NBS_IDW_Mallotus_villosus_2023.tif
-NBS_IDW_Myoxocephalus_jaok_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myoxocephalus jaok\NBS_IDW_Myoxocephalus_jaok_2010.tif
-NBS_IDW_Myoxocephalus_jaok_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myoxocephalus jaok\NBS_IDW_Myoxocephalus_jaok_2017.tif
-NBS_IDW_Myoxocephalus_jaok_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myoxocephalus jaok\NBS_IDW_Myoxocephalus_jaok_2019.tif
-NBS_IDW_Myoxocephalus_jaok_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myoxocephalus jaok\NBS_IDW_Myoxocephalus_jaok_2021.tif
-NBS_IDW_Myoxocephalus_jaok_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myoxocephalus jaok\NBS_IDW_Myoxocephalus_jaok_2022.tif
-NBS_IDW_Myoxocephalus_jaok_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myoxocephalus jaok\NBS_IDW_Myoxocephalus_jaok_2023.tif
-NBS_IDW_Myoxocephalus_polyacanthocephalus_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myoxocephalus polyacanthocephalus\NBS_IDW_Myoxocephalus_polyacanthocephalus_2010.tif
-NBS_IDW_Myoxocephalus_polyacanthocephalus_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myoxocephalus polyacanthocephalus\NBS_IDW_Myoxocephalus_polyacanthocephalus_2017.tif
-NBS_IDW_Myoxocephalus_polyacanthocephalus_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myoxocephalus polyacanthocephalus\NBS_IDW_Myoxocephalus_polyacanthocephalus_2019.tif
-NBS_IDW_Myoxocephalus_polyacanthocephalus_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myoxocephalus polyacanthocephalus\NBS_IDW_Myoxocephalus_polyacanthocephalus_2021.tif
-NBS_IDW_Myoxocephalus_polyacanthocephalus_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myoxocephalus polyacanthocephalus\NBS_IDW_Myoxocephalus_polyacanthocephalus_2022.tif
-NBS_IDW_Myoxocephalus_polyacanthocephalus_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myoxocephalus polyacanthocephalus\NBS_IDW_Myoxocephalus_polyacanthocephalus_2023.tif
-NBS_IDW_Myoxocephalus_scorpius_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myoxocephalus scorpius\NBS_IDW_Myoxocephalus_scorpius_2010.tif
-NBS_IDW_Myoxocephalus_scorpius_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myoxocephalus scorpius\NBS_IDW_Myoxocephalus_scorpius_2017.tif
-NBS_IDW_Myoxocephalus_scorpius_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myoxocephalus scorpius\NBS_IDW_Myoxocephalus_scorpius_2019.tif
-NBS_IDW_Myoxocephalus_scorpius_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myoxocephalus scorpius\NBS_IDW_Myoxocephalus_scorpius_2021.tif
-NBS_IDW_Myoxocephalus_scorpius_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myoxocephalus scorpius\NBS_IDW_Myoxocephalus_scorpius_2022.tif
-NBS_IDW_Myoxocephalus_scorpius_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myoxocephalus scorpius\NBS_IDW_Myoxocephalus_scorpius_2023.tif
-NBS_IDW_Myzopsetta_proboscidea_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myzopsetta proboscidea\NBS_IDW_Myzopsetta_proboscidea_2010.tif
-NBS_IDW_Myzopsetta_proboscidea_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myzopsetta proboscidea\NBS_IDW_Myzopsetta_proboscidea_2017.tif
-NBS_IDW_Myzopsetta_proboscidea_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myzopsetta proboscidea\NBS_IDW_Myzopsetta_proboscidea_2019.tif
-NBS_IDW_Myzopsetta_proboscidea_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myzopsetta proboscidea\NBS_IDW_Myzopsetta_proboscidea_2021.tif
-NBS_IDW_Myzopsetta_proboscidea_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myzopsetta proboscidea\NBS_IDW_Myzopsetta_proboscidea_2022.tif
-NBS_IDW_Myzopsetta_proboscidea_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Myzopsetta proboscidea\NBS_IDW_Myzopsetta_proboscidea_2023.tif
-NBS_IDW_Occella_dodecaedron_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Occella dodecaedron\NBS_IDW_Occella_dodecaedron_2010.tif
-NBS_IDW_Occella_dodecaedron_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Occella dodecaedron\NBS_IDW_Occella_dodecaedron_2017.tif
-NBS_IDW_Occella_dodecaedron_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Occella dodecaedron\NBS_IDW_Occella_dodecaedron_2019.tif
-NBS_IDW_Occella_dodecaedron_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Occella dodecaedron\NBS_IDW_Occella_dodecaedron_2021.tif
-NBS_IDW_Occella_dodecaedron_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Occella dodecaedron\NBS_IDW_Occella_dodecaedron_2022.tif
-NBS_IDW_Occella_dodecaedron_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Occella dodecaedron\NBS_IDW_Occella_dodecaedron_2023.tif
-NBS_IDW_Osmerus_mordax_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Osmerus mordax\NBS_IDW_Osmerus_mordax_2010.tif
-NBS_IDW_Osmerus_mordax_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Osmerus mordax\NBS_IDW_Osmerus_mordax_2017.tif
-NBS_IDW_Osmerus_mordax_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Osmerus mordax\NBS_IDW_Osmerus_mordax_2019.tif
-NBS_IDW_Osmerus_mordax_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Osmerus mordax\NBS_IDW_Osmerus_mordax_2021.tif
-NBS_IDW_Osmerus_mordax_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Osmerus mordax\NBS_IDW_Osmerus_mordax_2022.tif
-NBS_IDW_Osmerus_mordax_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Osmerus mordax\NBS_IDW_Osmerus_mordax_2023.tif
-NBS_IDW_Pagurus_capillatus_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus capillatus\NBS_IDW_Pagurus_capillatus_2010.tif
-NBS_IDW_Pagurus_capillatus_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus capillatus\NBS_IDW_Pagurus_capillatus_2017.tif
-NBS_IDW_Pagurus_capillatus_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus capillatus\NBS_IDW_Pagurus_capillatus_2019.tif
-NBS_IDW_Pagurus_capillatus_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus capillatus\NBS_IDW_Pagurus_capillatus_2021.tif
-NBS_IDW_Pagurus_capillatus_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus capillatus\NBS_IDW_Pagurus_capillatus_2022.tif
-NBS_IDW_Pagurus_capillatus_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus capillatus\NBS_IDW_Pagurus_capillatus_2023.tif
-NBS_IDW_Pagurus_ochotensis_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus ochotensis\NBS_IDW_Pagurus_ochotensis_2010.tif
-NBS_IDW_Pagurus_ochotensis_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus ochotensis\NBS_IDW_Pagurus_ochotensis_2017.tif
-NBS_IDW_Pagurus_ochotensis_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus ochotensis\NBS_IDW_Pagurus_ochotensis_2019.tif
-NBS_IDW_Pagurus_ochotensis_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus ochotensis\NBS_IDW_Pagurus_ochotensis_2021.tif
-NBS_IDW_Pagurus_ochotensis_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus ochotensis\NBS_IDW_Pagurus_ochotensis_2022.tif
-NBS_IDW_Pagurus_ochotensis_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus ochotensis\NBS_IDW_Pagurus_ochotensis_2023.tif
-NBS_IDW_Pagurus_rathbuni_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus rathbuni\NBS_IDW_Pagurus_rathbuni_2010.tif
-NBS_IDW_Pagurus_rathbuni_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus rathbuni\NBS_IDW_Pagurus_rathbuni_2017.tif
-NBS_IDW_Pagurus_rathbuni_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus rathbuni\NBS_IDW_Pagurus_rathbuni_2019.tif
-NBS_IDW_Pagurus_rathbuni_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus rathbuni\NBS_IDW_Pagurus_rathbuni_2021.tif
-NBS_IDW_Pagurus_rathbuni_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus rathbuni\NBS_IDW_Pagurus_rathbuni_2022.tif
-NBS_IDW_Pagurus_rathbuni_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus rathbuni\NBS_IDW_Pagurus_rathbuni_2023.tif
-NBS_IDW_Pagurus_trigonocheirus_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus trigonocheirus\NBS_IDW_Pagurus_trigonocheirus_2010.tif
-NBS_IDW_Pagurus_trigonocheirus_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus trigonocheirus\NBS_IDW_Pagurus_trigonocheirus_2017.tif
-NBS_IDW_Pagurus_trigonocheirus_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus trigonocheirus\NBS_IDW_Pagurus_trigonocheirus_2019.tif
-NBS_IDW_Pagurus_trigonocheirus_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus trigonocheirus\NBS_IDW_Pagurus_trigonocheirus_2021.tif
-NBS_IDW_Pagurus_trigonocheirus_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus trigonocheirus\NBS_IDW_Pagurus_trigonocheirus_2022.tif
-NBS_IDW_Pagurus_trigonocheirus_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pagurus trigonocheirus\NBS_IDW_Pagurus_trigonocheirus_2023.tif
-NBS_IDW_Pallasina_barbata_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pallasina barbata\NBS_IDW_Pallasina_barbata_2010.tif
-NBS_IDW_Pallasina_barbata_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pallasina barbata\NBS_IDW_Pallasina_barbata_2017.tif
-NBS_IDW_Pallasina_barbata_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pallasina barbata\NBS_IDW_Pallasina_barbata_2019.tif
-NBS_IDW_Pallasina_barbata_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pallasina barbata\NBS_IDW_Pallasina_barbata_2021.tif
-NBS_IDW_Pallasina_barbata_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pallasina barbata\NBS_IDW_Pallasina_barbata_2022.tif
-NBS_IDW_Pallasina_barbata_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pallasina barbata\NBS_IDW_Pallasina_barbata_2023.tif
-NBS_IDW_Paralithodes_camtschaticus_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Paralithodes camtschaticus\NBS_IDW_Paralithodes_camtschaticus_2010.tif
-NBS_IDW_Paralithodes_camtschaticus_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Paralithodes camtschaticus\NBS_IDW_Paralithodes_camtschaticus_2017.tif
-NBS_IDW_Paralithodes_camtschaticus_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Paralithodes camtschaticus\NBS_IDW_Paralithodes_camtschaticus_2019.tif
-NBS_IDW_Paralithodes_camtschaticus_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Paralithodes camtschaticus\NBS_IDW_Paralithodes_camtschaticus_2021.tif
-NBS_IDW_Paralithodes_camtschaticus_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Paralithodes camtschaticus\NBS_IDW_Paralithodes_camtschaticus_2022.tif
-NBS_IDW_Paralithodes_camtschaticus_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Paralithodes camtschaticus\NBS_IDW_Paralithodes_camtschaticus_2023.tif
-NBS_IDW_Paralithodes_platypus_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Paralithodes platypus\NBS_IDW_Paralithodes_platypus_2010.tif
-NBS_IDW_Paralithodes_platypus_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Paralithodes platypus\NBS_IDW_Paralithodes_platypus_2017.tif
-NBS_IDW_Paralithodes_platypus_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Paralithodes platypus\NBS_IDW_Paralithodes_platypus_2019.tif
-NBS_IDW_Paralithodes_platypus_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Paralithodes platypus\NBS_IDW_Paralithodes_platypus_2021.tif
-NBS_IDW_Paralithodes_platypus_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Paralithodes platypus\NBS_IDW_Paralithodes_platypus_2022.tif
-NBS_IDW_Paralithodes_platypus_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Paralithodes platypus\NBS_IDW_Paralithodes_platypus_2023.tif
-NBS_IDW_Platichthys_stellatus_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Platichthys stellatus\NBS_IDW_Platichthys_stellatus_2010.tif
-NBS_IDW_Platichthys_stellatus_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:37:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Platichthys stellatus\NBS_IDW_Platichthys_stellatus_2017.tif
-NBS_IDW_Platichthys_stellatus_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Platichthys stellatus\NBS_IDW_Platichthys_stellatus_2019.tif
-NBS_IDW_Platichthys_stellatus_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Platichthys stellatus\NBS_IDW_Platichthys_stellatus_2021.tif
-NBS_IDW_Platichthys_stellatus_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Platichthys stellatus\NBS_IDW_Platichthys_stellatus_2022.tif
-NBS_IDW_Platichthys_stellatus_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Platichthys stellatus\NBS_IDW_Platichthys_stellatus_2023.tif
-NBS_IDW_Pleuronectes_quadrituberculatus_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pleuronectes quadrituberculatus\NBS_IDW_Pleuronectes_quadrituberculatus_2010.tif
-NBS_IDW_Pleuronectes_quadrituberculatus_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pleuronectes quadrituberculatus\NBS_IDW_Pleuronectes_quadrituberculatus_2017.tif
-NBS_IDW_Pleuronectes_quadrituberculatus_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pleuronectes quadrituberculatus\NBS_IDW_Pleuronectes_quadrituberculatus_2019.tif
-NBS_IDW_Pleuronectes_quadrituberculatus_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pleuronectes quadrituberculatus\NBS_IDW_Pleuronectes_quadrituberculatus_2021.tif
-NBS_IDW_Pleuronectes_quadrituberculatus_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pleuronectes quadrituberculatus\NBS_IDW_Pleuronectes_quadrituberculatus_2022.tif
-NBS_IDW_Pleuronectes_quadrituberculatus_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Pleuronectes quadrituberculatus\NBS_IDW_Pleuronectes_quadrituberculatus_2023.tif
-NBS_IDW_Podothecus_accipenserinus_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Podothecus accipenserinus\NBS_IDW_Podothecus_accipenserinus_2010.tif
-NBS_IDW_Podothecus_accipenserinus_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Podothecus accipenserinus\NBS_IDW_Podothecus_accipenserinus_2017.tif
-NBS_IDW_Podothecus_accipenserinus_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Podothecus accipenserinus\NBS_IDW_Podothecus_accipenserinus_2019.tif
-NBS_IDW_Podothecus_accipenserinus_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Podothecus accipenserinus\NBS_IDW_Podothecus_accipenserinus_2021.tif
-NBS_IDW_Podothecus_accipenserinus_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Podothecus accipenserinus\NBS_IDW_Podothecus_accipenserinus_2022.tif
-NBS_IDW_Podothecus_accipenserinus_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Podothecus accipenserinus\NBS_IDW_Podothecus_accipenserinus_2023.tif
-NBS_IDW_Podothecus_veternus_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Podothecus veternus\NBS_IDW_Podothecus_veternus_2010.tif
-NBS_IDW_Podothecus_veternus_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Podothecus veternus\NBS_IDW_Podothecus_veternus_2017.tif
-NBS_IDW_Podothecus_veternus_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Podothecus veternus\NBS_IDW_Podothecus_veternus_2019.tif
-NBS_IDW_Podothecus_veternus_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Podothecus veternus\NBS_IDW_Podothecus_veternus_2021.tif
-NBS_IDW_Podothecus_veternus_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Podothecus veternus\NBS_IDW_Podothecus_veternus_2022.tif
-NBS_IDW_Podothecus_veternus_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Podothecus veternus\NBS_IDW_Podothecus_veternus_2023.tif
-NBS_IDW_Telmessus_cheiragonus_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Telmessus cheiragonus\NBS_IDW_Telmessus_cheiragonus_2010.tif
-NBS_IDW_Telmessus_cheiragonus_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Telmessus cheiragonus\NBS_IDW_Telmessus_cheiragonus_2017.tif
-NBS_IDW_Telmessus_cheiragonus_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Telmessus cheiragonus\NBS_IDW_Telmessus_cheiragonus_2019.tif
-NBS_IDW_Telmessus_cheiragonus_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Telmessus cheiragonus\NBS_IDW_Telmessus_cheiragonus_2021.tif
-NBS_IDW_Telmessus_cheiragonus_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Telmessus cheiragonus\NBS_IDW_Telmessus_cheiragonus_2022.tif
-NBS_IDW_Telmessus_cheiragonus_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Telmessus cheiragonus\NBS_IDW_Telmessus_cheiragonus_2023.tif
-NBS_IDW_Triglops_pingelii_2010.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Triglops pingelii\NBS_IDW_Triglops_pingelii_2010.tif
-NBS_IDW_Triglops_pingelii_2017.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Triglops pingelii\NBS_IDW_Triglops_pingelii_2017.tif
-NBS_IDW_Triglops_pingelii_2019.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Triglops pingelii\NBS_IDW_Triglops_pingelii_2019.tif
-NBS_IDW_Triglops_pingelii_2021.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Triglops pingelii\NBS_IDW_Triglops_pingelii_2021.tif
-NBS_IDW_Triglops_pingelii_2022.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Triglops pingelii\NBS_IDW_Triglops_pingelii_2022.tif
-NBS_IDW_Triglops_pingelii_2023.tif,.tif,772.64 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\Triglops pingelii\NBS_IDW_Triglops_pingelii_2023.tif
-NBS_IDW_Core_Species_Richness_2010.tif,.tif,772.61 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\_Core Species Richness\NBS_IDW_Core_Species_Richness_2010.tif
-NBS_IDW_Core_Species_Richness_2017.tif,.tif,772.61 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\_Core Species Richness\NBS_IDW_Core_Species_Richness_2017.tif
-NBS_IDW_Core_Species_Richness_2019.tif,.tif,772.61 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\_Core Species Richness\NBS_IDW_Core_Species_Richness_2019.tif
-NBS_IDW_Core_Species_Richness_2021.tif,.tif,772.61 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\_Core Species Richness\NBS_IDW_Core_Species_Richness_2021.tif
-NBS_IDW_Core_Species_Richness_2022.tif,.tif,772.61 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\_Core Species Richness\NBS_IDW_Core_Species_Richness_2022.tif
-NBS_IDW_Core_Species_Richness_2023.tif,.tif,772.61 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\_Core Species Richness\NBS_IDW_Core_Species_Richness_2023.tif
-NBS_IDW_Species_Richness_2010.tif,.tif,772.61 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\_Species Richness\NBS_IDW_Species_Richness_2010.tif
-NBS_IDW_Species_Richness_2017.tif,.tif,772.61 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\_Species Richness\NBS_IDW_Species_Richness_2017.tif
-NBS_IDW_Species_Richness_2019.tif,.tif,772.61 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\_Species Richness\NBS_IDW_Species_Richness_2019.tif
-NBS_IDW_Species_Richness_2021.tif,.tif,772.61 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\_Species Richness\NBS_IDW_Species_Richness_2021.tif
-NBS_IDW_Species_Richness_2022.tif,.tif,772.61 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\_Species Richness\NBS_IDW_Species_Richness_2022.tif
-NBS_IDW_Species_Richness_2023.tif,.tif,772.61 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NBS_IDW\_Species Richness\NBS_IDW_Species_Richness_2023.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1974.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1975.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1976.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1977.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1978.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1979.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1980.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1981.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1982.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1983.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1984.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1985.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1986.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1987.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1988.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1989.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1990.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1991.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1992.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1993.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1994.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1995.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1996.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1997.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1998.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_1999.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2000.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2001.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2002.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2003.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2004.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2005.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2006.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2007.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2008.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2009.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2010.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2011.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2012.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2013.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2014.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2015.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2016.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2018.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2019.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2021.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2022.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2023.tif
-NEUS_FAL_IDW_Alosa_pseudoharengus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Alosa pseudoharengus\NEUS_FAL_IDW_Alosa_pseudoharengus_2024.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1974.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1975.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1976.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1977.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1978.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1979.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1980.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1981.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1982.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1983.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1984.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1985.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1986.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1987.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1988.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1989.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1990.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1991.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1992.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1993.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1994.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1995.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1996.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1997.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1998.tif
-NEUS_FAL_IDW_Amblyraja_radiata_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_1999.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2000.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2001.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2002.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2003.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2004.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2005.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2006.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2007.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2008.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2009.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2010.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2011.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2012.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2013.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2014.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2015.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2016.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2018.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2019.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2021.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2022.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2023.tif
-NEUS_FAL_IDW_Amblyraja_radiata_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Amblyraja radiata\NEUS_FAL_IDW_Amblyraja_radiata_2024.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1974.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1975.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1976.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1977.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1978.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1979.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1980.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1981.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1982.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1983.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1984.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1985.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1986.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1987.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1988.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1989.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1990.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1991.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1992.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1993.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1994.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1995.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1996.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1997.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1998.tif
-NEUS_FAL_IDW_Anarhichas_lupus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_1999.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2000.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2001.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2002.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2003.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2004.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2005.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2006.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2007.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2008.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2009.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2010.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2011.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2012.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2013.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2014.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2015.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2016.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2018.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2019.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2021.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2022.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2023.tif
-NEUS_FAL_IDW_Anarhichas_lupus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Anarhichas lupus\NEUS_FAL_IDW_Anarhichas_lupus_2024.tif
-NEUS_FAL_IDW_Cancer_borealis_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1974.tif
-NEUS_FAL_IDW_Cancer_borealis_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1975.tif
-NEUS_FAL_IDW_Cancer_borealis_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1976.tif
-NEUS_FAL_IDW_Cancer_borealis_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1977.tif
-NEUS_FAL_IDW_Cancer_borealis_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1978.tif
-NEUS_FAL_IDW_Cancer_borealis_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1979.tif
-NEUS_FAL_IDW_Cancer_borealis_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1980.tif
-NEUS_FAL_IDW_Cancer_borealis_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1981.tif
-NEUS_FAL_IDW_Cancer_borealis_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1982.tif
-NEUS_FAL_IDW_Cancer_borealis_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1983.tif
-NEUS_FAL_IDW_Cancer_borealis_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1984.tif
-NEUS_FAL_IDW_Cancer_borealis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1985.tif
-NEUS_FAL_IDW_Cancer_borealis_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1986.tif
-NEUS_FAL_IDW_Cancer_borealis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1987.tif
-NEUS_FAL_IDW_Cancer_borealis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1988.tif
-NEUS_FAL_IDW_Cancer_borealis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1989.tif
-NEUS_FAL_IDW_Cancer_borealis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1990.tif
-NEUS_FAL_IDW_Cancer_borealis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1991.tif
-NEUS_FAL_IDW_Cancer_borealis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1992.tif
-NEUS_FAL_IDW_Cancer_borealis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1993.tif
-NEUS_FAL_IDW_Cancer_borealis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1994.tif
-NEUS_FAL_IDW_Cancer_borealis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1995.tif
-NEUS_FAL_IDW_Cancer_borealis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:38:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1996.tif
-NEUS_FAL_IDW_Cancer_borealis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1997.tif
-NEUS_FAL_IDW_Cancer_borealis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1998.tif
-NEUS_FAL_IDW_Cancer_borealis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_1999.tif
-NEUS_FAL_IDW_Cancer_borealis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2000.tif
-NEUS_FAL_IDW_Cancer_borealis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2001.tif
-NEUS_FAL_IDW_Cancer_borealis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2002.tif
-NEUS_FAL_IDW_Cancer_borealis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2003.tif
-NEUS_FAL_IDW_Cancer_borealis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2004.tif
-NEUS_FAL_IDW_Cancer_borealis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2005.tif
-NEUS_FAL_IDW_Cancer_borealis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2006.tif
-NEUS_FAL_IDW_Cancer_borealis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2007.tif
-NEUS_FAL_IDW_Cancer_borealis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2008.tif
-NEUS_FAL_IDW_Cancer_borealis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2009.tif
-NEUS_FAL_IDW_Cancer_borealis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2010.tif
-NEUS_FAL_IDW_Cancer_borealis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2011.tif
-NEUS_FAL_IDW_Cancer_borealis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2012.tif
-NEUS_FAL_IDW_Cancer_borealis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2013.tif
-NEUS_FAL_IDW_Cancer_borealis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2014.tif
-NEUS_FAL_IDW_Cancer_borealis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2015.tif
-NEUS_FAL_IDW_Cancer_borealis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2016.tif
-NEUS_FAL_IDW_Cancer_borealis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2018.tif
-NEUS_FAL_IDW_Cancer_borealis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2019.tif
-NEUS_FAL_IDW_Cancer_borealis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2021.tif
-NEUS_FAL_IDW_Cancer_borealis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2022.tif
-NEUS_FAL_IDW_Cancer_borealis_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2023.tif
-NEUS_FAL_IDW_Cancer_borealis_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer borealis\NEUS_FAL_IDW_Cancer_borealis_2024.tif
-NEUS_FAL_IDW_Cancer_irroratus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1974.tif
-NEUS_FAL_IDW_Cancer_irroratus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1975.tif
-NEUS_FAL_IDW_Cancer_irroratus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1976.tif
-NEUS_FAL_IDW_Cancer_irroratus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1977.tif
-NEUS_FAL_IDW_Cancer_irroratus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1978.tif
-NEUS_FAL_IDW_Cancer_irroratus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1979.tif
-NEUS_FAL_IDW_Cancer_irroratus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1980.tif
-NEUS_FAL_IDW_Cancer_irroratus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1981.tif
-NEUS_FAL_IDW_Cancer_irroratus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1982.tif
-NEUS_FAL_IDW_Cancer_irroratus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1983.tif
-NEUS_FAL_IDW_Cancer_irroratus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1984.tif
-NEUS_FAL_IDW_Cancer_irroratus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1985.tif
-NEUS_FAL_IDW_Cancer_irroratus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1986.tif
-NEUS_FAL_IDW_Cancer_irroratus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1987.tif
-NEUS_FAL_IDW_Cancer_irroratus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1988.tif
-NEUS_FAL_IDW_Cancer_irroratus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1989.tif
-NEUS_FAL_IDW_Cancer_irroratus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1990.tif
-NEUS_FAL_IDW_Cancer_irroratus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1991.tif
-NEUS_FAL_IDW_Cancer_irroratus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1992.tif
-NEUS_FAL_IDW_Cancer_irroratus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1993.tif
-NEUS_FAL_IDW_Cancer_irroratus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1994.tif
-NEUS_FAL_IDW_Cancer_irroratus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1995.tif
-NEUS_FAL_IDW_Cancer_irroratus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1996.tif
-NEUS_FAL_IDW_Cancer_irroratus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1997.tif
-NEUS_FAL_IDW_Cancer_irroratus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1998.tif
-NEUS_FAL_IDW_Cancer_irroratus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_1999.tif
-NEUS_FAL_IDW_Cancer_irroratus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2000.tif
-NEUS_FAL_IDW_Cancer_irroratus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2001.tif
-NEUS_FAL_IDW_Cancer_irroratus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2002.tif
-NEUS_FAL_IDW_Cancer_irroratus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2003.tif
-NEUS_FAL_IDW_Cancer_irroratus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2004.tif
-NEUS_FAL_IDW_Cancer_irroratus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2005.tif
-NEUS_FAL_IDW_Cancer_irroratus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2006.tif
-NEUS_FAL_IDW_Cancer_irroratus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2007.tif
-NEUS_FAL_IDW_Cancer_irroratus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2008.tif
-NEUS_FAL_IDW_Cancer_irroratus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2009.tif
-NEUS_FAL_IDW_Cancer_irroratus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2010.tif
-NEUS_FAL_IDW_Cancer_irroratus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2011.tif
-NEUS_FAL_IDW_Cancer_irroratus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2012.tif
-NEUS_FAL_IDW_Cancer_irroratus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2013.tif
-NEUS_FAL_IDW_Cancer_irroratus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2014.tif
-NEUS_FAL_IDW_Cancer_irroratus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2015.tif
-NEUS_FAL_IDW_Cancer_irroratus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2016.tif
-NEUS_FAL_IDW_Cancer_irroratus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2018.tif
-NEUS_FAL_IDW_Cancer_irroratus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2019.tif
-NEUS_FAL_IDW_Cancer_irroratus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2021.tif
-NEUS_FAL_IDW_Cancer_irroratus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2022.tif
-NEUS_FAL_IDW_Cancer_irroratus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2023.tif
-NEUS_FAL_IDW_Cancer_irroratus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Cancer irroratus\NEUS_FAL_IDW_Cancer_irroratus_2024.tif
-NEUS_FAL_IDW_Centropristis_striata_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1974.tif
-NEUS_FAL_IDW_Centropristis_striata_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1975.tif
-NEUS_FAL_IDW_Centropristis_striata_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1976.tif
-NEUS_FAL_IDW_Centropristis_striata_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1977.tif
-NEUS_FAL_IDW_Centropristis_striata_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1978.tif
-NEUS_FAL_IDW_Centropristis_striata_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1979.tif
-NEUS_FAL_IDW_Centropristis_striata_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1980.tif
-NEUS_FAL_IDW_Centropristis_striata_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1981.tif
-NEUS_FAL_IDW_Centropristis_striata_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1982.tif
-NEUS_FAL_IDW_Centropristis_striata_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1983.tif
-NEUS_FAL_IDW_Centropristis_striata_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1984.tif
-NEUS_FAL_IDW_Centropristis_striata_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1985.tif
-NEUS_FAL_IDW_Centropristis_striata_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1986.tif
-NEUS_FAL_IDW_Centropristis_striata_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1987.tif
-NEUS_FAL_IDW_Centropristis_striata_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1988.tif
-NEUS_FAL_IDW_Centropristis_striata_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1989.tif
-NEUS_FAL_IDW_Centropristis_striata_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1990.tif
-NEUS_FAL_IDW_Centropristis_striata_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1991.tif
-NEUS_FAL_IDW_Centropristis_striata_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1992.tif
-NEUS_FAL_IDW_Centropristis_striata_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1993.tif
-NEUS_FAL_IDW_Centropristis_striata_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1994.tif
-NEUS_FAL_IDW_Centropristis_striata_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1995.tif
-NEUS_FAL_IDW_Centropristis_striata_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1996.tif
-NEUS_FAL_IDW_Centropristis_striata_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1997.tif
-NEUS_FAL_IDW_Centropristis_striata_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1998.tif
-NEUS_FAL_IDW_Centropristis_striata_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_1999.tif
-NEUS_FAL_IDW_Centropristis_striata_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2000.tif
-NEUS_FAL_IDW_Centropristis_striata_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2001.tif
-NEUS_FAL_IDW_Centropristis_striata_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2002.tif
-NEUS_FAL_IDW_Centropristis_striata_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2003.tif
-NEUS_FAL_IDW_Centropristis_striata_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2004.tif
-NEUS_FAL_IDW_Centropristis_striata_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2005.tif
-NEUS_FAL_IDW_Centropristis_striata_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2006.tif
-NEUS_FAL_IDW_Centropristis_striata_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2007.tif
-NEUS_FAL_IDW_Centropristis_striata_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2008.tif
-NEUS_FAL_IDW_Centropristis_striata_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2009.tif
-NEUS_FAL_IDW_Centropristis_striata_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2010.tif
-NEUS_FAL_IDW_Centropristis_striata_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2011.tif
-NEUS_FAL_IDW_Centropristis_striata_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2012.tif
-NEUS_FAL_IDW_Centropristis_striata_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2013.tif
-NEUS_FAL_IDW_Centropristis_striata_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2014.tif
-NEUS_FAL_IDW_Centropristis_striata_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2015.tif
-NEUS_FAL_IDW_Centropristis_striata_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2016.tif
-NEUS_FAL_IDW_Centropristis_striata_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2018.tif
-NEUS_FAL_IDW_Centropristis_striata_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2019.tif
-NEUS_FAL_IDW_Centropristis_striata_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2021.tif
-NEUS_FAL_IDW_Centropristis_striata_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2022.tif
-NEUS_FAL_IDW_Centropristis_striata_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2023.tif
-NEUS_FAL_IDW_Centropristis_striata_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Centropristis striata\NEUS_FAL_IDW_Centropristis_striata_2024.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1974.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1975.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1976.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1977.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1978.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1979.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1980.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1981.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1982.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1983.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1984.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1985.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1986.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1987.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1988.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1989.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1990.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1991.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1992.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1993.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1994.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1995.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1996.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1997.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1998.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_1999.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2000.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2001.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2002.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2003.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2004.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2005.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2006.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2007.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2008.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2009.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2010.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2011.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2012.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2013.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2014.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2015.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2016.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2018.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2019.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2021.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2022.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2023.tif
-NEUS_FAL_IDW_Citharichthys_arctifrons_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Citharichthys arctifrons\NEUS_FAL_IDW_Citharichthys_arctifrons_2024.tif
-NEUS_FAL_IDW_Clupea_harengus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1974.tif
-NEUS_FAL_IDW_Clupea_harengus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1975.tif
-NEUS_FAL_IDW_Clupea_harengus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1976.tif
-NEUS_FAL_IDW_Clupea_harengus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1977.tif
-NEUS_FAL_IDW_Clupea_harengus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1978.tif
-NEUS_FAL_IDW_Clupea_harengus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1979.tif
-NEUS_FAL_IDW_Clupea_harengus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1980.tif
-NEUS_FAL_IDW_Clupea_harengus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1981.tif
-NEUS_FAL_IDW_Clupea_harengus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1982.tif
-NEUS_FAL_IDW_Clupea_harengus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1983.tif
-NEUS_FAL_IDW_Clupea_harengus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1984.tif
-NEUS_FAL_IDW_Clupea_harengus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1985.tif
-NEUS_FAL_IDW_Clupea_harengus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1986.tif
-NEUS_FAL_IDW_Clupea_harengus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1987.tif
-NEUS_FAL_IDW_Clupea_harengus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1988.tif
-NEUS_FAL_IDW_Clupea_harengus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1989.tif
-NEUS_FAL_IDW_Clupea_harengus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1990.tif
-NEUS_FAL_IDW_Clupea_harengus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1991.tif
-NEUS_FAL_IDW_Clupea_harengus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1992.tif
-NEUS_FAL_IDW_Clupea_harengus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1993.tif
-NEUS_FAL_IDW_Clupea_harengus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1994.tif
-NEUS_FAL_IDW_Clupea_harengus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1995.tif
-NEUS_FAL_IDW_Clupea_harengus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1996.tif
-NEUS_FAL_IDW_Clupea_harengus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1997.tif
-NEUS_FAL_IDW_Clupea_harengus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1998.tif
-NEUS_FAL_IDW_Clupea_harengus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_1999.tif
-NEUS_FAL_IDW_Clupea_harengus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2000.tif
-NEUS_FAL_IDW_Clupea_harengus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2001.tif
-NEUS_FAL_IDW_Clupea_harengus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2002.tif
-NEUS_FAL_IDW_Clupea_harengus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2003.tif
-NEUS_FAL_IDW_Clupea_harengus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2004.tif
-NEUS_FAL_IDW_Clupea_harengus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2005.tif
-NEUS_FAL_IDW_Clupea_harengus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2006.tif
-NEUS_FAL_IDW_Clupea_harengus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2007.tif
-NEUS_FAL_IDW_Clupea_harengus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2008.tif
-NEUS_FAL_IDW_Clupea_harengus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2009.tif
-NEUS_FAL_IDW_Clupea_harengus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2010.tif
-NEUS_FAL_IDW_Clupea_harengus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2011.tif
-NEUS_FAL_IDW_Clupea_harengus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2012.tif
-NEUS_FAL_IDW_Clupea_harengus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2013.tif
-NEUS_FAL_IDW_Clupea_harengus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2014.tif
-NEUS_FAL_IDW_Clupea_harengus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2015.tif
-NEUS_FAL_IDW_Clupea_harengus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2016.tif
-NEUS_FAL_IDW_Clupea_harengus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2018.tif
-NEUS_FAL_IDW_Clupea_harengus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2019.tif
-NEUS_FAL_IDW_Clupea_harengus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2021.tif
-NEUS_FAL_IDW_Clupea_harengus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2022.tif
-NEUS_FAL_IDW_Clupea_harengus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2023.tif
-NEUS_FAL_IDW_Clupea_harengus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Clupea harengus\NEUS_FAL_IDW_Clupea_harengus_2024.tif
-NEUS_FAL_IDW_Dipturus_laevis_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1974.tif
-NEUS_FAL_IDW_Dipturus_laevis_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1975.tif
-NEUS_FAL_IDW_Dipturus_laevis_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1976.tif
-NEUS_FAL_IDW_Dipturus_laevis_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1977.tif
-NEUS_FAL_IDW_Dipturus_laevis_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1978.tif
-NEUS_FAL_IDW_Dipturus_laevis_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1979.tif
-NEUS_FAL_IDW_Dipturus_laevis_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1980.tif
-NEUS_FAL_IDW_Dipturus_laevis_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1981.tif
-NEUS_FAL_IDW_Dipturus_laevis_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1982.tif
-NEUS_FAL_IDW_Dipturus_laevis_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1983.tif
-NEUS_FAL_IDW_Dipturus_laevis_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:39:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1984.tif
-NEUS_FAL_IDW_Dipturus_laevis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1985.tif
-NEUS_FAL_IDW_Dipturus_laevis_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1986.tif
-NEUS_FAL_IDW_Dipturus_laevis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1987.tif
-NEUS_FAL_IDW_Dipturus_laevis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1988.tif
-NEUS_FAL_IDW_Dipturus_laevis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1989.tif
-NEUS_FAL_IDW_Dipturus_laevis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1990.tif
-NEUS_FAL_IDW_Dipturus_laevis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1991.tif
-NEUS_FAL_IDW_Dipturus_laevis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1992.tif
-NEUS_FAL_IDW_Dipturus_laevis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1993.tif
-NEUS_FAL_IDW_Dipturus_laevis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1994.tif
-NEUS_FAL_IDW_Dipturus_laevis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1995.tif
-NEUS_FAL_IDW_Dipturus_laevis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1996.tif
-NEUS_FAL_IDW_Dipturus_laevis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1997.tif
-NEUS_FAL_IDW_Dipturus_laevis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1998.tif
-NEUS_FAL_IDW_Dipturus_laevis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_1999.tif
-NEUS_FAL_IDW_Dipturus_laevis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2000.tif
-NEUS_FAL_IDW_Dipturus_laevis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2001.tif
-NEUS_FAL_IDW_Dipturus_laevis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2002.tif
-NEUS_FAL_IDW_Dipturus_laevis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2003.tif
-NEUS_FAL_IDW_Dipturus_laevis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2004.tif
-NEUS_FAL_IDW_Dipturus_laevis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2005.tif
-NEUS_FAL_IDW_Dipturus_laevis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2006.tif
-NEUS_FAL_IDW_Dipturus_laevis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2007.tif
-NEUS_FAL_IDW_Dipturus_laevis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2008.tif
-NEUS_FAL_IDW_Dipturus_laevis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2009.tif
-NEUS_FAL_IDW_Dipturus_laevis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2010.tif
-NEUS_FAL_IDW_Dipturus_laevis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2011.tif
-NEUS_FAL_IDW_Dipturus_laevis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2012.tif
-NEUS_FAL_IDW_Dipturus_laevis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2013.tif
-NEUS_FAL_IDW_Dipturus_laevis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2014.tif
-NEUS_FAL_IDW_Dipturus_laevis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2015.tif
-NEUS_FAL_IDW_Dipturus_laevis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2016.tif
-NEUS_FAL_IDW_Dipturus_laevis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2018.tif
-NEUS_FAL_IDW_Dipturus_laevis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2019.tif
-NEUS_FAL_IDW_Dipturus_laevis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2021.tif
-NEUS_FAL_IDW_Dipturus_laevis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2022.tif
-NEUS_FAL_IDW_Dipturus_laevis_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2023.tif
-NEUS_FAL_IDW_Dipturus_laevis_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Dipturus laevis\NEUS_FAL_IDW_Dipturus_laevis_2024.tif
-NEUS_FAL_IDW_Gadus_morhua_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1974.tif
-NEUS_FAL_IDW_Gadus_morhua_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1975.tif
-NEUS_FAL_IDW_Gadus_morhua_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1976.tif
-NEUS_FAL_IDW_Gadus_morhua_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1977.tif
-NEUS_FAL_IDW_Gadus_morhua_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1978.tif
-NEUS_FAL_IDW_Gadus_morhua_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1979.tif
-NEUS_FAL_IDW_Gadus_morhua_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1980.tif
-NEUS_FAL_IDW_Gadus_morhua_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1981.tif
-NEUS_FAL_IDW_Gadus_morhua_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1982.tif
-NEUS_FAL_IDW_Gadus_morhua_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1983.tif
-NEUS_FAL_IDW_Gadus_morhua_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1984.tif
-NEUS_FAL_IDW_Gadus_morhua_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1985.tif
-NEUS_FAL_IDW_Gadus_morhua_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1986.tif
-NEUS_FAL_IDW_Gadus_morhua_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1987.tif
-NEUS_FAL_IDW_Gadus_morhua_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1988.tif
-NEUS_FAL_IDW_Gadus_morhua_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1989.tif
-NEUS_FAL_IDW_Gadus_morhua_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1990.tif
-NEUS_FAL_IDW_Gadus_morhua_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1991.tif
-NEUS_FAL_IDW_Gadus_morhua_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1992.tif
-NEUS_FAL_IDW_Gadus_morhua_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1993.tif
-NEUS_FAL_IDW_Gadus_morhua_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1994.tif
-NEUS_FAL_IDW_Gadus_morhua_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1995.tif
-NEUS_FAL_IDW_Gadus_morhua_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1996.tif
-NEUS_FAL_IDW_Gadus_morhua_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1997.tif
-NEUS_FAL_IDW_Gadus_morhua_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1998.tif
-NEUS_FAL_IDW_Gadus_morhua_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_1999.tif
-NEUS_FAL_IDW_Gadus_morhua_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2000.tif
-NEUS_FAL_IDW_Gadus_morhua_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2001.tif
-NEUS_FAL_IDW_Gadus_morhua_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2002.tif
-NEUS_FAL_IDW_Gadus_morhua_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2003.tif
-NEUS_FAL_IDW_Gadus_morhua_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2004.tif
-NEUS_FAL_IDW_Gadus_morhua_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2005.tif
-NEUS_FAL_IDW_Gadus_morhua_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2006.tif
-NEUS_FAL_IDW_Gadus_morhua_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2007.tif
-NEUS_FAL_IDW_Gadus_morhua_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2008.tif
-NEUS_FAL_IDW_Gadus_morhua_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2009.tif
-NEUS_FAL_IDW_Gadus_morhua_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2010.tif
-NEUS_FAL_IDW_Gadus_morhua_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2011.tif
-NEUS_FAL_IDW_Gadus_morhua_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2012.tif
-NEUS_FAL_IDW_Gadus_morhua_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2013.tif
-NEUS_FAL_IDW_Gadus_morhua_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2014.tif
-NEUS_FAL_IDW_Gadus_morhua_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2015.tif
-NEUS_FAL_IDW_Gadus_morhua_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2016.tif
-NEUS_FAL_IDW_Gadus_morhua_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2018.tif
-NEUS_FAL_IDW_Gadus_morhua_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2019.tif
-NEUS_FAL_IDW_Gadus_morhua_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2021.tif
-NEUS_FAL_IDW_Gadus_morhua_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2022.tif
-NEUS_FAL_IDW_Gadus_morhua_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2023.tif
-NEUS_FAL_IDW_Gadus_morhua_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Gadus morhua\NEUS_FAL_IDW_Gadus_morhua_2024.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1974.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1975.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1976.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1977.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1978.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1979.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1980.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1981.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1982.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1983.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1984.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1985.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1986.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1987.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1988.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1989.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1990.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1991.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1992.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1993.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1994.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1995.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1996.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1997.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1998.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_1999.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2000.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2001.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2002.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2003.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2004.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2005.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2006.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2007.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2008.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2009.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2010.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2011.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2012.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2013.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2014.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2015.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2016.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2018.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2019.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2021.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2022.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2023.tif
-NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Glyptocephalus cynoglossus\NEUS_FAL_IDW_Glyptocephalus_cynoglossus_2024.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1974.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1975.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1976.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1977.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1978.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1979.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1980.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1981.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1982.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1983.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1984.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1985.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1986.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1987.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1988.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1989.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1990.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1991.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1992.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1993.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1994.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1995.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1996.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1997.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1998.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_1999.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2000.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2001.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2002.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2003.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2004.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2005.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2006.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2007.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2008.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2009.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2010.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2011.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2012.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2013.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2014.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2015.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2016.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2018.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2019.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2021.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2022.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2023.tif
-NEUS_FAL_IDW_Hemitripterus_americanus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hemitripterus americanus\NEUS_FAL_IDW_Hemitripterus_americanus_2024.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1974.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1975.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1976.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1977.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1978.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1979.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1980.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1981.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1982.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1983.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1984.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1985.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1986.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1987.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1988.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1989.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1990.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1991.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1992.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1993.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1994.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1995.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1996.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1997.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1998.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_1999.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2000.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2001.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2002.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2003.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2004.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2005.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2006.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2007.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2008.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2009.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2010.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2011.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2012.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2013.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2014.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2015.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2016.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2018.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2019.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2021.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2022.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2023.tif
-NEUS_FAL_IDW_Hippoglossoides_platessoides_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossoides platessoides\NEUS_FAL_IDW_Hippoglossoides_platessoides_2024.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1974.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1975.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1976.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1977.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1978.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1979.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1980.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1981.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1982.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1983.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1984.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1985.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1986.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1987.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1988.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1989.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1990.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1991.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1992.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1993.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1994.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1995.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1996.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1997.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1998.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_1999.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2000.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2001.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2002.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2003.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2004.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2005.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2006.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2007.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2008.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2009.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2010.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2011.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2012.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2013.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2014.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2015.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2016.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2018.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2019.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2021.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2022.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2023.tif
-NEUS_FAL_IDW_Hippoglossus_hippoglossus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:36:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Hippoglossus hippoglossus\NEUS_FAL_IDW_Hippoglossus_hippoglossus_2024.tif
-NEUS_FAL_IDW_Homarus_americanus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1974.tif
-NEUS_FAL_IDW_Homarus_americanus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1975.tif
-NEUS_FAL_IDW_Homarus_americanus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1976.tif
-NEUS_FAL_IDW_Homarus_americanus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1977.tif
-NEUS_FAL_IDW_Homarus_americanus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1978.tif
-NEUS_FAL_IDW_Homarus_americanus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:40:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1979.tif
-NEUS_FAL_IDW_Homarus_americanus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1980.tif
-NEUS_FAL_IDW_Homarus_americanus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1981.tif
-NEUS_FAL_IDW_Homarus_americanus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1982.tif
-NEUS_FAL_IDW_Homarus_americanus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1983.tif
-NEUS_FAL_IDW_Homarus_americanus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1984.tif
-NEUS_FAL_IDW_Homarus_americanus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1985.tif
-NEUS_FAL_IDW_Homarus_americanus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1986.tif
-NEUS_FAL_IDW_Homarus_americanus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1987.tif
-NEUS_FAL_IDW_Homarus_americanus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1988.tif
-NEUS_FAL_IDW_Homarus_americanus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1989.tif
-NEUS_FAL_IDW_Homarus_americanus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1990.tif
-NEUS_FAL_IDW_Homarus_americanus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1991.tif
-NEUS_FAL_IDW_Homarus_americanus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1992.tif
-NEUS_FAL_IDW_Homarus_americanus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1993.tif
-NEUS_FAL_IDW_Homarus_americanus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1994.tif
-NEUS_FAL_IDW_Homarus_americanus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1995.tif
-NEUS_FAL_IDW_Homarus_americanus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1996.tif
-NEUS_FAL_IDW_Homarus_americanus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1997.tif
-NEUS_FAL_IDW_Homarus_americanus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1998.tif
-NEUS_FAL_IDW_Homarus_americanus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_1999.tif
-NEUS_FAL_IDW_Homarus_americanus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2000.tif
-NEUS_FAL_IDW_Homarus_americanus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2001.tif
-NEUS_FAL_IDW_Homarus_americanus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2002.tif
-NEUS_FAL_IDW_Homarus_americanus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2003.tif
-NEUS_FAL_IDW_Homarus_americanus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2004.tif
-NEUS_FAL_IDW_Homarus_americanus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2005.tif
-NEUS_FAL_IDW_Homarus_americanus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2006.tif
-NEUS_FAL_IDW_Homarus_americanus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2007.tif
-NEUS_FAL_IDW_Homarus_americanus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2008.tif
-NEUS_FAL_IDW_Homarus_americanus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2009.tif
-NEUS_FAL_IDW_Homarus_americanus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2010.tif
-NEUS_FAL_IDW_Homarus_americanus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2011.tif
-NEUS_FAL_IDW_Homarus_americanus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2012.tif
-NEUS_FAL_IDW_Homarus_americanus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2013.tif
-NEUS_FAL_IDW_Homarus_americanus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2014.tif
-NEUS_FAL_IDW_Homarus_americanus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2015.tif
-NEUS_FAL_IDW_Homarus_americanus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2016.tif
-NEUS_FAL_IDW_Homarus_americanus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2018.tif
-NEUS_FAL_IDW_Homarus_americanus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2019.tif
-NEUS_FAL_IDW_Homarus_americanus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2021.tif
-NEUS_FAL_IDW_Homarus_americanus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2022.tif
-NEUS_FAL_IDW_Homarus_americanus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2023.tif
-NEUS_FAL_IDW_Homarus_americanus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Homarus americanus\NEUS_FAL_IDW_Homarus_americanus_2024.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1974.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1975.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1976.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1977.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1978.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1979.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1980.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1981.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1982.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1983.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1984.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1985.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1986.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1987.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1988.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1989.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1990.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1991.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1992.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1993.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1994.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1995.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1996.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1997.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1998.tif
-NEUS_FAL_IDW_Illex_illecebrosus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_1999.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2000.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2001.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2002.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2003.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2004.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2005.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2006.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2007.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2008.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2009.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2010.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2011.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2012.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2013.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2014.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2015.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2016.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2018.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2019.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2021.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2022.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2023.tif
-NEUS_FAL_IDW_Illex_illecebrosus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Illex illecebrosus\NEUS_FAL_IDW_Illex_illecebrosus_2024.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1974.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1975.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1976.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1977.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1978.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1979.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1980.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1981.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1982.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1983.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1984.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1985.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1986.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1987.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1988.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1989.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1990.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1991.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1992.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1993.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1994.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1995.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1996.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1997.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1998.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_1999.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2000.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2001.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2002.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2003.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2004.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2005.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2006.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2007.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2008.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2009.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2010.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2011.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2012.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2013.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2014.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2015.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2016.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2018.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2019.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2021.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2022.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2023.tif
-NEUS_FAL_IDW_Lepophidium_profundorum_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lepophidium profundorum\NEUS_FAL_IDW_Lepophidium_profundorum_2024.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1974.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1975.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1976.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1977.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1978.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1979.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1980.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1981.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1982.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1983.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1984.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1985.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1986.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1987.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1988.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1989.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1990.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1991.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1992.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1993.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1994.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1995.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1996.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1997.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1998.tif
-NEUS_FAL_IDW_Leucoraja_garmani_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_1999.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2000.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2001.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2002.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2003.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2004.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2005.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2006.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2007.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2008.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2009.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2010.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2011.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2012.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2013.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2014.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2015.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2016.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2018.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2019.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2021.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2022.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2023.tif
-NEUS_FAL_IDW_Leucoraja_garmani_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja garmani\NEUS_FAL_IDW_Leucoraja_garmani_2024.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1974.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1975.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1976.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1977.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1978.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1979.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1980.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1981.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1982.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1983.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1984.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1985.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1986.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1987.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1988.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1989.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1990.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1991.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1992.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1993.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1994.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1995.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1996.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1997.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1998.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_1999.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2000.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2001.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2002.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2003.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2004.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2005.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2006.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2007.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2008.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2009.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2010.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2011.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2012.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2013.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2014.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2015.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2016.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2018.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2019.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2021.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2022.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2023.tif
-NEUS_FAL_IDW_Leucoraja_ocellata_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Leucoraja ocellata\NEUS_FAL_IDW_Leucoraja_ocellata_2024.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1974.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1975.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1976.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1977.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1978.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1979.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1980.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1981.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1982.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1983.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1984.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1985.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1986.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1987.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1988.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1989.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1990.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1991.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1992.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1993.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1994.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1995.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1996.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1997.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1998.tif
-NEUS_FAL_IDW_Limulus_polyphemus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_1999.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2000.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2001.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2002.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2003.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2004.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2005.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2006.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2007.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2008.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2009.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2010.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2011.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2012.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2013.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2014.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2015.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2016.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2018.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2019.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2021.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2022.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2023.tif
-NEUS_FAL_IDW_Limulus_polyphemus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Limulus polyphemus\NEUS_FAL_IDW_Limulus_polyphemus_2024.tif
-NEUS_FAL_IDW_Lophius_americanus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1974.tif
-NEUS_FAL_IDW_Lophius_americanus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1975.tif
-NEUS_FAL_IDW_Lophius_americanus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1976.tif
-NEUS_FAL_IDW_Lophius_americanus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1977.tif
-NEUS_FAL_IDW_Lophius_americanus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1978.tif
-NEUS_FAL_IDW_Lophius_americanus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1979.tif
-NEUS_FAL_IDW_Lophius_americanus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1980.tif
-NEUS_FAL_IDW_Lophius_americanus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:41:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1981.tif
-NEUS_FAL_IDW_Lophius_americanus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1982.tif
-NEUS_FAL_IDW_Lophius_americanus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1983.tif
-NEUS_FAL_IDW_Lophius_americanus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1984.tif
-NEUS_FAL_IDW_Lophius_americanus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1985.tif
-NEUS_FAL_IDW_Lophius_americanus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1986.tif
-NEUS_FAL_IDW_Lophius_americanus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1987.tif
-NEUS_FAL_IDW_Lophius_americanus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1988.tif
-NEUS_FAL_IDW_Lophius_americanus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1989.tif
-NEUS_FAL_IDW_Lophius_americanus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1990.tif
-NEUS_FAL_IDW_Lophius_americanus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1991.tif
-NEUS_FAL_IDW_Lophius_americanus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1992.tif
-NEUS_FAL_IDW_Lophius_americanus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1993.tif
-NEUS_FAL_IDW_Lophius_americanus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1994.tif
-NEUS_FAL_IDW_Lophius_americanus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1995.tif
-NEUS_FAL_IDW_Lophius_americanus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1996.tif
-NEUS_FAL_IDW_Lophius_americanus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1997.tif
-NEUS_FAL_IDW_Lophius_americanus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1998.tif
-NEUS_FAL_IDW_Lophius_americanus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_1999.tif
-NEUS_FAL_IDW_Lophius_americanus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2000.tif
-NEUS_FAL_IDW_Lophius_americanus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2001.tif
-NEUS_FAL_IDW_Lophius_americanus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2002.tif
-NEUS_FAL_IDW_Lophius_americanus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2003.tif
-NEUS_FAL_IDW_Lophius_americanus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2004.tif
-NEUS_FAL_IDW_Lophius_americanus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2005.tif
-NEUS_FAL_IDW_Lophius_americanus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2006.tif
-NEUS_FAL_IDW_Lophius_americanus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2007.tif
-NEUS_FAL_IDW_Lophius_americanus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2008.tif
-NEUS_FAL_IDW_Lophius_americanus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2009.tif
-NEUS_FAL_IDW_Lophius_americanus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2010.tif
-NEUS_FAL_IDW_Lophius_americanus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2011.tif
-NEUS_FAL_IDW_Lophius_americanus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2012.tif
-NEUS_FAL_IDW_Lophius_americanus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2013.tif
-NEUS_FAL_IDW_Lophius_americanus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2014.tif
-NEUS_FAL_IDW_Lophius_americanus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2015.tif
-NEUS_FAL_IDW_Lophius_americanus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2016.tif
-NEUS_FAL_IDW_Lophius_americanus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2018.tif
-NEUS_FAL_IDW_Lophius_americanus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2019.tif
-NEUS_FAL_IDW_Lophius_americanus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2021.tif
-NEUS_FAL_IDW_Lophius_americanus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2022.tif
-NEUS_FAL_IDW_Lophius_americanus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2023.tif
-NEUS_FAL_IDW_Lophius_americanus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Lophius americanus\NEUS_FAL_IDW_Lophius_americanus_2024.tif
-NEUS_FAL_IDW_Malacoraja_senta_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1974.tif
-NEUS_FAL_IDW_Malacoraja_senta_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1975.tif
-NEUS_FAL_IDW_Malacoraja_senta_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1976.tif
-NEUS_FAL_IDW_Malacoraja_senta_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1977.tif
-NEUS_FAL_IDW_Malacoraja_senta_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1978.tif
-NEUS_FAL_IDW_Malacoraja_senta_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1979.tif
-NEUS_FAL_IDW_Malacoraja_senta_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1980.tif
-NEUS_FAL_IDW_Malacoraja_senta_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1981.tif
-NEUS_FAL_IDW_Malacoraja_senta_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1982.tif
-NEUS_FAL_IDW_Malacoraja_senta_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1983.tif
-NEUS_FAL_IDW_Malacoraja_senta_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1984.tif
-NEUS_FAL_IDW_Malacoraja_senta_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1985.tif
-NEUS_FAL_IDW_Malacoraja_senta_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1986.tif
-NEUS_FAL_IDW_Malacoraja_senta_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1987.tif
-NEUS_FAL_IDW_Malacoraja_senta_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1988.tif
-NEUS_FAL_IDW_Malacoraja_senta_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1989.tif
-NEUS_FAL_IDW_Malacoraja_senta_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1990.tif
-NEUS_FAL_IDW_Malacoraja_senta_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1991.tif
-NEUS_FAL_IDW_Malacoraja_senta_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1992.tif
-NEUS_FAL_IDW_Malacoraja_senta_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1993.tif
-NEUS_FAL_IDW_Malacoraja_senta_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1994.tif
-NEUS_FAL_IDW_Malacoraja_senta_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1995.tif
-NEUS_FAL_IDW_Malacoraja_senta_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1996.tif
-NEUS_FAL_IDW_Malacoraja_senta_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1997.tif
-NEUS_FAL_IDW_Malacoraja_senta_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1998.tif
-NEUS_FAL_IDW_Malacoraja_senta_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_1999.tif
-NEUS_FAL_IDW_Malacoraja_senta_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2000.tif
-NEUS_FAL_IDW_Malacoraja_senta_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2001.tif
-NEUS_FAL_IDW_Malacoraja_senta_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2002.tif
-NEUS_FAL_IDW_Malacoraja_senta_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2003.tif
-NEUS_FAL_IDW_Malacoraja_senta_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2004.tif
-NEUS_FAL_IDW_Malacoraja_senta_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2005.tif
-NEUS_FAL_IDW_Malacoraja_senta_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2006.tif
-NEUS_FAL_IDW_Malacoraja_senta_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2007.tif
-NEUS_FAL_IDW_Malacoraja_senta_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2008.tif
-NEUS_FAL_IDW_Malacoraja_senta_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2009.tif
-NEUS_FAL_IDW_Malacoraja_senta_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2010.tif
-NEUS_FAL_IDW_Malacoraja_senta_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2011.tif
-NEUS_FAL_IDW_Malacoraja_senta_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2012.tif
-NEUS_FAL_IDW_Malacoraja_senta_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2013.tif
-NEUS_FAL_IDW_Malacoraja_senta_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2014.tif
-NEUS_FAL_IDW_Malacoraja_senta_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2015.tif
-NEUS_FAL_IDW_Malacoraja_senta_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2016.tif
-NEUS_FAL_IDW_Malacoraja_senta_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2018.tif
-NEUS_FAL_IDW_Malacoraja_senta_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2019.tif
-NEUS_FAL_IDW_Malacoraja_senta_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2021.tif
-NEUS_FAL_IDW_Malacoraja_senta_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2022.tif
-NEUS_FAL_IDW_Malacoraja_senta_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2023.tif
-NEUS_FAL_IDW_Malacoraja_senta_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Malacoraja senta\NEUS_FAL_IDW_Malacoraja_senta_2024.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1974.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1975.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1976.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1977.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1978.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1979.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1980.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1981.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1982.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1983.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1984.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1985.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1986.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1987.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1988.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1989.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1990.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1991.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1992.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1993.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1994.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1995.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1996.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1997.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1998.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_1999.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2000.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2001.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2002.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2003.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2004.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2005.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2006.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2007.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2008.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2009.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2010.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2011.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2012.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2013.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2014.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2015.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2016.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2018.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2019.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2021.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2022.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2023.tif
-NEUS_FAL_IDW_Melanogrammus_aeglefinus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Melanogrammus aeglefinus\NEUS_FAL_IDW_Melanogrammus_aeglefinus_2024.tif
-NEUS_FAL_IDW_Merluccius_albidus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1974.tif
-NEUS_FAL_IDW_Merluccius_albidus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1975.tif
-NEUS_FAL_IDW_Merluccius_albidus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1976.tif
-NEUS_FAL_IDW_Merluccius_albidus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1977.tif
-NEUS_FAL_IDW_Merluccius_albidus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1978.tif
-NEUS_FAL_IDW_Merluccius_albidus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1979.tif
-NEUS_FAL_IDW_Merluccius_albidus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1980.tif
-NEUS_FAL_IDW_Merluccius_albidus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1981.tif
-NEUS_FAL_IDW_Merluccius_albidus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1982.tif
-NEUS_FAL_IDW_Merluccius_albidus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1983.tif
-NEUS_FAL_IDW_Merluccius_albidus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1984.tif
-NEUS_FAL_IDW_Merluccius_albidus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1985.tif
-NEUS_FAL_IDW_Merluccius_albidus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1986.tif
-NEUS_FAL_IDW_Merluccius_albidus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1987.tif
-NEUS_FAL_IDW_Merluccius_albidus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1988.tif
-NEUS_FAL_IDW_Merluccius_albidus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1989.tif
-NEUS_FAL_IDW_Merluccius_albidus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1990.tif
-NEUS_FAL_IDW_Merluccius_albidus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1991.tif
-NEUS_FAL_IDW_Merluccius_albidus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1992.tif
-NEUS_FAL_IDW_Merluccius_albidus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1993.tif
-NEUS_FAL_IDW_Merluccius_albidus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1994.tif
-NEUS_FAL_IDW_Merluccius_albidus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1995.tif
-NEUS_FAL_IDW_Merluccius_albidus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1996.tif
-NEUS_FAL_IDW_Merluccius_albidus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1997.tif
-NEUS_FAL_IDW_Merluccius_albidus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1998.tif
-NEUS_FAL_IDW_Merluccius_albidus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_1999.tif
-NEUS_FAL_IDW_Merluccius_albidus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2000.tif
-NEUS_FAL_IDW_Merluccius_albidus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2001.tif
-NEUS_FAL_IDW_Merluccius_albidus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2002.tif
-NEUS_FAL_IDW_Merluccius_albidus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2003.tif
-NEUS_FAL_IDW_Merluccius_albidus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2004.tif
-NEUS_FAL_IDW_Merluccius_albidus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2005.tif
-NEUS_FAL_IDW_Merluccius_albidus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2006.tif
-NEUS_FAL_IDW_Merluccius_albidus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2007.tif
-NEUS_FAL_IDW_Merluccius_albidus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2008.tif
-NEUS_FAL_IDW_Merluccius_albidus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2009.tif
-NEUS_FAL_IDW_Merluccius_albidus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2010.tif
-NEUS_FAL_IDW_Merluccius_albidus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2011.tif
-NEUS_FAL_IDW_Merluccius_albidus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2012.tif
-NEUS_FAL_IDW_Merluccius_albidus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2013.tif
-NEUS_FAL_IDW_Merluccius_albidus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2014.tif
-NEUS_FAL_IDW_Merluccius_albidus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2015.tif
-NEUS_FAL_IDW_Merluccius_albidus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2016.tif
-NEUS_FAL_IDW_Merluccius_albidus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2018.tif
-NEUS_FAL_IDW_Merluccius_albidus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2019.tif
-NEUS_FAL_IDW_Merluccius_albidus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2021.tif
-NEUS_FAL_IDW_Merluccius_albidus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2022.tif
-NEUS_FAL_IDW_Merluccius_albidus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2023.tif
-NEUS_FAL_IDW_Merluccius_albidus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius albidus\NEUS_FAL_IDW_Merluccius_albidus_2024.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1974.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1975.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1976.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1977.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1978.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1979.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1980.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1981.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1982.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1983.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1984.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1985.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1986.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1987.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1988.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1989.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1990.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1991.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1992.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1993.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1994.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1995.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1996.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1997.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1998.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_1999.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2000.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2001.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2002.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2003.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2004.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2005.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2006.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2007.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2008.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2009.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2010.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2011.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2012.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2013.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2014.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2015.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2016.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2018.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2019.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2021.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2022.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2023.tif
-NEUS_FAL_IDW_Merluccius_bilinearis_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:37:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Merluccius bilinearis\NEUS_FAL_IDW_Merluccius_bilinearis_2024.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1974.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1975.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1976.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1977.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1978.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1979.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1980.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1981.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1982.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1983.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1984.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1985.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1986.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1987.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1988.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1989.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1990.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1991.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1992.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1993.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1994.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1995.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1996.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1997.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1998.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_1999.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2000.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2001.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2002.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2003.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2004.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2005.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2006.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2007.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2008.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2009.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2010.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2011.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2012.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2013.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2014.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2015.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2016.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2018.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2019.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2021.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2022.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2023.tif
-NEUS_FAL_IDW_Micropogonias_undulatus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Micropogonias undulatus\NEUS_FAL_IDW_Micropogonias_undulatus_2024.tif
-NEUS_FAL_IDW_Mustelus_canis_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1974.tif
-NEUS_FAL_IDW_Mustelus_canis_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1975.tif
-NEUS_FAL_IDW_Mustelus_canis_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1976.tif
-NEUS_FAL_IDW_Mustelus_canis_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1977.tif
-NEUS_FAL_IDW_Mustelus_canis_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1978.tif
-NEUS_FAL_IDW_Mustelus_canis_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1979.tif
-NEUS_FAL_IDW_Mustelus_canis_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1980.tif
-NEUS_FAL_IDW_Mustelus_canis_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1981.tif
-NEUS_FAL_IDW_Mustelus_canis_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1982.tif
-NEUS_FAL_IDW_Mustelus_canis_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1983.tif
-NEUS_FAL_IDW_Mustelus_canis_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:42:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1984.tif
-NEUS_FAL_IDW_Mustelus_canis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1985.tif
-NEUS_FAL_IDW_Mustelus_canis_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1986.tif
-NEUS_FAL_IDW_Mustelus_canis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1987.tif
-NEUS_FAL_IDW_Mustelus_canis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1988.tif
-NEUS_FAL_IDW_Mustelus_canis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1989.tif
-NEUS_FAL_IDW_Mustelus_canis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1990.tif
-NEUS_FAL_IDW_Mustelus_canis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1991.tif
-NEUS_FAL_IDW_Mustelus_canis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1992.tif
-NEUS_FAL_IDW_Mustelus_canis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1993.tif
-NEUS_FAL_IDW_Mustelus_canis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1994.tif
-NEUS_FAL_IDW_Mustelus_canis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1995.tif
-NEUS_FAL_IDW_Mustelus_canis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1996.tif
-NEUS_FAL_IDW_Mustelus_canis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1997.tif
-NEUS_FAL_IDW_Mustelus_canis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1998.tif
-NEUS_FAL_IDW_Mustelus_canis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_1999.tif
-NEUS_FAL_IDW_Mustelus_canis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2000.tif
-NEUS_FAL_IDW_Mustelus_canis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2001.tif
-NEUS_FAL_IDW_Mustelus_canis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2002.tif
-NEUS_FAL_IDW_Mustelus_canis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2003.tif
-NEUS_FAL_IDW_Mustelus_canis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2004.tif
-NEUS_FAL_IDW_Mustelus_canis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2005.tif
-NEUS_FAL_IDW_Mustelus_canis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2006.tif
-NEUS_FAL_IDW_Mustelus_canis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2007.tif
-NEUS_FAL_IDW_Mustelus_canis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2008.tif
-NEUS_FAL_IDW_Mustelus_canis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2009.tif
-NEUS_FAL_IDW_Mustelus_canis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2010.tif
-NEUS_FAL_IDW_Mustelus_canis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2011.tif
-NEUS_FAL_IDW_Mustelus_canis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2012.tif
-NEUS_FAL_IDW_Mustelus_canis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2013.tif
-NEUS_FAL_IDW_Mustelus_canis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2014.tif
-NEUS_FAL_IDW_Mustelus_canis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2015.tif
-NEUS_FAL_IDW_Mustelus_canis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2016.tif
-NEUS_FAL_IDW_Mustelus_canis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2018.tif
-NEUS_FAL_IDW_Mustelus_canis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2019.tif
-NEUS_FAL_IDW_Mustelus_canis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2021.tif
-NEUS_FAL_IDW_Mustelus_canis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2022.tif
-NEUS_FAL_IDW_Mustelus_canis_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2023.tif
-NEUS_FAL_IDW_Mustelus_canis_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Mustelus canis\NEUS_FAL_IDW_Mustelus_canis_2024.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1974.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1975.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1976.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1977.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1978.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1979.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1980.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1981.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1982.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1983.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1984.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1985.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1986.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1987.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1988.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1989.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1990.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1991.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1992.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1993.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1994.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1995.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1996.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1997.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1998.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_1999.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2000.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2001.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2002.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2003.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2004.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2005.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2006.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2007.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2008.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2009.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2010.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2011.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2012.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2013.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2014.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2015.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2016.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2018.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2019.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2021.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2022.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2023.tif
-NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Myoxocephalus octodecemspinosus\NEUS_FAL_IDW_Myoxocephalus_octodecemspinosus_2024.tif
-NEUS_FAL_IDW_Pandalus_borealis_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1974.tif
-NEUS_FAL_IDW_Pandalus_borealis_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1975.tif
-NEUS_FAL_IDW_Pandalus_borealis_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1976.tif
-NEUS_FAL_IDW_Pandalus_borealis_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1977.tif
-NEUS_FAL_IDW_Pandalus_borealis_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1978.tif
-NEUS_FAL_IDW_Pandalus_borealis_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1979.tif
-NEUS_FAL_IDW_Pandalus_borealis_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1980.tif
-NEUS_FAL_IDW_Pandalus_borealis_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1981.tif
-NEUS_FAL_IDW_Pandalus_borealis_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1982.tif
-NEUS_FAL_IDW_Pandalus_borealis_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1983.tif
-NEUS_FAL_IDW_Pandalus_borealis_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1984.tif
-NEUS_FAL_IDW_Pandalus_borealis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1985.tif
-NEUS_FAL_IDW_Pandalus_borealis_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1986.tif
-NEUS_FAL_IDW_Pandalus_borealis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1987.tif
-NEUS_FAL_IDW_Pandalus_borealis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1988.tif
-NEUS_FAL_IDW_Pandalus_borealis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1989.tif
-NEUS_FAL_IDW_Pandalus_borealis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1990.tif
-NEUS_FAL_IDW_Pandalus_borealis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1991.tif
-NEUS_FAL_IDW_Pandalus_borealis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1992.tif
-NEUS_FAL_IDW_Pandalus_borealis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1993.tif
-NEUS_FAL_IDW_Pandalus_borealis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1994.tif
-NEUS_FAL_IDW_Pandalus_borealis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1995.tif
-NEUS_FAL_IDW_Pandalus_borealis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1996.tif
-NEUS_FAL_IDW_Pandalus_borealis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1997.tif
-NEUS_FAL_IDW_Pandalus_borealis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1998.tif
-NEUS_FAL_IDW_Pandalus_borealis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_1999.tif
-NEUS_FAL_IDW_Pandalus_borealis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2000.tif
-NEUS_FAL_IDW_Pandalus_borealis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2001.tif
-NEUS_FAL_IDW_Pandalus_borealis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2002.tif
-NEUS_FAL_IDW_Pandalus_borealis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2003.tif
-NEUS_FAL_IDW_Pandalus_borealis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2004.tif
-NEUS_FAL_IDW_Pandalus_borealis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2005.tif
-NEUS_FAL_IDW_Pandalus_borealis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2006.tif
-NEUS_FAL_IDW_Pandalus_borealis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2007.tif
-NEUS_FAL_IDW_Pandalus_borealis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2008.tif
-NEUS_FAL_IDW_Pandalus_borealis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2009.tif
-NEUS_FAL_IDW_Pandalus_borealis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2010.tif
-NEUS_FAL_IDW_Pandalus_borealis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2011.tif
-NEUS_FAL_IDW_Pandalus_borealis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2012.tif
-NEUS_FAL_IDW_Pandalus_borealis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2013.tif
-NEUS_FAL_IDW_Pandalus_borealis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2014.tif
-NEUS_FAL_IDW_Pandalus_borealis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2015.tif
-NEUS_FAL_IDW_Pandalus_borealis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2016.tif
-NEUS_FAL_IDW_Pandalus_borealis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2018.tif
-NEUS_FAL_IDW_Pandalus_borealis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2019.tif
-NEUS_FAL_IDW_Pandalus_borealis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2021.tif
-NEUS_FAL_IDW_Pandalus_borealis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2022.tif
-NEUS_FAL_IDW_Pandalus_borealis_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2023.tif
-NEUS_FAL_IDW_Pandalus_borealis_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pandalus borealis\NEUS_FAL_IDW_Pandalus_borealis_2024.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1974.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1975.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1976.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1977.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1978.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1979.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1980.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1981.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1982.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1983.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1984.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1985.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1986.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1987.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1988.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1989.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1990.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1991.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1992.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1993.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1994.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1995.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1996.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1997.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1998.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_1999.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2000.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2001.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2002.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2003.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2004.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2005.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2006.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2007.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2008.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2009.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2010.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2011.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2012.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2013.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2014.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2015.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2016.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2018.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2019.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2021.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2022.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2023.tif
-NEUS_FAL_IDW_Paralichthys_dentatus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Paralichthys dentatus\NEUS_FAL_IDW_Paralichthys_dentatus_2024.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1974.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1975.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1976.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1977.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1978.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1979.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1980.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1981.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1982.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1983.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1984.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1985.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1986.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1987.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1988.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1989.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1990.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1991.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1992.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1993.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1994.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1995.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1996.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1997.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1998.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_1999.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2000.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2001.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2002.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2003.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2004.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2005.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2006.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2007.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2008.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2009.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2010.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2011.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2012.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2013.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2014.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2015.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2016.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2018.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2019.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2021.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2022.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2023.tif
-NEUS_FAL_IDW_Peprilus_triacanthus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:38:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Peprilus triacanthus\NEUS_FAL_IDW_Peprilus_triacanthus_2024.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1974.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1975.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1976.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1977.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1978.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1979.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1980.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1981.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1982.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1983.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1984.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1985.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1986.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1987.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1988.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1989.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1990.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1991.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1992.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1993.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1994.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1995.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1996.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1997.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1998.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_1999.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2000.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2001.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2002.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2003.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2004.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2005.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2006.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2007.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2008.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2009.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2010.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2011.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2012.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2013.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2014.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2015.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2016.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2018.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2019.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2021.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2022.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2023.tif
-NEUS_FAL_IDW_Placopecten_magellanicus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Placopecten magellanicus\NEUS_FAL_IDW_Placopecten_magellanicus_2024.tif
-NEUS_FAL_IDW_Pollachius_virens_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1974.tif
-NEUS_FAL_IDW_Pollachius_virens_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1975.tif
-NEUS_FAL_IDW_Pollachius_virens_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1976.tif
-NEUS_FAL_IDW_Pollachius_virens_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1977.tif
-NEUS_FAL_IDW_Pollachius_virens_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1978.tif
-NEUS_FAL_IDW_Pollachius_virens_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1979.tif
-NEUS_FAL_IDW_Pollachius_virens_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1980.tif
-NEUS_FAL_IDW_Pollachius_virens_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1981.tif
-NEUS_FAL_IDW_Pollachius_virens_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1982.tif
-NEUS_FAL_IDW_Pollachius_virens_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1983.tif
-NEUS_FAL_IDW_Pollachius_virens_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1984.tif
-NEUS_FAL_IDW_Pollachius_virens_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1985.tif
-NEUS_FAL_IDW_Pollachius_virens_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1986.tif
-NEUS_FAL_IDW_Pollachius_virens_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1987.tif
-NEUS_FAL_IDW_Pollachius_virens_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1988.tif
-NEUS_FAL_IDW_Pollachius_virens_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1989.tif
-NEUS_FAL_IDW_Pollachius_virens_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1990.tif
-NEUS_FAL_IDW_Pollachius_virens_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1991.tif
-NEUS_FAL_IDW_Pollachius_virens_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1992.tif
-NEUS_FAL_IDW_Pollachius_virens_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1993.tif
-NEUS_FAL_IDW_Pollachius_virens_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1994.tif
-NEUS_FAL_IDW_Pollachius_virens_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1995.tif
-NEUS_FAL_IDW_Pollachius_virens_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1996.tif
-NEUS_FAL_IDW_Pollachius_virens_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1997.tif
-NEUS_FAL_IDW_Pollachius_virens_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1998.tif
-NEUS_FAL_IDW_Pollachius_virens_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_1999.tif
-NEUS_FAL_IDW_Pollachius_virens_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2000.tif
-NEUS_FAL_IDW_Pollachius_virens_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2001.tif
-NEUS_FAL_IDW_Pollachius_virens_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2002.tif
-NEUS_FAL_IDW_Pollachius_virens_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2003.tif
-NEUS_FAL_IDW_Pollachius_virens_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2004.tif
-NEUS_FAL_IDW_Pollachius_virens_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2005.tif
-NEUS_FAL_IDW_Pollachius_virens_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2006.tif
-NEUS_FAL_IDW_Pollachius_virens_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2007.tif
-NEUS_FAL_IDW_Pollachius_virens_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2008.tif
-NEUS_FAL_IDW_Pollachius_virens_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2009.tif
-NEUS_FAL_IDW_Pollachius_virens_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2010.tif
-NEUS_FAL_IDW_Pollachius_virens_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2011.tif
-NEUS_FAL_IDW_Pollachius_virens_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2012.tif
-NEUS_FAL_IDW_Pollachius_virens_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2013.tif
-NEUS_FAL_IDW_Pollachius_virens_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2014.tif
-NEUS_FAL_IDW_Pollachius_virens_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2015.tif
-NEUS_FAL_IDW_Pollachius_virens_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2016.tif
-NEUS_FAL_IDW_Pollachius_virens_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2018.tif
-NEUS_FAL_IDW_Pollachius_virens_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2019.tif
-NEUS_FAL_IDW_Pollachius_virens_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2021.tif
-NEUS_FAL_IDW_Pollachius_virens_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2022.tif
-NEUS_FAL_IDW_Pollachius_virens_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2023.tif
-NEUS_FAL_IDW_Pollachius_virens_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pollachius virens\NEUS_FAL_IDW_Pollachius_virens_2024.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1974.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1975.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1976.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1977.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1978.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1979.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1980.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1981.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1982.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1983.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1984.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1985.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:43:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1986.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1987.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1988.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1989.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1990.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1991.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1992.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1993.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1994.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1995.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1996.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1997.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1998.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_1999.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2000.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2001.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2002.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2003.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2004.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2005.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2006.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2007.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2008.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2009.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2010.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2011.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2012.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2013.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2014.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2015.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2016.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2018.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2019.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2021.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2022.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2023.tif
-NEUS_FAL_IDW_Pomatomus_saltatrix_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pomatomus saltatrix\NEUS_FAL_IDW_Pomatomus_saltatrix_2024.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1974.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1975.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1976.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1977.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1978.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1979.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1980.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1981.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1982.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1983.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1984.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1985.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1986.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1987.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1988.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1989.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1990.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1991.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1992.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1993.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1994.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1995.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1996.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1997.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1998.tif
-NEUS_FAL_IDW_Prionotus_carolinus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_1999.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2000.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2001.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2002.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2003.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2004.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2005.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2006.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2007.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2008.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2009.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2010.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2011.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2012.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2013.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2014.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2015.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2016.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2018.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2019.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2021.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2022.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2023.tif
-NEUS_FAL_IDW_Prionotus_carolinus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Prionotus carolinus\NEUS_FAL_IDW_Prionotus_carolinus_2024.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1974.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1975.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1976.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1977.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1978.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1979.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1980.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1981.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1982.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1983.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1984.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1985.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1986.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1987.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1988.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1989.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1990.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1991.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1992.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1993.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1994.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1995.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1996.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1997.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1998.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_1999.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2000.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2001.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2002.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2003.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2004.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2005.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2006.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2007.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2008.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2009.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2010.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2011.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2012.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2013.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2014.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2015.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2016.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2018.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2019.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2021.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2022.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2023.tif
-NEUS_FAL_IDW_Pseudopleuronectes_americanus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Pseudopleuronectes americanus\NEUS_FAL_IDW_Pseudopleuronectes_americanus_2024.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1974.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1975.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1976.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1977.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1978.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1979.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1980.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1981.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1982.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1983.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1984.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1985.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1986.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1987.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1988.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1989.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1990.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1991.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1992.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1993.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1994.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1995.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1996.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1997.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1998.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_1999.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2000.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2001.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2002.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2003.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2004.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2005.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2006.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2007.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2008.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2009.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2010.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2011.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2012.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2013.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2014.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2015.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2016.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2018.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2019.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2021.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2022.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2023.tif
-NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:39:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Rhizoprionodon terraenovae\NEUS_FAL_IDW_Rhizoprionodon_terraenovae_2024.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1974.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1975.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1976.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1977.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1978.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1979.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1980.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1981.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1982.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1983.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1984.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1985.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1986.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1987.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1988.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1989.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1990.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1991.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1992.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1993.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1994.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1995.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1996.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1997.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1998.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_1999.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2000.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2001.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2002.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2003.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2004.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2005.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2006.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2007.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2008.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2009.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2010.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2011.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2012.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2013.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2014.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2015.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2016.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2018.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2019.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2021.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2022.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2023.tif
-NEUS_FAL_IDW_Scophthalmus_aquosus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Scophthalmus aquosus\NEUS_FAL_IDW_Scophthalmus_aquosus_2024.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1974.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1975.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1976.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1977.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1978.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1979.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1980.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1981.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1982.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1983.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1984.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1985.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1986.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1987.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1988.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1989.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1990.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1991.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1992.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1993.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1994.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1995.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1996.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1997.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1998.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_1999.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2000.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2001.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2002.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2003.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2004.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2005.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2006.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2007.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2008.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2009.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2010.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2011.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2012.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2013.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2014.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2015.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2016.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2018.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2019.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2021.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2022.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2023.tif
-NEUS_FAL_IDW_Sebastes_fasciatus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Sebastes fasciatus\NEUS_FAL_IDW_Sebastes_fasciatus_2024.tif
-NEUS_FAL_IDW_Squalus_acanthias_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1974.tif
-NEUS_FAL_IDW_Squalus_acanthias_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1975.tif
-NEUS_FAL_IDW_Squalus_acanthias_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1976.tif
-NEUS_FAL_IDW_Squalus_acanthias_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1977.tif
-NEUS_FAL_IDW_Squalus_acanthias_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1978.tif
-NEUS_FAL_IDW_Squalus_acanthias_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1979.tif
-NEUS_FAL_IDW_Squalus_acanthias_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1980.tif
-NEUS_FAL_IDW_Squalus_acanthias_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1981.tif
-NEUS_FAL_IDW_Squalus_acanthias_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1982.tif
-NEUS_FAL_IDW_Squalus_acanthias_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1983.tif
-NEUS_FAL_IDW_Squalus_acanthias_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1984.tif
-NEUS_FAL_IDW_Squalus_acanthias_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1985.tif
-NEUS_FAL_IDW_Squalus_acanthias_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1986.tif
-NEUS_FAL_IDW_Squalus_acanthias_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1987.tif
-NEUS_FAL_IDW_Squalus_acanthias_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1988.tif
-NEUS_FAL_IDW_Squalus_acanthias_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:44:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1989.tif
-NEUS_FAL_IDW_Squalus_acanthias_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1990.tif
-NEUS_FAL_IDW_Squalus_acanthias_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1991.tif
-NEUS_FAL_IDW_Squalus_acanthias_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1992.tif
-NEUS_FAL_IDW_Squalus_acanthias_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1993.tif
-NEUS_FAL_IDW_Squalus_acanthias_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1994.tif
-NEUS_FAL_IDW_Squalus_acanthias_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1995.tif
-NEUS_FAL_IDW_Squalus_acanthias_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1996.tif
-NEUS_FAL_IDW_Squalus_acanthias_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1997.tif
-NEUS_FAL_IDW_Squalus_acanthias_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1998.tif
-NEUS_FAL_IDW_Squalus_acanthias_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_1999.tif
-NEUS_FAL_IDW_Squalus_acanthias_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2000.tif
-NEUS_FAL_IDW_Squalus_acanthias_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2001.tif
-NEUS_FAL_IDW_Squalus_acanthias_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2002.tif
-NEUS_FAL_IDW_Squalus_acanthias_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2003.tif
-NEUS_FAL_IDW_Squalus_acanthias_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2004.tif
-NEUS_FAL_IDW_Squalus_acanthias_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2005.tif
-NEUS_FAL_IDW_Squalus_acanthias_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2006.tif
-NEUS_FAL_IDW_Squalus_acanthias_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2007.tif
-NEUS_FAL_IDW_Squalus_acanthias_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2008.tif
-NEUS_FAL_IDW_Squalus_acanthias_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2009.tif
-NEUS_FAL_IDW_Squalus_acanthias_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2010.tif
-NEUS_FAL_IDW_Squalus_acanthias_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2011.tif
-NEUS_FAL_IDW_Squalus_acanthias_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2012.tif
-NEUS_FAL_IDW_Squalus_acanthias_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2013.tif
-NEUS_FAL_IDW_Squalus_acanthias_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2014.tif
-NEUS_FAL_IDW_Squalus_acanthias_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2015.tif
-NEUS_FAL_IDW_Squalus_acanthias_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2016.tif
-NEUS_FAL_IDW_Squalus_acanthias_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2018.tif
-NEUS_FAL_IDW_Squalus_acanthias_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2019.tif
-NEUS_FAL_IDW_Squalus_acanthias_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2021.tif
-NEUS_FAL_IDW_Squalus_acanthias_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2022.tif
-NEUS_FAL_IDW_Squalus_acanthias_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2023.tif
-NEUS_FAL_IDW_Squalus_acanthias_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Squalus acanthias\NEUS_FAL_IDW_Squalus_acanthias_2024.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1974.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1975.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1976.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1977.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1978.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1979.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1980.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1981.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1982.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1983.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1984.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1985.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1986.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1987.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1988.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1989.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1990.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1991.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1992.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1993.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1994.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1995.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1996.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1997.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1998.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_1999.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2000.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2001.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2002.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2003.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2004.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2005.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2006.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2007.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2008.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2009.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2010.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2011.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2012.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2013.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2014.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2015.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2016.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2018.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2019.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2021.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2022.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2023.tif
-NEUS_FAL_IDW_Stenotomus_chrysops_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Stenotomus chrysops\NEUS_FAL_IDW_Stenotomus_chrysops_2024.tif
-NEUS_FAL_IDW_Urophycis_chuss_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1974.tif
-NEUS_FAL_IDW_Urophycis_chuss_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1975.tif
-NEUS_FAL_IDW_Urophycis_chuss_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1976.tif
-NEUS_FAL_IDW_Urophycis_chuss_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1977.tif
-NEUS_FAL_IDW_Urophycis_chuss_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1978.tif
-NEUS_FAL_IDW_Urophycis_chuss_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1979.tif
-NEUS_FAL_IDW_Urophycis_chuss_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1980.tif
-NEUS_FAL_IDW_Urophycis_chuss_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1981.tif
-NEUS_FAL_IDW_Urophycis_chuss_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1982.tif
-NEUS_FAL_IDW_Urophycis_chuss_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1983.tif
-NEUS_FAL_IDW_Urophycis_chuss_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1984.tif
-NEUS_FAL_IDW_Urophycis_chuss_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1985.tif
-NEUS_FAL_IDW_Urophycis_chuss_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1986.tif
-NEUS_FAL_IDW_Urophycis_chuss_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1987.tif
-NEUS_FAL_IDW_Urophycis_chuss_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1988.tif
-NEUS_FAL_IDW_Urophycis_chuss_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1989.tif
-NEUS_FAL_IDW_Urophycis_chuss_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1990.tif
-NEUS_FAL_IDW_Urophycis_chuss_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1991.tif
-NEUS_FAL_IDW_Urophycis_chuss_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1992.tif
-NEUS_FAL_IDW_Urophycis_chuss_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1993.tif
-NEUS_FAL_IDW_Urophycis_chuss_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1994.tif
-NEUS_FAL_IDW_Urophycis_chuss_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1995.tif
-NEUS_FAL_IDW_Urophycis_chuss_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1996.tif
-NEUS_FAL_IDW_Urophycis_chuss_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1997.tif
-NEUS_FAL_IDW_Urophycis_chuss_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1998.tif
-NEUS_FAL_IDW_Urophycis_chuss_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_1999.tif
-NEUS_FAL_IDW_Urophycis_chuss_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2000.tif
-NEUS_FAL_IDW_Urophycis_chuss_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2001.tif
-NEUS_FAL_IDW_Urophycis_chuss_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2002.tif
-NEUS_FAL_IDW_Urophycis_chuss_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2003.tif
-NEUS_FAL_IDW_Urophycis_chuss_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2004.tif
-NEUS_FAL_IDW_Urophycis_chuss_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2005.tif
-NEUS_FAL_IDW_Urophycis_chuss_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2006.tif
-NEUS_FAL_IDW_Urophycis_chuss_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2007.tif
-NEUS_FAL_IDW_Urophycis_chuss_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2008.tif
-NEUS_FAL_IDW_Urophycis_chuss_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2009.tif
-NEUS_FAL_IDW_Urophycis_chuss_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2010.tif
-NEUS_FAL_IDW_Urophycis_chuss_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2011.tif
-NEUS_FAL_IDW_Urophycis_chuss_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2012.tif
-NEUS_FAL_IDW_Urophycis_chuss_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2013.tif
-NEUS_FAL_IDW_Urophycis_chuss_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2014.tif
-NEUS_FAL_IDW_Urophycis_chuss_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2015.tif
-NEUS_FAL_IDW_Urophycis_chuss_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2016.tif
-NEUS_FAL_IDW_Urophycis_chuss_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2018.tif
-NEUS_FAL_IDW_Urophycis_chuss_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2019.tif
-NEUS_FAL_IDW_Urophycis_chuss_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2021.tif
-NEUS_FAL_IDW_Urophycis_chuss_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2022.tif
-NEUS_FAL_IDW_Urophycis_chuss_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2023.tif
-NEUS_FAL_IDW_Urophycis_chuss_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis chuss\NEUS_FAL_IDW_Urophycis_chuss_2024.tif
-NEUS_FAL_IDW_Urophycis_regia_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1974.tif
-NEUS_FAL_IDW_Urophycis_regia_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1975.tif
-NEUS_FAL_IDW_Urophycis_regia_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1976.tif
-NEUS_FAL_IDW_Urophycis_regia_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1977.tif
-NEUS_FAL_IDW_Urophycis_regia_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1978.tif
-NEUS_FAL_IDW_Urophycis_regia_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1979.tif
-NEUS_FAL_IDW_Urophycis_regia_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1980.tif
-NEUS_FAL_IDW_Urophycis_regia_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1981.tif
-NEUS_FAL_IDW_Urophycis_regia_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1982.tif
-NEUS_FAL_IDW_Urophycis_regia_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1983.tif
-NEUS_FAL_IDW_Urophycis_regia_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1984.tif
-NEUS_FAL_IDW_Urophycis_regia_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1985.tif
-NEUS_FAL_IDW_Urophycis_regia_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1986.tif
-NEUS_FAL_IDW_Urophycis_regia_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1987.tif
-NEUS_FAL_IDW_Urophycis_regia_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1988.tif
-NEUS_FAL_IDW_Urophycis_regia_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1989.tif
-NEUS_FAL_IDW_Urophycis_regia_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1990.tif
-NEUS_FAL_IDW_Urophycis_regia_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1991.tif
-NEUS_FAL_IDW_Urophycis_regia_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1992.tif
-NEUS_FAL_IDW_Urophycis_regia_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1993.tif
-NEUS_FAL_IDW_Urophycis_regia_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1994.tif
-NEUS_FAL_IDW_Urophycis_regia_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1995.tif
-NEUS_FAL_IDW_Urophycis_regia_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1996.tif
-NEUS_FAL_IDW_Urophycis_regia_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1997.tif
-NEUS_FAL_IDW_Urophycis_regia_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1998.tif
-NEUS_FAL_IDW_Urophycis_regia_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_1999.tif
-NEUS_FAL_IDW_Urophycis_regia_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2000.tif
-NEUS_FAL_IDW_Urophycis_regia_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2001.tif
-NEUS_FAL_IDW_Urophycis_regia_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2002.tif
-NEUS_FAL_IDW_Urophycis_regia_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2003.tif
-NEUS_FAL_IDW_Urophycis_regia_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2004.tif
-NEUS_FAL_IDW_Urophycis_regia_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2005.tif
-NEUS_FAL_IDW_Urophycis_regia_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2006.tif
-NEUS_FAL_IDW_Urophycis_regia_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2007.tif
-NEUS_FAL_IDW_Urophycis_regia_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2008.tif
-NEUS_FAL_IDW_Urophycis_regia_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2009.tif
-NEUS_FAL_IDW_Urophycis_regia_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2010.tif
-NEUS_FAL_IDW_Urophycis_regia_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2011.tif
-NEUS_FAL_IDW_Urophycis_regia_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2012.tif
-NEUS_FAL_IDW_Urophycis_regia_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2013.tif
-NEUS_FAL_IDW_Urophycis_regia_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2014.tif
-NEUS_FAL_IDW_Urophycis_regia_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2015.tif
-NEUS_FAL_IDW_Urophycis_regia_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2016.tif
-NEUS_FAL_IDW_Urophycis_regia_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2018.tif
-NEUS_FAL_IDW_Urophycis_regia_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2019.tif
-NEUS_FAL_IDW_Urophycis_regia_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2021.tif
-NEUS_FAL_IDW_Urophycis_regia_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2022.tif
-NEUS_FAL_IDW_Urophycis_regia_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2023.tif
-NEUS_FAL_IDW_Urophycis_regia_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis regia\NEUS_FAL_IDW_Urophycis_regia_2024.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1974.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1975.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1976.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1977.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1978.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1979.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1980.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1981.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1982.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1983.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1984.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1985.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1986.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1987.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1988.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1989.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1990.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1991.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1992.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1993.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1994.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1995.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1996.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1997.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1998.tif
-NEUS_FAL_IDW_Urophycis_tenuis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_1999.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2000.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2001.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2002.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2003.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2004.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2005.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2006.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2007.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2008.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2009.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2010.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2011.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2012.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2013.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2014.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2015.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2016.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2018.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2019.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2021.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2022.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2023.tif
-NEUS_FAL_IDW_Urophycis_tenuis_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\Urophycis tenuis\NEUS_FAL_IDW_Urophycis_tenuis_2024.tif
-NEUS_FAL_IDW_Core_Species_Richness_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1974.tif
-NEUS_FAL_IDW_Core_Species_Richness_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1975.tif
-NEUS_FAL_IDW_Core_Species_Richness_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1976.tif
-NEUS_FAL_IDW_Core_Species_Richness_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1977.tif
-NEUS_FAL_IDW_Core_Species_Richness_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1978.tif
-NEUS_FAL_IDW_Core_Species_Richness_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1979.tif
-NEUS_FAL_IDW_Core_Species_Richness_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1980.tif
-NEUS_FAL_IDW_Core_Species_Richness_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1981.tif
-NEUS_FAL_IDW_Core_Species_Richness_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1982.tif
-NEUS_FAL_IDW_Core_Species_Richness_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1983.tif
-NEUS_FAL_IDW_Core_Species_Richness_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1984.tif
-NEUS_FAL_IDW_Core_Species_Richness_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1985.tif
-NEUS_FAL_IDW_Core_Species_Richness_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1986.tif
-NEUS_FAL_IDW_Core_Species_Richness_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1987.tif
-NEUS_FAL_IDW_Core_Species_Richness_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1988.tif
-NEUS_FAL_IDW_Core_Species_Richness_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1989.tif
-NEUS_FAL_IDW_Core_Species_Richness_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1990.tif
-NEUS_FAL_IDW_Core_Species_Richness_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:45:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1991.tif
-NEUS_FAL_IDW_Core_Species_Richness_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1992.tif
-NEUS_FAL_IDW_Core_Species_Richness_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1993.tif
-NEUS_FAL_IDW_Core_Species_Richness_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1994.tif
-NEUS_FAL_IDW_Core_Species_Richness_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1995.tif
-NEUS_FAL_IDW_Core_Species_Richness_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1996.tif
-NEUS_FAL_IDW_Core_Species_Richness_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1997.tif
-NEUS_FAL_IDW_Core_Species_Richness_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1998.tif
-NEUS_FAL_IDW_Core_Species_Richness_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_1999.tif
-NEUS_FAL_IDW_Core_Species_Richness_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2000.tif
-NEUS_FAL_IDW_Core_Species_Richness_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2001.tif
-NEUS_FAL_IDW_Core_Species_Richness_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2002.tif
-NEUS_FAL_IDW_Core_Species_Richness_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2003.tif
-NEUS_FAL_IDW_Core_Species_Richness_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2004.tif
-NEUS_FAL_IDW_Core_Species_Richness_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2005.tif
-NEUS_FAL_IDW_Core_Species_Richness_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2006.tif
-NEUS_FAL_IDW_Core_Species_Richness_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2007.tif
-NEUS_FAL_IDW_Core_Species_Richness_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2008.tif
-NEUS_FAL_IDW_Core_Species_Richness_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2009.tif
-NEUS_FAL_IDW_Core_Species_Richness_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2010.tif
-NEUS_FAL_IDW_Core_Species_Richness_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2011.tif
-NEUS_FAL_IDW_Core_Species_Richness_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2012.tif
-NEUS_FAL_IDW_Core_Species_Richness_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2013.tif
-NEUS_FAL_IDW_Core_Species_Richness_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2014.tif
-NEUS_FAL_IDW_Core_Species_Richness_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2015.tif
-NEUS_FAL_IDW_Core_Species_Richness_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2016.tif
-NEUS_FAL_IDW_Core_Species_Richness_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2018.tif
-NEUS_FAL_IDW_Core_Species_Richness_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2019.tif
-NEUS_FAL_IDW_Core_Species_Richness_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2021.tif
-NEUS_FAL_IDW_Core_Species_Richness_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2022.tif
-NEUS_FAL_IDW_Core_Species_Richness_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2023.tif
-NEUS_FAL_IDW_Core_Species_Richness_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Core Species Richness\NEUS_FAL_IDW_Core_Species_Richness_2024.tif
-NEUS_FAL_IDW_Species_Richness_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1974.tif
-NEUS_FAL_IDW_Species_Richness_1975.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1975.tif
-NEUS_FAL_IDW_Species_Richness_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1976.tif
-NEUS_FAL_IDW_Species_Richness_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1977.tif
-NEUS_FAL_IDW_Species_Richness_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1978.tif
-NEUS_FAL_IDW_Species_Richness_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1979.tif
-NEUS_FAL_IDW_Species_Richness_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1980.tif
-NEUS_FAL_IDW_Species_Richness_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1981.tif
-NEUS_FAL_IDW_Species_Richness_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1982.tif
-NEUS_FAL_IDW_Species_Richness_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1983.tif
-NEUS_FAL_IDW_Species_Richness_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1984.tif
-NEUS_FAL_IDW_Species_Richness_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1985.tif
-NEUS_FAL_IDW_Species_Richness_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1986.tif
-NEUS_FAL_IDW_Species_Richness_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1987.tif
-NEUS_FAL_IDW_Species_Richness_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1988.tif
-NEUS_FAL_IDW_Species_Richness_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1989.tif
-NEUS_FAL_IDW_Species_Richness_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1990.tif
-NEUS_FAL_IDW_Species_Richness_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1991.tif
-NEUS_FAL_IDW_Species_Richness_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1992.tif
-NEUS_FAL_IDW_Species_Richness_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1993.tif
-NEUS_FAL_IDW_Species_Richness_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1994.tif
-NEUS_FAL_IDW_Species_Richness_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1995.tif
-NEUS_FAL_IDW_Species_Richness_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1996.tif
-NEUS_FAL_IDW_Species_Richness_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1997.tif
-NEUS_FAL_IDW_Species_Richness_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1998.tif
-NEUS_FAL_IDW_Species_Richness_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_1999.tif
-NEUS_FAL_IDW_Species_Richness_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2000.tif
-NEUS_FAL_IDW_Species_Richness_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2001.tif
-NEUS_FAL_IDW_Species_Richness_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2002.tif
-NEUS_FAL_IDW_Species_Richness_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2003.tif
-NEUS_FAL_IDW_Species_Richness_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2004.tif
-NEUS_FAL_IDW_Species_Richness_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2005.tif
-NEUS_FAL_IDW_Species_Richness_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2006.tif
-NEUS_FAL_IDW_Species_Richness_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2007.tif
-NEUS_FAL_IDW_Species_Richness_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2008.tif
-NEUS_FAL_IDW_Species_Richness_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2009.tif
-NEUS_FAL_IDW_Species_Richness_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2010.tif
-NEUS_FAL_IDW_Species_Richness_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2011.tif
-NEUS_FAL_IDW_Species_Richness_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2012.tif
-NEUS_FAL_IDW_Species_Richness_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2013.tif
-NEUS_FAL_IDW_Species_Richness_2014.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2014.tif
-NEUS_FAL_IDW_Species_Richness_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2015.tif
-NEUS_FAL_IDW_Species_Richness_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2016.tif
-NEUS_FAL_IDW_Species_Richness_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2018.tif
-NEUS_FAL_IDW_Species_Richness_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2019.tif
-NEUS_FAL_IDW_Species_Richness_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2021.tif
-NEUS_FAL_IDW_Species_Richness_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2022.tif
-NEUS_FAL_IDW_Species_Richness_2023.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2023.tif
-NEUS_FAL_IDW_Species_Richness_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_FAL_IDW\_Species Richness\NEUS_FAL_IDW_Species_Richness_2024.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1974.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1976.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1977.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1978.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1979.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1980.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1981.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1982.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1983.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1984.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1985.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1986.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1987.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1988.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1989.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1990.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1991.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1992.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1993.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1994.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1995.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1996.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1997.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1998.tif
-NEUS_SPR_IDW_Alosa_aestivalis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_1999.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2000.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2001.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2002.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2003.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2004.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2005.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2006.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2007.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2008.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2009.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2010.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2011.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2012.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2013.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2015.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2016.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2017.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2018.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2019.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2021.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2022.tif
-NEUS_SPR_IDW_Alosa_aestivalis_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa aestivalis\NEUS_SPR_IDW_Alosa_aestivalis_2024.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1974.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1976.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1977.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1978.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1979.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1980.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1981.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1982.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1983.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1984.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1985.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1986.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1987.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1988.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1989.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1990.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1991.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1992.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1993.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1994.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1995.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1996.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1997.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1998.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_1999.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2000.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2001.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2002.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2003.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2004.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2005.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2006.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2007.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2008.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2009.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2010.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2011.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2012.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2013.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2015.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2016.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2017.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2018.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2019.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2021.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2022.tif
-NEUS_SPR_IDW_Alosa_pseudoharengus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa pseudoharengus\NEUS_SPR_IDW_Alosa_pseudoharengus_2024.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1974.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1976.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1977.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1978.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1979.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1980.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1981.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1982.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1983.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1984.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1985.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1986.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1987.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1988.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1989.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1990.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1991.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1992.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1993.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1994.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1995.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1996.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1997.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1998.tif
-NEUS_SPR_IDW_Alosa_sapidissima_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_1999.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2000.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2001.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2002.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2003.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2004.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2005.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2006.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2007.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2008.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2009.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2010.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2011.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2012.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2013.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2015.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2016.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2017.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2018.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2019.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2021.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2022.tif
-NEUS_SPR_IDW_Alosa_sapidissima_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Alosa sapidissima\NEUS_SPR_IDW_Alosa_sapidissima_2024.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1974.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1976.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1977.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1978.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1979.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1980.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1981.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1982.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1983.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1984.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1985.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1986.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1987.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1988.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1989.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1990.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1991.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1992.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1993.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1994.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1995.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1996.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1997.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1998.tif
-NEUS_SPR_IDW_Amblyraja_radiata_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_1999.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:46:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2000.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2001.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2002.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2003.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2004.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2005.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2006.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2007.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2008.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2009.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2010.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2011.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2012.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2013.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2015.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2016.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2017.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2018.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2019.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2021.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2022.tif
-NEUS_SPR_IDW_Amblyraja_radiata_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Amblyraja radiata\NEUS_SPR_IDW_Amblyraja_radiata_2024.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1974.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1976.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1977.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1978.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1979.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1980.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1981.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1982.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1983.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1984.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1985.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1986.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1987.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1988.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1989.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1990.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1991.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1992.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1993.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1994.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1995.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1996.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1997.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1998.tif
-NEUS_SPR_IDW_Anarhichas_lupus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_1999.tif
-NEUS_SPR_IDW_Anarhichas_lupus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_2000.tif
-NEUS_SPR_IDW_Anarhichas_lupus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_2001.tif
-NEUS_SPR_IDW_Anarhichas_lupus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_2002.tif
-NEUS_SPR_IDW_Anarhichas_lupus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_2003.tif
-NEUS_SPR_IDW_Anarhichas_lupus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_2004.tif
-NEUS_SPR_IDW_Anarhichas_lupus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_2005.tif
-NEUS_SPR_IDW_Anarhichas_lupus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_2006.tif
-NEUS_SPR_IDW_Anarhichas_lupus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_2007.tif
-NEUS_SPR_IDW_Anarhichas_lupus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_2008.tif
-NEUS_SPR_IDW_Anarhichas_lupus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_2009.tif
-NEUS_SPR_IDW_Anarhichas_lupus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_2010.tif
-NEUS_SPR_IDW_Anarhichas_lupus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_2011.tif
-NEUS_SPR_IDW_Anarhichas_lupus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_2012.tif
-NEUS_SPR_IDW_Anarhichas_lupus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_2013.tif
-NEUS_SPR_IDW_Anarhichas_lupus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_2015.tif
-NEUS_SPR_IDW_Anarhichas_lupus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_2016.tif
-NEUS_SPR_IDW_Anarhichas_lupus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_2017.tif
-NEUS_SPR_IDW_Anarhichas_lupus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_2018.tif
-NEUS_SPR_IDW_Anarhichas_lupus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_2019.tif
-NEUS_SPR_IDW_Anarhichas_lupus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_2021.tif
-NEUS_SPR_IDW_Anarhichas_lupus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_2022.tif
-NEUS_SPR_IDW_Anarhichas_lupus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Anarhichas lupus\NEUS_SPR_IDW_Anarhichas_lupus_2024.tif
-NEUS_SPR_IDW_Cancer_irroratus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1974.tif
-NEUS_SPR_IDW_Cancer_irroratus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1976.tif
-NEUS_SPR_IDW_Cancer_irroratus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1977.tif
-NEUS_SPR_IDW_Cancer_irroratus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1978.tif
-NEUS_SPR_IDW_Cancer_irroratus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1979.tif
-NEUS_SPR_IDW_Cancer_irroratus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1980.tif
-NEUS_SPR_IDW_Cancer_irroratus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1981.tif
-NEUS_SPR_IDW_Cancer_irroratus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1982.tif
-NEUS_SPR_IDW_Cancer_irroratus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1983.tif
-NEUS_SPR_IDW_Cancer_irroratus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1984.tif
-NEUS_SPR_IDW_Cancer_irroratus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1985.tif
-NEUS_SPR_IDW_Cancer_irroratus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1986.tif
-NEUS_SPR_IDW_Cancer_irroratus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1987.tif
-NEUS_SPR_IDW_Cancer_irroratus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1988.tif
-NEUS_SPR_IDW_Cancer_irroratus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1989.tif
-NEUS_SPR_IDW_Cancer_irroratus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1990.tif
-NEUS_SPR_IDW_Cancer_irroratus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1991.tif
-NEUS_SPR_IDW_Cancer_irroratus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1992.tif
-NEUS_SPR_IDW_Cancer_irroratus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1993.tif
-NEUS_SPR_IDW_Cancer_irroratus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1994.tif
-NEUS_SPR_IDW_Cancer_irroratus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1995.tif
-NEUS_SPR_IDW_Cancer_irroratus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1996.tif
-NEUS_SPR_IDW_Cancer_irroratus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1997.tif
-NEUS_SPR_IDW_Cancer_irroratus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1998.tif
-NEUS_SPR_IDW_Cancer_irroratus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_1999.tif
-NEUS_SPR_IDW_Cancer_irroratus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2000.tif
-NEUS_SPR_IDW_Cancer_irroratus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2001.tif
-NEUS_SPR_IDW_Cancer_irroratus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2002.tif
-NEUS_SPR_IDW_Cancer_irroratus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2003.tif
-NEUS_SPR_IDW_Cancer_irroratus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2004.tif
-NEUS_SPR_IDW_Cancer_irroratus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2005.tif
-NEUS_SPR_IDW_Cancer_irroratus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2006.tif
-NEUS_SPR_IDW_Cancer_irroratus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2007.tif
-NEUS_SPR_IDW_Cancer_irroratus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2008.tif
-NEUS_SPR_IDW_Cancer_irroratus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2009.tif
-NEUS_SPR_IDW_Cancer_irroratus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2010.tif
-NEUS_SPR_IDW_Cancer_irroratus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2011.tif
-NEUS_SPR_IDW_Cancer_irroratus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2012.tif
-NEUS_SPR_IDW_Cancer_irroratus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2013.tif
-NEUS_SPR_IDW_Cancer_irroratus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2015.tif
-NEUS_SPR_IDW_Cancer_irroratus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2016.tif
-NEUS_SPR_IDW_Cancer_irroratus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2017.tif
-NEUS_SPR_IDW_Cancer_irroratus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2018.tif
-NEUS_SPR_IDW_Cancer_irroratus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2019.tif
-NEUS_SPR_IDW_Cancer_irroratus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2021.tif
-NEUS_SPR_IDW_Cancer_irroratus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2022.tif
-NEUS_SPR_IDW_Cancer_irroratus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Cancer irroratus\NEUS_SPR_IDW_Cancer_irroratus_2024.tif
-NEUS_SPR_IDW_Centropristis_striata_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1974.tif
-NEUS_SPR_IDW_Centropristis_striata_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1976.tif
-NEUS_SPR_IDW_Centropristis_striata_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1977.tif
-NEUS_SPR_IDW_Centropristis_striata_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1978.tif
-NEUS_SPR_IDW_Centropristis_striata_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1979.tif
-NEUS_SPR_IDW_Centropristis_striata_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1980.tif
-NEUS_SPR_IDW_Centropristis_striata_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1981.tif
-NEUS_SPR_IDW_Centropristis_striata_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1982.tif
-NEUS_SPR_IDW_Centropristis_striata_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1983.tif
-NEUS_SPR_IDW_Centropristis_striata_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1984.tif
-NEUS_SPR_IDW_Centropristis_striata_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1985.tif
-NEUS_SPR_IDW_Centropristis_striata_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1986.tif
-NEUS_SPR_IDW_Centropristis_striata_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1987.tif
-NEUS_SPR_IDW_Centropristis_striata_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1988.tif
-NEUS_SPR_IDW_Centropristis_striata_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1989.tif
-NEUS_SPR_IDW_Centropristis_striata_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1990.tif
-NEUS_SPR_IDW_Centropristis_striata_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1991.tif
-NEUS_SPR_IDW_Centropristis_striata_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1992.tif
-NEUS_SPR_IDW_Centropristis_striata_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1993.tif
-NEUS_SPR_IDW_Centropristis_striata_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1994.tif
-NEUS_SPR_IDW_Centropristis_striata_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1995.tif
-NEUS_SPR_IDW_Centropristis_striata_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1996.tif
-NEUS_SPR_IDW_Centropristis_striata_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1997.tif
-NEUS_SPR_IDW_Centropristis_striata_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1998.tif
-NEUS_SPR_IDW_Centropristis_striata_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_1999.tif
-NEUS_SPR_IDW_Centropristis_striata_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2000.tif
-NEUS_SPR_IDW_Centropristis_striata_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2001.tif
-NEUS_SPR_IDW_Centropristis_striata_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2002.tif
-NEUS_SPR_IDW_Centropristis_striata_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2003.tif
-NEUS_SPR_IDW_Centropristis_striata_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2004.tif
-NEUS_SPR_IDW_Centropristis_striata_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2005.tif
-NEUS_SPR_IDW_Centropristis_striata_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2006.tif
-NEUS_SPR_IDW_Centropristis_striata_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2007.tif
-NEUS_SPR_IDW_Centropristis_striata_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2008.tif
-NEUS_SPR_IDW_Centropristis_striata_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2009.tif
-NEUS_SPR_IDW_Centropristis_striata_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2010.tif
-NEUS_SPR_IDW_Centropristis_striata_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2011.tif
-NEUS_SPR_IDW_Centropristis_striata_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2012.tif
-NEUS_SPR_IDW_Centropristis_striata_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2013.tif
-NEUS_SPR_IDW_Centropristis_striata_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2015.tif
-NEUS_SPR_IDW_Centropristis_striata_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2016.tif
-NEUS_SPR_IDW_Centropristis_striata_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2017.tif
-NEUS_SPR_IDW_Centropristis_striata_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2018.tif
-NEUS_SPR_IDW_Centropristis_striata_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2019.tif
-NEUS_SPR_IDW_Centropristis_striata_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2021.tif
-NEUS_SPR_IDW_Centropristis_striata_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2022.tif
-NEUS_SPR_IDW_Centropristis_striata_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Centropristis striata\NEUS_SPR_IDW_Centropristis_striata_2024.tif
-NEUS_SPR_IDW_Clupea_harengus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1974.tif
-NEUS_SPR_IDW_Clupea_harengus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1976.tif
-NEUS_SPR_IDW_Clupea_harengus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1977.tif
-NEUS_SPR_IDW_Clupea_harengus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1978.tif
-NEUS_SPR_IDW_Clupea_harengus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1979.tif
-NEUS_SPR_IDW_Clupea_harengus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1980.tif
-NEUS_SPR_IDW_Clupea_harengus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1981.tif
-NEUS_SPR_IDW_Clupea_harengus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1982.tif
-NEUS_SPR_IDW_Clupea_harengus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1983.tif
-NEUS_SPR_IDW_Clupea_harengus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1984.tif
-NEUS_SPR_IDW_Clupea_harengus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1985.tif
-NEUS_SPR_IDW_Clupea_harengus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1986.tif
-NEUS_SPR_IDW_Clupea_harengus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1987.tif
-NEUS_SPR_IDW_Clupea_harengus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1988.tif
-NEUS_SPR_IDW_Clupea_harengus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1989.tif
-NEUS_SPR_IDW_Clupea_harengus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1990.tif
-NEUS_SPR_IDW_Clupea_harengus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1991.tif
-NEUS_SPR_IDW_Clupea_harengus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1992.tif
-NEUS_SPR_IDW_Clupea_harengus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1993.tif
-NEUS_SPR_IDW_Clupea_harengus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1994.tif
-NEUS_SPR_IDW_Clupea_harengus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1995.tif
-NEUS_SPR_IDW_Clupea_harengus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1996.tif
-NEUS_SPR_IDW_Clupea_harengus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1997.tif
-NEUS_SPR_IDW_Clupea_harengus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1998.tif
-NEUS_SPR_IDW_Clupea_harengus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_1999.tif
-NEUS_SPR_IDW_Clupea_harengus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2000.tif
-NEUS_SPR_IDW_Clupea_harengus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2001.tif
-NEUS_SPR_IDW_Clupea_harengus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2002.tif
-NEUS_SPR_IDW_Clupea_harengus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2003.tif
-NEUS_SPR_IDW_Clupea_harengus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2004.tif
-NEUS_SPR_IDW_Clupea_harengus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2005.tif
-NEUS_SPR_IDW_Clupea_harengus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2006.tif
-NEUS_SPR_IDW_Clupea_harengus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2007.tif
-NEUS_SPR_IDW_Clupea_harengus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2008.tif
-NEUS_SPR_IDW_Clupea_harengus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2009.tif
-NEUS_SPR_IDW_Clupea_harengus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2010.tif
-NEUS_SPR_IDW_Clupea_harengus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2011.tif
-NEUS_SPR_IDW_Clupea_harengus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2012.tif
-NEUS_SPR_IDW_Clupea_harengus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2013.tif
-NEUS_SPR_IDW_Clupea_harengus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2015.tif
-NEUS_SPR_IDW_Clupea_harengus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2016.tif
-NEUS_SPR_IDW_Clupea_harengus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2017.tif
-NEUS_SPR_IDW_Clupea_harengus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2018.tif
-NEUS_SPR_IDW_Clupea_harengus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2019.tif
-NEUS_SPR_IDW_Clupea_harengus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2021.tif
-NEUS_SPR_IDW_Clupea_harengus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2022.tif
-NEUS_SPR_IDW_Clupea_harengus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Clupea harengus\NEUS_SPR_IDW_Clupea_harengus_2024.tif
-NEUS_SPR_IDW_Dipturus_laevis_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1974.tif
-NEUS_SPR_IDW_Dipturus_laevis_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1976.tif
-NEUS_SPR_IDW_Dipturus_laevis_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1977.tif
-NEUS_SPR_IDW_Dipturus_laevis_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1978.tif
-NEUS_SPR_IDW_Dipturus_laevis_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1979.tif
-NEUS_SPR_IDW_Dipturus_laevis_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1980.tif
-NEUS_SPR_IDW_Dipturus_laevis_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1981.tif
-NEUS_SPR_IDW_Dipturus_laevis_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1982.tif
-NEUS_SPR_IDW_Dipturus_laevis_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1983.tif
-NEUS_SPR_IDW_Dipturus_laevis_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1984.tif
-NEUS_SPR_IDW_Dipturus_laevis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1985.tif
-NEUS_SPR_IDW_Dipturus_laevis_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1986.tif
-NEUS_SPR_IDW_Dipturus_laevis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1987.tif
-NEUS_SPR_IDW_Dipturus_laevis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1988.tif
-NEUS_SPR_IDW_Dipturus_laevis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1989.tif
-NEUS_SPR_IDW_Dipturus_laevis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1990.tif
-NEUS_SPR_IDW_Dipturus_laevis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1991.tif
-NEUS_SPR_IDW_Dipturus_laevis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1992.tif
-NEUS_SPR_IDW_Dipturus_laevis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1993.tif
-NEUS_SPR_IDW_Dipturus_laevis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1994.tif
-NEUS_SPR_IDW_Dipturus_laevis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1995.tif
-NEUS_SPR_IDW_Dipturus_laevis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1996.tif
-NEUS_SPR_IDW_Dipturus_laevis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1997.tif
-NEUS_SPR_IDW_Dipturus_laevis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1998.tif
-NEUS_SPR_IDW_Dipturus_laevis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_1999.tif
-NEUS_SPR_IDW_Dipturus_laevis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_2000.tif
-NEUS_SPR_IDW_Dipturus_laevis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_2001.tif
-NEUS_SPR_IDW_Dipturus_laevis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_2002.tif
-NEUS_SPR_IDW_Dipturus_laevis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_2003.tif
-NEUS_SPR_IDW_Dipturus_laevis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_2004.tif
-NEUS_SPR_IDW_Dipturus_laevis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_2005.tif
-NEUS_SPR_IDW_Dipturus_laevis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_2006.tif
-NEUS_SPR_IDW_Dipturus_laevis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_2007.tif
-NEUS_SPR_IDW_Dipturus_laevis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_2008.tif
-NEUS_SPR_IDW_Dipturus_laevis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_2009.tif
-NEUS_SPR_IDW_Dipturus_laevis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_2010.tif
-NEUS_SPR_IDW_Dipturus_laevis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_2011.tif
-NEUS_SPR_IDW_Dipturus_laevis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_2012.tif
-NEUS_SPR_IDW_Dipturus_laevis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:47:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_2013.tif
-NEUS_SPR_IDW_Dipturus_laevis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_2015.tif
-NEUS_SPR_IDW_Dipturus_laevis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_2016.tif
-NEUS_SPR_IDW_Dipturus_laevis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_2017.tif
-NEUS_SPR_IDW_Dipturus_laevis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_2018.tif
-NEUS_SPR_IDW_Dipturus_laevis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_2019.tif
-NEUS_SPR_IDW_Dipturus_laevis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_2021.tif
-NEUS_SPR_IDW_Dipturus_laevis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_2022.tif
-NEUS_SPR_IDW_Dipturus_laevis_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Dipturus laevis\NEUS_SPR_IDW_Dipturus_laevis_2024.tif
-NEUS_SPR_IDW_Gadus_morhua_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1974.tif
-NEUS_SPR_IDW_Gadus_morhua_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1976.tif
-NEUS_SPR_IDW_Gadus_morhua_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1977.tif
-NEUS_SPR_IDW_Gadus_morhua_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1978.tif
-NEUS_SPR_IDW_Gadus_morhua_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1979.tif
-NEUS_SPR_IDW_Gadus_morhua_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1980.tif
-NEUS_SPR_IDW_Gadus_morhua_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1981.tif
-NEUS_SPR_IDW_Gadus_morhua_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1982.tif
-NEUS_SPR_IDW_Gadus_morhua_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1983.tif
-NEUS_SPR_IDW_Gadus_morhua_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1984.tif
-NEUS_SPR_IDW_Gadus_morhua_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1985.tif
-NEUS_SPR_IDW_Gadus_morhua_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1986.tif
-NEUS_SPR_IDW_Gadus_morhua_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1987.tif
-NEUS_SPR_IDW_Gadus_morhua_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1988.tif
-NEUS_SPR_IDW_Gadus_morhua_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1989.tif
-NEUS_SPR_IDW_Gadus_morhua_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1990.tif
-NEUS_SPR_IDW_Gadus_morhua_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1991.tif
-NEUS_SPR_IDW_Gadus_morhua_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1992.tif
-NEUS_SPR_IDW_Gadus_morhua_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1993.tif
-NEUS_SPR_IDW_Gadus_morhua_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1994.tif
-NEUS_SPR_IDW_Gadus_morhua_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1995.tif
-NEUS_SPR_IDW_Gadus_morhua_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1996.tif
-NEUS_SPR_IDW_Gadus_morhua_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1997.tif
-NEUS_SPR_IDW_Gadus_morhua_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1998.tif
-NEUS_SPR_IDW_Gadus_morhua_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_1999.tif
-NEUS_SPR_IDW_Gadus_morhua_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2000.tif
-NEUS_SPR_IDW_Gadus_morhua_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2001.tif
-NEUS_SPR_IDW_Gadus_morhua_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2002.tif
-NEUS_SPR_IDW_Gadus_morhua_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2003.tif
-NEUS_SPR_IDW_Gadus_morhua_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2004.tif
-NEUS_SPR_IDW_Gadus_morhua_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2005.tif
-NEUS_SPR_IDW_Gadus_morhua_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2006.tif
-NEUS_SPR_IDW_Gadus_morhua_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2007.tif
-NEUS_SPR_IDW_Gadus_morhua_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2008.tif
-NEUS_SPR_IDW_Gadus_morhua_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2009.tif
-NEUS_SPR_IDW_Gadus_morhua_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2010.tif
-NEUS_SPR_IDW_Gadus_morhua_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2011.tif
-NEUS_SPR_IDW_Gadus_morhua_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2012.tif
-NEUS_SPR_IDW_Gadus_morhua_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2013.tif
-NEUS_SPR_IDW_Gadus_morhua_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2015.tif
-NEUS_SPR_IDW_Gadus_morhua_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2016.tif
-NEUS_SPR_IDW_Gadus_morhua_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2017.tif
-NEUS_SPR_IDW_Gadus_morhua_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2018.tif
-NEUS_SPR_IDW_Gadus_morhua_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2019.tif
-NEUS_SPR_IDW_Gadus_morhua_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2021.tif
-NEUS_SPR_IDW_Gadus_morhua_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2022.tif
-NEUS_SPR_IDW_Gadus_morhua_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Gadus morhua\NEUS_SPR_IDW_Gadus_morhua_2024.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1974.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1976.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1977.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1978.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1979.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1980.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1981.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1982.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1983.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1984.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1985.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1986.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1987.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1988.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1989.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1990.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1991.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1992.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1993.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1994.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1995.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1996.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1997.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1998.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_1999.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2000.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2001.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2002.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2003.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2004.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2005.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2006.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2007.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2008.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2009.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2010.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2011.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2012.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2013.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2015.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2016.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2017.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2018.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2019.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2021.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2022.tif
-NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Glyptocephalus cynoglossus\NEUS_SPR_IDW_Glyptocephalus_cynoglossus_2024.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1974.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1976.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1977.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1978.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1979.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1980.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1981.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1982.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1983.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1984.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1985.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1986.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1987.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1988.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1989.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1990.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1991.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1992.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1993.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1994.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1995.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1996.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1997.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1998.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_1999.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2000.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2001.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2002.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2003.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2004.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2005.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2006.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2007.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2008.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2009.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2010.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2011.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2012.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2013.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2015.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2016.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2017.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2018.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2019.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2021.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2022.tif
-NEUS_SPR_IDW_Hemitripterus_americanus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hemitripterus americanus\NEUS_SPR_IDW_Hemitripterus_americanus_2024.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1974.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1976.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1977.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1978.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1979.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1980.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1981.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1982.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1983.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1984.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1985.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1986.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1987.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1988.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1989.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1990.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1991.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1992.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1993.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1994.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1995.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1996.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1997.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1998.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_1999.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2000.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2001.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2002.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2003.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2004.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2005.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2006.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2007.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2008.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2009.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2010.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2011.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2012.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2013.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2015.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2016.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2017.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2018.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2019.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2021.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2022.tif
-NEUS_SPR_IDW_Hippoglossoides_platessoides_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossoides platessoides\NEUS_SPR_IDW_Hippoglossoides_platessoides_2024.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1974.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1976.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1977.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1978.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1979.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1980.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1981.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1982.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1983.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1984.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1985.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1986.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1987.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1988.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1989.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1990.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1991.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1992.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1993.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1994.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1995.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1996.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1997.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1998.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_1999.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_2000.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_2001.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_2002.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_2003.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_2004.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_2005.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_2006.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_2007.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_2008.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_2009.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_2010.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_2011.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_2012.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_2013.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_2015.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_2016.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_2017.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_2018.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_2019.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_2021.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_2022.tif
-NEUS_SPR_IDW_Hippoglossus_hippoglossus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:41:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Hippoglossus hippoglossus\NEUS_SPR_IDW_Hippoglossus_hippoglossus_2024.tif
-NEUS_SPR_IDW_Homarus_americanus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1974.tif
-NEUS_SPR_IDW_Homarus_americanus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1976.tif
-NEUS_SPR_IDW_Homarus_americanus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1977.tif
-NEUS_SPR_IDW_Homarus_americanus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1978.tif
-NEUS_SPR_IDW_Homarus_americanus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1979.tif
-NEUS_SPR_IDW_Homarus_americanus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1980.tif
-NEUS_SPR_IDW_Homarus_americanus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1981.tif
-NEUS_SPR_IDW_Homarus_americanus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1982.tif
-NEUS_SPR_IDW_Homarus_americanus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1983.tif
-NEUS_SPR_IDW_Homarus_americanus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1984.tif
-NEUS_SPR_IDW_Homarus_americanus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1985.tif
-NEUS_SPR_IDW_Homarus_americanus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1986.tif
-NEUS_SPR_IDW_Homarus_americanus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1987.tif
-NEUS_SPR_IDW_Homarus_americanus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1988.tif
-NEUS_SPR_IDW_Homarus_americanus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1989.tif
-NEUS_SPR_IDW_Homarus_americanus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1990.tif
-NEUS_SPR_IDW_Homarus_americanus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1991.tif
-NEUS_SPR_IDW_Homarus_americanus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1992.tif
-NEUS_SPR_IDW_Homarus_americanus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1993.tif
-NEUS_SPR_IDW_Homarus_americanus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1994.tif
-NEUS_SPR_IDW_Homarus_americanus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1995.tif
-NEUS_SPR_IDW_Homarus_americanus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1996.tif
-NEUS_SPR_IDW_Homarus_americanus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1997.tif
-NEUS_SPR_IDW_Homarus_americanus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1998.tif
-NEUS_SPR_IDW_Homarus_americanus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_1999.tif
-NEUS_SPR_IDW_Homarus_americanus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2000.tif
-NEUS_SPR_IDW_Homarus_americanus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2001.tif
-NEUS_SPR_IDW_Homarus_americanus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2002.tif
-NEUS_SPR_IDW_Homarus_americanus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2003.tif
-NEUS_SPR_IDW_Homarus_americanus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2004.tif
-NEUS_SPR_IDW_Homarus_americanus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2005.tif
-NEUS_SPR_IDW_Homarus_americanus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2006.tif
-NEUS_SPR_IDW_Homarus_americanus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2007.tif
-NEUS_SPR_IDW_Homarus_americanus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2008.tif
-NEUS_SPR_IDW_Homarus_americanus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2009.tif
-NEUS_SPR_IDW_Homarus_americanus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2010.tif
-NEUS_SPR_IDW_Homarus_americanus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2011.tif
-NEUS_SPR_IDW_Homarus_americanus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2012.tif
-NEUS_SPR_IDW_Homarus_americanus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2013.tif
-NEUS_SPR_IDW_Homarus_americanus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2015.tif
-NEUS_SPR_IDW_Homarus_americanus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2016.tif
-NEUS_SPR_IDW_Homarus_americanus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2017.tif
-NEUS_SPR_IDW_Homarus_americanus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2018.tif
-NEUS_SPR_IDW_Homarus_americanus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2019.tif
-NEUS_SPR_IDW_Homarus_americanus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2021.tif
-NEUS_SPR_IDW_Homarus_americanus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2022.tif
-NEUS_SPR_IDW_Homarus_americanus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Homarus americanus\NEUS_SPR_IDW_Homarus_americanus_2024.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1974.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1976.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1977.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1978.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1979.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1980.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1981.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1982.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1983.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1984.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1985.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1986.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1987.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1988.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1989.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1990.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1991.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1992.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1993.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1994.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1995.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1996.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1997.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1998.tif
-NEUS_SPR_IDW_Illex_illecebrosus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_1999.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2000.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2001.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2002.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2003.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2004.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2005.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2006.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2007.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2008.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2009.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2010.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2011.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2012.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2013.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2015.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2016.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2017.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2018.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2019.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2021.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2022.tif
-NEUS_SPR_IDW_Illex_illecebrosus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Illex illecebrosus\NEUS_SPR_IDW_Illex_illecebrosus_2024.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1974.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1976.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1977.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:48:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1978.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1979.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1980.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1981.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1982.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1983.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1984.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1985.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1986.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1987.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1988.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1989.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1990.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1991.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1992.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1993.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1994.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1995.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1996.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1997.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1998.tif
-NEUS_SPR_IDW_Leucoraja_garmani_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_1999.tif
-NEUS_SPR_IDW_Leucoraja_garmani_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_2000.tif
-NEUS_SPR_IDW_Leucoraja_garmani_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_2001.tif
-NEUS_SPR_IDW_Leucoraja_garmani_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_2002.tif
-NEUS_SPR_IDW_Leucoraja_garmani_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_2003.tif
-NEUS_SPR_IDW_Leucoraja_garmani_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_2004.tif
-NEUS_SPR_IDW_Leucoraja_garmani_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_2005.tif
-NEUS_SPR_IDW_Leucoraja_garmani_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_2006.tif
-NEUS_SPR_IDW_Leucoraja_garmani_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_2007.tif
-NEUS_SPR_IDW_Leucoraja_garmani_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_2008.tif
-NEUS_SPR_IDW_Leucoraja_garmani_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_2009.tif
-NEUS_SPR_IDW_Leucoraja_garmani_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_2010.tif
-NEUS_SPR_IDW_Leucoraja_garmani_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_2011.tif
-NEUS_SPR_IDW_Leucoraja_garmani_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_2012.tif
-NEUS_SPR_IDW_Leucoraja_garmani_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_2013.tif
-NEUS_SPR_IDW_Leucoraja_garmani_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_2015.tif
-NEUS_SPR_IDW_Leucoraja_garmani_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_2016.tif
-NEUS_SPR_IDW_Leucoraja_garmani_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_2017.tif
-NEUS_SPR_IDW_Leucoraja_garmani_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_2018.tif
-NEUS_SPR_IDW_Leucoraja_garmani_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_2019.tif
-NEUS_SPR_IDW_Leucoraja_garmani_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_2021.tif
-NEUS_SPR_IDW_Leucoraja_garmani_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_2022.tif
-NEUS_SPR_IDW_Leucoraja_garmani_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja garmani\NEUS_SPR_IDW_Leucoraja_garmani_2024.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1974.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1976.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1977.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1978.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1979.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1980.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1981.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1982.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1983.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1984.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1985.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1986.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1987.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1988.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1989.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1990.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1991.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1992.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1993.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1994.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1995.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1996.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1997.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1998.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_1999.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2000.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2001.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2002.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2003.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2004.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2005.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2006.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2007.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2008.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2009.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2010.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2011.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2012.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2013.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2015.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2016.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2017.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2018.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2019.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2021.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2022.tif
-NEUS_SPR_IDW_Leucoraja_ocellata_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Leucoraja ocellata\NEUS_SPR_IDW_Leucoraja_ocellata_2024.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1974.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1976.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1977.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1978.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1979.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1980.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1981.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1982.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1983.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1984.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1985.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1986.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1987.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1988.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1989.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1990.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1991.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1992.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1993.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1994.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1995.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1996.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1997.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1998.tif
-NEUS_SPR_IDW_Limulus_polyphemus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_1999.tif
-NEUS_SPR_IDW_Limulus_polyphemus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_2000.tif
-NEUS_SPR_IDW_Limulus_polyphemus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_2001.tif
-NEUS_SPR_IDW_Limulus_polyphemus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_2002.tif
-NEUS_SPR_IDW_Limulus_polyphemus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_2003.tif
-NEUS_SPR_IDW_Limulus_polyphemus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_2004.tif
-NEUS_SPR_IDW_Limulus_polyphemus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_2005.tif
-NEUS_SPR_IDW_Limulus_polyphemus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_2006.tif
-NEUS_SPR_IDW_Limulus_polyphemus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_2007.tif
-NEUS_SPR_IDW_Limulus_polyphemus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_2008.tif
-NEUS_SPR_IDW_Limulus_polyphemus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_2009.tif
-NEUS_SPR_IDW_Limulus_polyphemus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_2010.tif
-NEUS_SPR_IDW_Limulus_polyphemus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_2011.tif
-NEUS_SPR_IDW_Limulus_polyphemus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_2012.tif
-NEUS_SPR_IDW_Limulus_polyphemus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_2013.tif
-NEUS_SPR_IDW_Limulus_polyphemus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_2015.tif
-NEUS_SPR_IDW_Limulus_polyphemus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_2016.tif
-NEUS_SPR_IDW_Limulus_polyphemus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_2017.tif
-NEUS_SPR_IDW_Limulus_polyphemus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_2018.tif
-NEUS_SPR_IDW_Limulus_polyphemus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_2019.tif
-NEUS_SPR_IDW_Limulus_polyphemus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_2021.tif
-NEUS_SPR_IDW_Limulus_polyphemus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_2022.tif
-NEUS_SPR_IDW_Limulus_polyphemus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Limulus polyphemus\NEUS_SPR_IDW_Limulus_polyphemus_2024.tif
-NEUS_SPR_IDW_Lophius_americanus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1974.tif
-NEUS_SPR_IDW_Lophius_americanus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1976.tif
-NEUS_SPR_IDW_Lophius_americanus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1977.tif
-NEUS_SPR_IDW_Lophius_americanus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1978.tif
-NEUS_SPR_IDW_Lophius_americanus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1979.tif
-NEUS_SPR_IDW_Lophius_americanus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1980.tif
-NEUS_SPR_IDW_Lophius_americanus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1981.tif
-NEUS_SPR_IDW_Lophius_americanus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1982.tif
-NEUS_SPR_IDW_Lophius_americanus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1983.tif
-NEUS_SPR_IDW_Lophius_americanus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1984.tif
-NEUS_SPR_IDW_Lophius_americanus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1985.tif
-NEUS_SPR_IDW_Lophius_americanus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1986.tif
-NEUS_SPR_IDW_Lophius_americanus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1987.tif
-NEUS_SPR_IDW_Lophius_americanus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1988.tif
-NEUS_SPR_IDW_Lophius_americanus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1989.tif
-NEUS_SPR_IDW_Lophius_americanus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1990.tif
-NEUS_SPR_IDW_Lophius_americanus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1991.tif
-NEUS_SPR_IDW_Lophius_americanus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1992.tif
-NEUS_SPR_IDW_Lophius_americanus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1993.tif
-NEUS_SPR_IDW_Lophius_americanus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1994.tif
-NEUS_SPR_IDW_Lophius_americanus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1995.tif
-NEUS_SPR_IDW_Lophius_americanus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1996.tif
-NEUS_SPR_IDW_Lophius_americanus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1997.tif
-NEUS_SPR_IDW_Lophius_americanus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1998.tif
-NEUS_SPR_IDW_Lophius_americanus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_1999.tif
-NEUS_SPR_IDW_Lophius_americanus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2000.tif
-NEUS_SPR_IDW_Lophius_americanus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2001.tif
-NEUS_SPR_IDW_Lophius_americanus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2002.tif
-NEUS_SPR_IDW_Lophius_americanus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2003.tif
-NEUS_SPR_IDW_Lophius_americanus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2004.tif
-NEUS_SPR_IDW_Lophius_americanus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2005.tif
-NEUS_SPR_IDW_Lophius_americanus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2006.tif
-NEUS_SPR_IDW_Lophius_americanus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2007.tif
-NEUS_SPR_IDW_Lophius_americanus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2008.tif
-NEUS_SPR_IDW_Lophius_americanus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2009.tif
-NEUS_SPR_IDW_Lophius_americanus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2010.tif
-NEUS_SPR_IDW_Lophius_americanus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2011.tif
-NEUS_SPR_IDW_Lophius_americanus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2012.tif
-NEUS_SPR_IDW_Lophius_americanus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2013.tif
-NEUS_SPR_IDW_Lophius_americanus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2015.tif
-NEUS_SPR_IDW_Lophius_americanus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2016.tif
-NEUS_SPR_IDW_Lophius_americanus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2017.tif
-NEUS_SPR_IDW_Lophius_americanus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2018.tif
-NEUS_SPR_IDW_Lophius_americanus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2019.tif
-NEUS_SPR_IDW_Lophius_americanus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2021.tif
-NEUS_SPR_IDW_Lophius_americanus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2022.tif
-NEUS_SPR_IDW_Lophius_americanus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Lophius americanus\NEUS_SPR_IDW_Lophius_americanus_2024.tif
-NEUS_SPR_IDW_Malacoraja_senta_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1974.tif
-NEUS_SPR_IDW_Malacoraja_senta_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1976.tif
-NEUS_SPR_IDW_Malacoraja_senta_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1977.tif
-NEUS_SPR_IDW_Malacoraja_senta_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1978.tif
-NEUS_SPR_IDW_Malacoraja_senta_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1979.tif
-NEUS_SPR_IDW_Malacoraja_senta_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1980.tif
-NEUS_SPR_IDW_Malacoraja_senta_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1981.tif
-NEUS_SPR_IDW_Malacoraja_senta_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1982.tif
-NEUS_SPR_IDW_Malacoraja_senta_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1983.tif
-NEUS_SPR_IDW_Malacoraja_senta_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1984.tif
-NEUS_SPR_IDW_Malacoraja_senta_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1985.tif
-NEUS_SPR_IDW_Malacoraja_senta_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1986.tif
-NEUS_SPR_IDW_Malacoraja_senta_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1987.tif
-NEUS_SPR_IDW_Malacoraja_senta_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1988.tif
-NEUS_SPR_IDW_Malacoraja_senta_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1989.tif
-NEUS_SPR_IDW_Malacoraja_senta_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1990.tif
-NEUS_SPR_IDW_Malacoraja_senta_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1991.tif
-NEUS_SPR_IDW_Malacoraja_senta_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1992.tif
-NEUS_SPR_IDW_Malacoraja_senta_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1993.tif
-NEUS_SPR_IDW_Malacoraja_senta_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1994.tif
-NEUS_SPR_IDW_Malacoraja_senta_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1995.tif
-NEUS_SPR_IDW_Malacoraja_senta_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1996.tif
-NEUS_SPR_IDW_Malacoraja_senta_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1997.tif
-NEUS_SPR_IDW_Malacoraja_senta_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1998.tif
-NEUS_SPR_IDW_Malacoraja_senta_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_1999.tif
-NEUS_SPR_IDW_Malacoraja_senta_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2000.tif
-NEUS_SPR_IDW_Malacoraja_senta_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2001.tif
-NEUS_SPR_IDW_Malacoraja_senta_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2002.tif
-NEUS_SPR_IDW_Malacoraja_senta_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2003.tif
-NEUS_SPR_IDW_Malacoraja_senta_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2004.tif
-NEUS_SPR_IDW_Malacoraja_senta_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2005.tif
-NEUS_SPR_IDW_Malacoraja_senta_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2006.tif
-NEUS_SPR_IDW_Malacoraja_senta_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2007.tif
-NEUS_SPR_IDW_Malacoraja_senta_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2008.tif
-NEUS_SPR_IDW_Malacoraja_senta_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2009.tif
-NEUS_SPR_IDW_Malacoraja_senta_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2010.tif
-NEUS_SPR_IDW_Malacoraja_senta_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2011.tif
-NEUS_SPR_IDW_Malacoraja_senta_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2012.tif
-NEUS_SPR_IDW_Malacoraja_senta_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2013.tif
-NEUS_SPR_IDW_Malacoraja_senta_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2015.tif
-NEUS_SPR_IDW_Malacoraja_senta_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2016.tif
-NEUS_SPR_IDW_Malacoraja_senta_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2017.tif
-NEUS_SPR_IDW_Malacoraja_senta_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2018.tif
-NEUS_SPR_IDW_Malacoraja_senta_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2019.tif
-NEUS_SPR_IDW_Malacoraja_senta_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2021.tif
-NEUS_SPR_IDW_Malacoraja_senta_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2022.tif
-NEUS_SPR_IDW_Malacoraja_senta_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:44,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Malacoraja senta\NEUS_SPR_IDW_Malacoraja_senta_2024.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1974.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1976.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1977.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1978.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1979.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1980.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1981.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1982.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1983.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1984.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1985.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1986.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1987.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1988.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1989.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1990.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1991.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1992.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1993.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1994.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1995.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1996.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1997.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1998.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_1999.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2000.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2001.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2002.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2003.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2004.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2005.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2006.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2007.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2008.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2009.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2010.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2011.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2012.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2013.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2015.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2016.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2017.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2018.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2019.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2021.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2022.tif
-NEUS_SPR_IDW_Melanogrammus_aeglefinus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Melanogrammus aeglefinus\NEUS_SPR_IDW_Melanogrammus_aeglefinus_2024.tif
-NEUS_SPR_IDW_Merluccius_albidus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1974.tif
-NEUS_SPR_IDW_Merluccius_albidus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1976.tif
-NEUS_SPR_IDW_Merluccius_albidus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1977.tif
-NEUS_SPR_IDW_Merluccius_albidus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1978.tif
-NEUS_SPR_IDW_Merluccius_albidus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1979.tif
-NEUS_SPR_IDW_Merluccius_albidus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1980.tif
-NEUS_SPR_IDW_Merluccius_albidus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1981.tif
-NEUS_SPR_IDW_Merluccius_albidus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1982.tif
-NEUS_SPR_IDW_Merluccius_albidus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1983.tif
-NEUS_SPR_IDW_Merluccius_albidus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1984.tif
-NEUS_SPR_IDW_Merluccius_albidus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1985.tif
-NEUS_SPR_IDW_Merluccius_albidus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1986.tif
-NEUS_SPR_IDW_Merluccius_albidus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1987.tif
-NEUS_SPR_IDW_Merluccius_albidus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1988.tif
-NEUS_SPR_IDW_Merluccius_albidus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1989.tif
-NEUS_SPR_IDW_Merluccius_albidus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1990.tif
-NEUS_SPR_IDW_Merluccius_albidus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1991.tif
-NEUS_SPR_IDW_Merluccius_albidus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1992.tif
-NEUS_SPR_IDW_Merluccius_albidus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1993.tif
-NEUS_SPR_IDW_Merluccius_albidus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1994.tif
-NEUS_SPR_IDW_Merluccius_albidus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1995.tif
-NEUS_SPR_IDW_Merluccius_albidus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1996.tif
-NEUS_SPR_IDW_Merluccius_albidus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1997.tif
-NEUS_SPR_IDW_Merluccius_albidus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1998.tif
-NEUS_SPR_IDW_Merluccius_albidus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_1999.tif
-NEUS_SPR_IDW_Merluccius_albidus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_2000.tif
-NEUS_SPR_IDW_Merluccius_albidus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_2001.tif
-NEUS_SPR_IDW_Merluccius_albidus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_2002.tif
-NEUS_SPR_IDW_Merluccius_albidus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_2003.tif
-NEUS_SPR_IDW_Merluccius_albidus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_2004.tif
-NEUS_SPR_IDW_Merluccius_albidus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_2005.tif
-NEUS_SPR_IDW_Merluccius_albidus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_2006.tif
-NEUS_SPR_IDW_Merluccius_albidus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_2007.tif
-NEUS_SPR_IDW_Merluccius_albidus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_2008.tif
-NEUS_SPR_IDW_Merluccius_albidus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_2009.tif
-NEUS_SPR_IDW_Merluccius_albidus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_2010.tif
-NEUS_SPR_IDW_Merluccius_albidus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_2011.tif
-NEUS_SPR_IDW_Merluccius_albidus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_2012.tif
-NEUS_SPR_IDW_Merluccius_albidus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_2013.tif
-NEUS_SPR_IDW_Merluccius_albidus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_2015.tif
-NEUS_SPR_IDW_Merluccius_albidus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_2016.tif
-NEUS_SPR_IDW_Merluccius_albidus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_2017.tif
-NEUS_SPR_IDW_Merluccius_albidus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_2018.tif
-NEUS_SPR_IDW_Merluccius_albidus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_2019.tif
-NEUS_SPR_IDW_Merluccius_albidus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_2021.tif
-NEUS_SPR_IDW_Merluccius_albidus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_2022.tif
-NEUS_SPR_IDW_Merluccius_albidus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:42:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius albidus\NEUS_SPR_IDW_Merluccius_albidus_2024.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1974.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1976.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1977.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1978.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1979.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1980.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1981.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1982.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1983.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1984.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1985.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1986.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1987.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1988.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1989.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:49:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1990.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1991.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1992.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1993.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1994.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1995.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1996.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1997.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1998.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_1999.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2000.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2001.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2002.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2003.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2004.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2005.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2006.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2007.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2008.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2009.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2010.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2011.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2012.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2013.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2015.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2016.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2017.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2018.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2019.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2021.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2022.tif
-NEUS_SPR_IDW_Merluccius_bilinearis_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Merluccius bilinearis\NEUS_SPR_IDW_Merluccius_bilinearis_2024.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1974.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1976.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1977.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1978.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1979.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1980.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1981.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1982.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1983.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1984.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1985.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1986.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1987.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1988.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1989.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1990.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1991.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1992.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1993.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1994.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1995.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1996.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1997.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1998.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_1999.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_2000.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_2001.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_2002.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_2003.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_2004.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_2005.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_2006.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_2007.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_2008.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_2009.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_2010.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_2011.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_2012.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_2013.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_2015.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_2016.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_2017.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_2018.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_2019.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_2021.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_2022.tif
-NEUS_SPR_IDW_Micropogonias_undulatus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-10 22:43:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Micropogonias undulatus\NEUS_SPR_IDW_Micropogonias_undulatus_2024.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1974.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1976.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1977.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1978.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1979.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1980.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1981.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1982.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1983.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1984.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1985.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1986.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1987.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1988.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1989.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1990.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1991.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1992.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1993.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1994.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1995.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1996.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1997.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1998.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_1999.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2000.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2001.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2002.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2003.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2004.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2005.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2006.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2007.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2008.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2009.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2010.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2011.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2012.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2013.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2015.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2016.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2017.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2018.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2019.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2021.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2022.tif
-NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Myoxocephalus octodecemspinosus\NEUS_SPR_IDW_Myoxocephalus_octodecemspinosus_2024.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1974.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1976.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1977.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1978.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1979.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1980.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1981.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1982.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1983.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1984.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1985.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1986.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1987.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1988.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1989.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1990.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1991.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1992.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1993.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1994.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1995.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1996.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1997.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1998.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_1999.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2000.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2001.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2002.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2003.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2004.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2005.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2006.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2007.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2008.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2009.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2010.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2011.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2012.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2013.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2015.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2016.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2017.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2018.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2019.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2021.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2022.tif
-NEUS_SPR_IDW_Paralichthys_dentatus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Paralichthys dentatus\NEUS_SPR_IDW_Paralichthys_dentatus_2024.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1974.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1976.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1977.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1978.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1979.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1980.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1981.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1982.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1983.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1984.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1985.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1986.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1987.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1988.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1989.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1990.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1991.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1992.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1993.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1994.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1995.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1996.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1997.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1998.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_1999.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2000.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2001.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2002.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2003.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2004.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2005.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2006.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2007.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2008.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2009.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2010.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2011.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2012.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2013.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2015.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2016.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2017.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2018.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2019.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2021.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2022.tif
-NEUS_SPR_IDW_Peprilus_triacanthus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Peprilus triacanthus\NEUS_SPR_IDW_Peprilus_triacanthus_2024.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1974.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1976.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1977.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1978.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1979.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1980.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1981.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1982.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1983.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1984.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1985.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1986.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1987.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1988.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1989.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1990.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1991.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1992.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1993.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1994.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1995.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1996.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1997.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1998.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_1999.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:50:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2000.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2001.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2002.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2003.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2004.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2005.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2006.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2007.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2008.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2009.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2010.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2011.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2012.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2013.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2015.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2016.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2017.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2018.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2019.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2021.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2022.tif
-NEUS_SPR_IDW_Placopecten_magellanicus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Placopecten magellanicus\NEUS_SPR_IDW_Placopecten_magellanicus_2024.tif
-NEUS_SPR_IDW_Pollachius_virens_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1974.tif
-NEUS_SPR_IDW_Pollachius_virens_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1976.tif
-NEUS_SPR_IDW_Pollachius_virens_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1977.tif
-NEUS_SPR_IDW_Pollachius_virens_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1978.tif
-NEUS_SPR_IDW_Pollachius_virens_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1979.tif
-NEUS_SPR_IDW_Pollachius_virens_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1980.tif
-NEUS_SPR_IDW_Pollachius_virens_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1981.tif
-NEUS_SPR_IDW_Pollachius_virens_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1982.tif
-NEUS_SPR_IDW_Pollachius_virens_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1983.tif
-NEUS_SPR_IDW_Pollachius_virens_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1984.tif
-NEUS_SPR_IDW_Pollachius_virens_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1985.tif
-NEUS_SPR_IDW_Pollachius_virens_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1986.tif
-NEUS_SPR_IDW_Pollachius_virens_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1987.tif
-NEUS_SPR_IDW_Pollachius_virens_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1988.tif
-NEUS_SPR_IDW_Pollachius_virens_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1989.tif
-NEUS_SPR_IDW_Pollachius_virens_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1990.tif
-NEUS_SPR_IDW_Pollachius_virens_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1991.tif
-NEUS_SPR_IDW_Pollachius_virens_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1992.tif
-NEUS_SPR_IDW_Pollachius_virens_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1993.tif
-NEUS_SPR_IDW_Pollachius_virens_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1994.tif
-NEUS_SPR_IDW_Pollachius_virens_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1995.tif
-NEUS_SPR_IDW_Pollachius_virens_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1996.tif
-NEUS_SPR_IDW_Pollachius_virens_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1997.tif
-NEUS_SPR_IDW_Pollachius_virens_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1998.tif
-NEUS_SPR_IDW_Pollachius_virens_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_1999.tif
-NEUS_SPR_IDW_Pollachius_virens_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2000.tif
-NEUS_SPR_IDW_Pollachius_virens_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2001.tif
-NEUS_SPR_IDW_Pollachius_virens_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2002.tif
-NEUS_SPR_IDW_Pollachius_virens_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2003.tif
-NEUS_SPR_IDW_Pollachius_virens_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2004.tif
-NEUS_SPR_IDW_Pollachius_virens_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2005.tif
-NEUS_SPR_IDW_Pollachius_virens_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2006.tif
-NEUS_SPR_IDW_Pollachius_virens_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2007.tif
-NEUS_SPR_IDW_Pollachius_virens_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2008.tif
-NEUS_SPR_IDW_Pollachius_virens_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2009.tif
-NEUS_SPR_IDW_Pollachius_virens_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2010.tif
-NEUS_SPR_IDW_Pollachius_virens_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2011.tif
-NEUS_SPR_IDW_Pollachius_virens_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2012.tif
-NEUS_SPR_IDW_Pollachius_virens_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2013.tif
-NEUS_SPR_IDW_Pollachius_virens_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2015.tif
-NEUS_SPR_IDW_Pollachius_virens_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2016.tif
-NEUS_SPR_IDW_Pollachius_virens_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2017.tif
-NEUS_SPR_IDW_Pollachius_virens_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2018.tif
-NEUS_SPR_IDW_Pollachius_virens_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2019.tif
-NEUS_SPR_IDW_Pollachius_virens_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2021.tif
-NEUS_SPR_IDW_Pollachius_virens_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2022.tif
-NEUS_SPR_IDW_Pollachius_virens_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pollachius virens\NEUS_SPR_IDW_Pollachius_virens_2024.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1974.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1976.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1977.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1978.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1979.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1980.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1981.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1982.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1983.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1984.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1985.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1986.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1987.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1988.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1989.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1990.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1991.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1992.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1993.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1994.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1995.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1996.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1997.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1998.tif
-NEUS_SPR_IDW_Prionotus_carolinus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_1999.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2000.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2001.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2002.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2003.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2004.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2005.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2006.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2007.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2008.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2009.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2010.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2011.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2012.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2013.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2015.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2016.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2017.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2018.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2019.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2021.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2022.tif
-NEUS_SPR_IDW_Prionotus_carolinus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:43,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Prionotus carolinus\NEUS_SPR_IDW_Prionotus_carolinus_2024.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1974.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1976.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1977.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1978.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1979.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1980.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1981.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1982.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1983.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1984.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1985.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1986.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1987.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1988.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1989.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1990.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1991.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1992.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1993.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1994.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1995.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1996.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1997.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1998.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_1999.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2000.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:54:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2001.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2002.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2003.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2004.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2005.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2006.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2007.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2008.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2009.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2010.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2011.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2012.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2013.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2015.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2016.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2017.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2018.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2019.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2021.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2022.tif
-NEUS_SPR_IDW_Pseudopleuronectes_americanus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Pseudopleuronectes americanus\NEUS_SPR_IDW_Pseudopleuronectes_americanus_2024.tif
-NEUS_SPR_IDW_Scomber_scombrus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1974.tif
-NEUS_SPR_IDW_Scomber_scombrus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1976.tif
-NEUS_SPR_IDW_Scomber_scombrus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1977.tif
-NEUS_SPR_IDW_Scomber_scombrus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1978.tif
-NEUS_SPR_IDW_Scomber_scombrus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1979.tif
-NEUS_SPR_IDW_Scomber_scombrus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1980.tif
-NEUS_SPR_IDW_Scomber_scombrus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1981.tif
-NEUS_SPR_IDW_Scomber_scombrus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1982.tif
-NEUS_SPR_IDW_Scomber_scombrus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1983.tif
-NEUS_SPR_IDW_Scomber_scombrus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1984.tif
-NEUS_SPR_IDW_Scomber_scombrus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1985.tif
-NEUS_SPR_IDW_Scomber_scombrus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1986.tif
-NEUS_SPR_IDW_Scomber_scombrus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1987.tif
-NEUS_SPR_IDW_Scomber_scombrus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1988.tif
-NEUS_SPR_IDW_Scomber_scombrus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1989.tif
-NEUS_SPR_IDW_Scomber_scombrus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1990.tif
-NEUS_SPR_IDW_Scomber_scombrus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1991.tif
-NEUS_SPR_IDW_Scomber_scombrus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1992.tif
-NEUS_SPR_IDW_Scomber_scombrus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1993.tif
-NEUS_SPR_IDW_Scomber_scombrus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1994.tif
-NEUS_SPR_IDW_Scomber_scombrus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1995.tif
-NEUS_SPR_IDW_Scomber_scombrus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1996.tif
-NEUS_SPR_IDW_Scomber_scombrus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1997.tif
-NEUS_SPR_IDW_Scomber_scombrus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1998.tif
-NEUS_SPR_IDW_Scomber_scombrus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_1999.tif
-NEUS_SPR_IDW_Scomber_scombrus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2000.tif
-NEUS_SPR_IDW_Scomber_scombrus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2001.tif
-NEUS_SPR_IDW_Scomber_scombrus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2002.tif
-NEUS_SPR_IDW_Scomber_scombrus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2003.tif
-NEUS_SPR_IDW_Scomber_scombrus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2004.tif
-NEUS_SPR_IDW_Scomber_scombrus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2005.tif
-NEUS_SPR_IDW_Scomber_scombrus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2006.tif
-NEUS_SPR_IDW_Scomber_scombrus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2007.tif
-NEUS_SPR_IDW_Scomber_scombrus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2008.tif
-NEUS_SPR_IDW_Scomber_scombrus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2009.tif
-NEUS_SPR_IDW_Scomber_scombrus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2010.tif
-NEUS_SPR_IDW_Scomber_scombrus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2011.tif
-NEUS_SPR_IDW_Scomber_scombrus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2012.tif
-NEUS_SPR_IDW_Scomber_scombrus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2013.tif
-NEUS_SPR_IDW_Scomber_scombrus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2015.tif
-NEUS_SPR_IDW_Scomber_scombrus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2016.tif
-NEUS_SPR_IDW_Scomber_scombrus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2017.tif
-NEUS_SPR_IDW_Scomber_scombrus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2018.tif
-NEUS_SPR_IDW_Scomber_scombrus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2019.tif
-NEUS_SPR_IDW_Scomber_scombrus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2021.tif
-NEUS_SPR_IDW_Scomber_scombrus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2022.tif
-NEUS_SPR_IDW_Scomber_scombrus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scomber scombrus\NEUS_SPR_IDW_Scomber_scombrus_2024.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1974.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1976.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1977.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1978.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1979.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1980.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1981.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1982.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1983.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1984.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1985.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1986.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1987.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1988.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1989.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1990.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1991.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1992.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1993.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1994.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1995.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1996.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1997.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1998.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_1999.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2000.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2001.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2002.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2003.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2004.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2005.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2006.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2007.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2008.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2009.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2010.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2011.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2012.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2013.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2015.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2016.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2017.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2018.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2019.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2021.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2022.tif
-NEUS_SPR_IDW_Scophthalmus_aquosus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Scophthalmus aquosus\NEUS_SPR_IDW_Scophthalmus_aquosus_2024.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1974.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1976.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1977.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1978.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1979.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1980.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1981.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1982.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1983.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1984.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1985.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1986.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1987.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1988.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1989.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1990.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1991.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1992.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1993.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1994.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1995.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1996.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1997.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1998.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_1999.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2000.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2001.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2002.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2003.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2004.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2005.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2006.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2007.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2008.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:55:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2009.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2010.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2011.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2012.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2013.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2015.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2016.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2017.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2018.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2019.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2021.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2022.tif
-NEUS_SPR_IDW_Sebastes_fasciatus_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Sebastes fasciatus\NEUS_SPR_IDW_Sebastes_fasciatus_2024.tif
-NEUS_SPR_IDW_Squalus_acanthias_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1974.tif
-NEUS_SPR_IDW_Squalus_acanthias_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1976.tif
-NEUS_SPR_IDW_Squalus_acanthias_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1977.tif
-NEUS_SPR_IDW_Squalus_acanthias_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1978.tif
-NEUS_SPR_IDW_Squalus_acanthias_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1979.tif
-NEUS_SPR_IDW_Squalus_acanthias_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1980.tif
-NEUS_SPR_IDW_Squalus_acanthias_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1981.tif
-NEUS_SPR_IDW_Squalus_acanthias_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1982.tif
-NEUS_SPR_IDW_Squalus_acanthias_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1983.tif
-NEUS_SPR_IDW_Squalus_acanthias_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1984.tif
-NEUS_SPR_IDW_Squalus_acanthias_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1985.tif
-NEUS_SPR_IDW_Squalus_acanthias_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1986.tif
-NEUS_SPR_IDW_Squalus_acanthias_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1987.tif
-NEUS_SPR_IDW_Squalus_acanthias_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1988.tif
-NEUS_SPR_IDW_Squalus_acanthias_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1989.tif
-NEUS_SPR_IDW_Squalus_acanthias_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1990.tif
-NEUS_SPR_IDW_Squalus_acanthias_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1991.tif
-NEUS_SPR_IDW_Squalus_acanthias_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1992.tif
-NEUS_SPR_IDW_Squalus_acanthias_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1993.tif
-NEUS_SPR_IDW_Squalus_acanthias_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1994.tif
-NEUS_SPR_IDW_Squalus_acanthias_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1995.tif
-NEUS_SPR_IDW_Squalus_acanthias_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1996.tif
-NEUS_SPR_IDW_Squalus_acanthias_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1997.tif
-NEUS_SPR_IDW_Squalus_acanthias_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1998.tif
-NEUS_SPR_IDW_Squalus_acanthias_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_1999.tif
-NEUS_SPR_IDW_Squalus_acanthias_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2000.tif
-NEUS_SPR_IDW_Squalus_acanthias_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2001.tif
-NEUS_SPR_IDW_Squalus_acanthias_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2002.tif
-NEUS_SPR_IDW_Squalus_acanthias_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2003.tif
-NEUS_SPR_IDW_Squalus_acanthias_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2004.tif
-NEUS_SPR_IDW_Squalus_acanthias_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2005.tif
-NEUS_SPR_IDW_Squalus_acanthias_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2006.tif
-NEUS_SPR_IDW_Squalus_acanthias_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2007.tif
-NEUS_SPR_IDW_Squalus_acanthias_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2008.tif
-NEUS_SPR_IDW_Squalus_acanthias_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2009.tif
-NEUS_SPR_IDW_Squalus_acanthias_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2010.tif
-NEUS_SPR_IDW_Squalus_acanthias_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2011.tif
-NEUS_SPR_IDW_Squalus_acanthias_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2012.tif
-NEUS_SPR_IDW_Squalus_acanthias_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2013.tif
-NEUS_SPR_IDW_Squalus_acanthias_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2015.tif
-NEUS_SPR_IDW_Squalus_acanthias_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2016.tif
-NEUS_SPR_IDW_Squalus_acanthias_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2017.tif
-NEUS_SPR_IDW_Squalus_acanthias_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2018.tif
-NEUS_SPR_IDW_Squalus_acanthias_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2019.tif
-NEUS_SPR_IDW_Squalus_acanthias_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2021.tif
-NEUS_SPR_IDW_Squalus_acanthias_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2022.tif
-NEUS_SPR_IDW_Squalus_acanthias_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Squalus acanthias\NEUS_SPR_IDW_Squalus_acanthias_2024.tif
-NEUS_SPR_IDW_Urophycis_chuss_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1974.tif
-NEUS_SPR_IDW_Urophycis_chuss_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1976.tif
-NEUS_SPR_IDW_Urophycis_chuss_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1977.tif
-NEUS_SPR_IDW_Urophycis_chuss_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1978.tif
-NEUS_SPR_IDW_Urophycis_chuss_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1979.tif
-NEUS_SPR_IDW_Urophycis_chuss_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1980.tif
-NEUS_SPR_IDW_Urophycis_chuss_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1981.tif
-NEUS_SPR_IDW_Urophycis_chuss_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1982.tif
-NEUS_SPR_IDW_Urophycis_chuss_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1983.tif
-NEUS_SPR_IDW_Urophycis_chuss_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1984.tif
-NEUS_SPR_IDW_Urophycis_chuss_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1985.tif
-NEUS_SPR_IDW_Urophycis_chuss_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1986.tif
-NEUS_SPR_IDW_Urophycis_chuss_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1987.tif
-NEUS_SPR_IDW_Urophycis_chuss_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1988.tif
-NEUS_SPR_IDW_Urophycis_chuss_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1989.tif
-NEUS_SPR_IDW_Urophycis_chuss_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1990.tif
-NEUS_SPR_IDW_Urophycis_chuss_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1991.tif
-NEUS_SPR_IDW_Urophycis_chuss_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1992.tif
-NEUS_SPR_IDW_Urophycis_chuss_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1993.tif
-NEUS_SPR_IDW_Urophycis_chuss_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1994.tif
-NEUS_SPR_IDW_Urophycis_chuss_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1995.tif
-NEUS_SPR_IDW_Urophycis_chuss_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1996.tif
-NEUS_SPR_IDW_Urophycis_chuss_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1997.tif
-NEUS_SPR_IDW_Urophycis_chuss_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1998.tif
-NEUS_SPR_IDW_Urophycis_chuss_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_1999.tif
-NEUS_SPR_IDW_Urophycis_chuss_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2000.tif
-NEUS_SPR_IDW_Urophycis_chuss_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2001.tif
-NEUS_SPR_IDW_Urophycis_chuss_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2002.tif
-NEUS_SPR_IDW_Urophycis_chuss_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2003.tif
-NEUS_SPR_IDW_Urophycis_chuss_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2004.tif
-NEUS_SPR_IDW_Urophycis_chuss_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2005.tif
-NEUS_SPR_IDW_Urophycis_chuss_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2006.tif
-NEUS_SPR_IDW_Urophycis_chuss_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2007.tif
-NEUS_SPR_IDW_Urophycis_chuss_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2008.tif
-NEUS_SPR_IDW_Urophycis_chuss_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2009.tif
-NEUS_SPR_IDW_Urophycis_chuss_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2010.tif
-NEUS_SPR_IDW_Urophycis_chuss_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2011.tif
-NEUS_SPR_IDW_Urophycis_chuss_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2012.tif
-NEUS_SPR_IDW_Urophycis_chuss_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2013.tif
-NEUS_SPR_IDW_Urophycis_chuss_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2015.tif
-NEUS_SPR_IDW_Urophycis_chuss_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2016.tif
-NEUS_SPR_IDW_Urophycis_chuss_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2017.tif
-NEUS_SPR_IDW_Urophycis_chuss_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2018.tif
-NEUS_SPR_IDW_Urophycis_chuss_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2019.tif
-NEUS_SPR_IDW_Urophycis_chuss_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2021.tif
-NEUS_SPR_IDW_Urophycis_chuss_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2022.tif
-NEUS_SPR_IDW_Urophycis_chuss_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis chuss\NEUS_SPR_IDW_Urophycis_chuss_2024.tif
-NEUS_SPR_IDW_Urophycis_regia_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1974.tif
-NEUS_SPR_IDW_Urophycis_regia_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1976.tif
-NEUS_SPR_IDW_Urophycis_regia_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1977.tif
-NEUS_SPR_IDW_Urophycis_regia_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1978.tif
-NEUS_SPR_IDW_Urophycis_regia_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1979.tif
-NEUS_SPR_IDW_Urophycis_regia_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1980.tif
-NEUS_SPR_IDW_Urophycis_regia_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1981.tif
-NEUS_SPR_IDW_Urophycis_regia_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1982.tif
-NEUS_SPR_IDW_Urophycis_regia_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1983.tif
-NEUS_SPR_IDW_Urophycis_regia_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1984.tif
-NEUS_SPR_IDW_Urophycis_regia_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1985.tif
-NEUS_SPR_IDW_Urophycis_regia_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1986.tif
-NEUS_SPR_IDW_Urophycis_regia_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1987.tif
-NEUS_SPR_IDW_Urophycis_regia_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1988.tif
-NEUS_SPR_IDW_Urophycis_regia_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1989.tif
-NEUS_SPR_IDW_Urophycis_regia_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1990.tif
-NEUS_SPR_IDW_Urophycis_regia_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1991.tif
-NEUS_SPR_IDW_Urophycis_regia_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1992.tif
-NEUS_SPR_IDW_Urophycis_regia_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1993.tif
-NEUS_SPR_IDW_Urophycis_regia_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1994.tif
-NEUS_SPR_IDW_Urophycis_regia_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1995.tif
-NEUS_SPR_IDW_Urophycis_regia_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1996.tif
-NEUS_SPR_IDW_Urophycis_regia_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1997.tif
-NEUS_SPR_IDW_Urophycis_regia_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1998.tif
-NEUS_SPR_IDW_Urophycis_regia_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_1999.tif
-NEUS_SPR_IDW_Urophycis_regia_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2000.tif
-NEUS_SPR_IDW_Urophycis_regia_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2001.tif
-NEUS_SPR_IDW_Urophycis_regia_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2002.tif
-NEUS_SPR_IDW_Urophycis_regia_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2003.tif
-NEUS_SPR_IDW_Urophycis_regia_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2004.tif
-NEUS_SPR_IDW_Urophycis_regia_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2005.tif
-NEUS_SPR_IDW_Urophycis_regia_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2006.tif
-NEUS_SPR_IDW_Urophycis_regia_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2007.tif
-NEUS_SPR_IDW_Urophycis_regia_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2008.tif
-NEUS_SPR_IDW_Urophycis_regia_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2009.tif
-NEUS_SPR_IDW_Urophycis_regia_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2010.tif
-NEUS_SPR_IDW_Urophycis_regia_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2011.tif
-NEUS_SPR_IDW_Urophycis_regia_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2012.tif
-NEUS_SPR_IDW_Urophycis_regia_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2013.tif
-NEUS_SPR_IDW_Urophycis_regia_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2015.tif
-NEUS_SPR_IDW_Urophycis_regia_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2016.tif
-NEUS_SPR_IDW_Urophycis_regia_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:56:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2017.tif
-NEUS_SPR_IDW_Urophycis_regia_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2018.tif
-NEUS_SPR_IDW_Urophycis_regia_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2019.tif
-NEUS_SPR_IDW_Urophycis_regia_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2021.tif
-NEUS_SPR_IDW_Urophycis_regia_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2022.tif
-NEUS_SPR_IDW_Urophycis_regia_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis regia\NEUS_SPR_IDW_Urophycis_regia_2024.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1974.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1976.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1977.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1978.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1979.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1980.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1981.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1982.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1983.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1984.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1985.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1986.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1987.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1988.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1989.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1990.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1991.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1992.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1993.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1994.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1995.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1996.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1997.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1998.tif
-NEUS_SPR_IDW_Urophycis_tenuis_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_1999.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2000.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2001.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2002.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2003.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2004.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2005.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2006.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2007.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2008.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2009.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:51:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2010.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2011.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2012.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2013.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2015.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2016.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2017.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2018.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2019.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2021.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2022.tif
-NEUS_SPR_IDW_Urophycis_tenuis_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\Urophycis tenuis\NEUS_SPR_IDW_Urophycis_tenuis_2024.tif
-NEUS_SPR_IDW_Core_Species_Richness_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1974.tif
-NEUS_SPR_IDW_Core_Species_Richness_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1976.tif
-NEUS_SPR_IDW_Core_Species_Richness_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1977.tif
-NEUS_SPR_IDW_Core_Species_Richness_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1978.tif
-NEUS_SPR_IDW_Core_Species_Richness_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1979.tif
-NEUS_SPR_IDW_Core_Species_Richness_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1980.tif
-NEUS_SPR_IDW_Core_Species_Richness_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1981.tif
-NEUS_SPR_IDW_Core_Species_Richness_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1982.tif
-NEUS_SPR_IDW_Core_Species_Richness_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1983.tif
-NEUS_SPR_IDW_Core_Species_Richness_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1984.tif
-NEUS_SPR_IDW_Core_Species_Richness_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1985.tif
-NEUS_SPR_IDW_Core_Species_Richness_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1986.tif
-NEUS_SPR_IDW_Core_Species_Richness_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1987.tif
-NEUS_SPR_IDW_Core_Species_Richness_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1988.tif
-NEUS_SPR_IDW_Core_Species_Richness_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1989.tif
-NEUS_SPR_IDW_Core_Species_Richness_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1990.tif
-NEUS_SPR_IDW_Core_Species_Richness_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1991.tif
-NEUS_SPR_IDW_Core_Species_Richness_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1992.tif
-NEUS_SPR_IDW_Core_Species_Richness_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1993.tif
-NEUS_SPR_IDW_Core_Species_Richness_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1994.tif
-NEUS_SPR_IDW_Core_Species_Richness_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1995.tif
-NEUS_SPR_IDW_Core_Species_Richness_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1996.tif
-NEUS_SPR_IDW_Core_Species_Richness_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1997.tif
-NEUS_SPR_IDW_Core_Species_Richness_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1998.tif
-NEUS_SPR_IDW_Core_Species_Richness_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_1999.tif
-NEUS_SPR_IDW_Core_Species_Richness_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2000.tif
-NEUS_SPR_IDW_Core_Species_Richness_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2001.tif
-NEUS_SPR_IDW_Core_Species_Richness_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2002.tif
-NEUS_SPR_IDW_Core_Species_Richness_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2003.tif
-NEUS_SPR_IDW_Core_Species_Richness_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2004.tif
-NEUS_SPR_IDW_Core_Species_Richness_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2005.tif
-NEUS_SPR_IDW_Core_Species_Richness_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2006.tif
-NEUS_SPR_IDW_Core_Species_Richness_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2007.tif
-NEUS_SPR_IDW_Core_Species_Richness_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2008.tif
-NEUS_SPR_IDW_Core_Species_Richness_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2009.tif
-NEUS_SPR_IDW_Core_Species_Richness_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2010.tif
-NEUS_SPR_IDW_Core_Species_Richness_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2011.tif
-NEUS_SPR_IDW_Core_Species_Richness_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2012.tif
-NEUS_SPR_IDW_Core_Species_Richness_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2013.tif
-NEUS_SPR_IDW_Core_Species_Richness_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2015.tif
-NEUS_SPR_IDW_Core_Species_Richness_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2016.tif
-NEUS_SPR_IDW_Core_Species_Richness_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2017.tif
-NEUS_SPR_IDW_Core_Species_Richness_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2018.tif
-NEUS_SPR_IDW_Core_Species_Richness_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2019.tif
-NEUS_SPR_IDW_Core_Species_Richness_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2021.tif
-NEUS_SPR_IDW_Core_Species_Richness_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2022.tif
-NEUS_SPR_IDW_Core_Species_Richness_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:57:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Core Species Richness\NEUS_SPR_IDW_Core_Species_Richness_2024.tif
-NEUS_SPR_IDW_Species_Richness_1974.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1974.tif
-NEUS_SPR_IDW_Species_Richness_1976.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1976.tif
-NEUS_SPR_IDW_Species_Richness_1977.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1977.tif
-NEUS_SPR_IDW_Species_Richness_1978.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1978.tif
-NEUS_SPR_IDW_Species_Richness_1979.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1979.tif
-NEUS_SPR_IDW_Species_Richness_1980.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1980.tif
-NEUS_SPR_IDW_Species_Richness_1981.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1981.tif
-NEUS_SPR_IDW_Species_Richness_1982.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1982.tif
-NEUS_SPR_IDW_Species_Richness_1983.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1983.tif
-NEUS_SPR_IDW_Species_Richness_1984.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1984.tif
-NEUS_SPR_IDW_Species_Richness_1985.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1985.tif
-NEUS_SPR_IDW_Species_Richness_1986.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1986.tif
-NEUS_SPR_IDW_Species_Richness_1987.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1987.tif
-NEUS_SPR_IDW_Species_Richness_1988.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1988.tif
-NEUS_SPR_IDW_Species_Richness_1989.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1989.tif
-NEUS_SPR_IDW_Species_Richness_1990.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1990.tif
-NEUS_SPR_IDW_Species_Richness_1991.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1991.tif
-NEUS_SPR_IDW_Species_Richness_1992.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1992.tif
-NEUS_SPR_IDW_Species_Richness_1993.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1993.tif
-NEUS_SPR_IDW_Species_Richness_1994.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1994.tif
-NEUS_SPR_IDW_Species_Richness_1995.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1995.tif
-NEUS_SPR_IDW_Species_Richness_1996.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1996.tif
-NEUS_SPR_IDW_Species_Richness_1997.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1997.tif
-NEUS_SPR_IDW_Species_Richness_1998.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1998.tif
-NEUS_SPR_IDW_Species_Richness_1999.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_1999.tif
-NEUS_SPR_IDW_Species_Richness_2000.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2000.tif
-NEUS_SPR_IDW_Species_Richness_2001.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2001.tif
-NEUS_SPR_IDW_Species_Richness_2002.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2002.tif
-NEUS_SPR_IDW_Species_Richness_2003.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2003.tif
-NEUS_SPR_IDW_Species_Richness_2004.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2004.tif
-NEUS_SPR_IDW_Species_Richness_2005.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2005.tif
-NEUS_SPR_IDW_Species_Richness_2006.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2006.tif
-NEUS_SPR_IDW_Species_Richness_2007.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2007.tif
-NEUS_SPR_IDW_Species_Richness_2008.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2008.tif
-NEUS_SPR_IDW_Species_Richness_2009.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2009.tif
-NEUS_SPR_IDW_Species_Richness_2010.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2010.tif
-NEUS_SPR_IDW_Species_Richness_2011.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2011.tif
-NEUS_SPR_IDW_Species_Richness_2012.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2012.tif
-NEUS_SPR_IDW_Species_Richness_2013.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2013.tif
-NEUS_SPR_IDW_Species_Richness_2015.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2015.tif
-NEUS_SPR_IDW_Species_Richness_2016.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2016.tif
-NEUS_SPR_IDW_Species_Richness_2017.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2017.tif
-NEUS_SPR_IDW_Species_Richness_2018.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2018.tif
-NEUS_SPR_IDW_Species_Richness_2019.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2019.tif
-NEUS_SPR_IDW_Species_Richness_2021.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2021.tif
-NEUS_SPR_IDW_Species_Richness_2022.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2022.tif
-NEUS_SPR_IDW_Species_Richness_2024.tif,.tif,1.25 MB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\NEUS_SPR_IDW\_Species Richness\NEUS_SPR_IDW_Species_Richness_2024.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_1989.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_1990.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_1991.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_1992.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_1993.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_1994.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_1995.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_1996.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_1997.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_1998.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_1999.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2000.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2001.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2002.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2003.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2004.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2005.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2006.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2007.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2008.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2009.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2010.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2011.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2012.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2013.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2014.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2015.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2016.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2017.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2018.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2019.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2021.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2022.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2023.tif
-SEUS_FAL_IDW_Arenaeus_cribrarius_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Arenaeus cribrarius\SEUS_FAL_IDW_Arenaeus_cribrarius_2024.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_1989.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_1990.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_1991.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_1992.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_1993.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_1994.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_1995.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_1996.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_1997.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_1998.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_1999.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2000.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2001.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2002.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2003.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2004.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2005.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2006.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2007.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2008.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2009.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2010.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2011.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2012.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2013.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2014.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2015.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2016.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2017.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2018.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2019.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2021.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2022.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2023.tif
-SEUS_FAL_IDW_Bairdiella_chrysoura_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Bairdiella chrysoura\SEUS_FAL_IDW_Bairdiella_chrysoura_2024.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_1989.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_1990.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_1991.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_1992.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_1993.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_1994.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_1995.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_1996.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_1997.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_1998.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_1999.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2000.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2001.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2002.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2003.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2004.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2005.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2006.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2007.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2008.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2009.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2010.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2011.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2012.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2013.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2014.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2015.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2016.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2017.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2018.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2019.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2021.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2022.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2023.tif
-SEUS_FAL_IDW_Brevoortia_tyrannus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Brevoortia tyrannus\SEUS_FAL_IDW_Brevoortia_tyrannus_2024.tif
-SEUS_FAL_IDW_Callinectes_similis_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_1989.tif
-SEUS_FAL_IDW_Callinectes_similis_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_1990.tif
-SEUS_FAL_IDW_Callinectes_similis_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_1991.tif
-SEUS_FAL_IDW_Callinectes_similis_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_1992.tif
-SEUS_FAL_IDW_Callinectes_similis_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_1993.tif
-SEUS_FAL_IDW_Callinectes_similis_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_1994.tif
-SEUS_FAL_IDW_Callinectes_similis_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_1995.tif
-SEUS_FAL_IDW_Callinectes_similis_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_1996.tif
-SEUS_FAL_IDW_Callinectes_similis_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_1997.tif
-SEUS_FAL_IDW_Callinectes_similis_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_1998.tif
-SEUS_FAL_IDW_Callinectes_similis_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_1999.tif
-SEUS_FAL_IDW_Callinectes_similis_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2000.tif
-SEUS_FAL_IDW_Callinectes_similis_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2001.tif
-SEUS_FAL_IDW_Callinectes_similis_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2002.tif
-SEUS_FAL_IDW_Callinectes_similis_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2003.tif
-SEUS_FAL_IDW_Callinectes_similis_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2004.tif
-SEUS_FAL_IDW_Callinectes_similis_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2005.tif
-SEUS_FAL_IDW_Callinectes_similis_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2006.tif
-SEUS_FAL_IDW_Callinectes_similis_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2007.tif
-SEUS_FAL_IDW_Callinectes_similis_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2008.tif
-SEUS_FAL_IDW_Callinectes_similis_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2009.tif
-SEUS_FAL_IDW_Callinectes_similis_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2010.tif
-SEUS_FAL_IDW_Callinectes_similis_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2011.tif
-SEUS_FAL_IDW_Callinectes_similis_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2012.tif
-SEUS_FAL_IDW_Callinectes_similis_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2013.tif
-SEUS_FAL_IDW_Callinectes_similis_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:58:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2014.tif
-SEUS_FAL_IDW_Callinectes_similis_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2015.tif
-SEUS_FAL_IDW_Callinectes_similis_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2016.tif
-SEUS_FAL_IDW_Callinectes_similis_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2017.tif
-SEUS_FAL_IDW_Callinectes_similis_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2018.tif
-SEUS_FAL_IDW_Callinectes_similis_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2019.tif
-SEUS_FAL_IDW_Callinectes_similis_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2021.tif
-SEUS_FAL_IDW_Callinectes_similis_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2022.tif
-SEUS_FAL_IDW_Callinectes_similis_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2023.tif
-SEUS_FAL_IDW_Callinectes_similis_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Callinectes similis\SEUS_FAL_IDW_Callinectes_similis_2024.tif
-SEUS_FAL_IDW_Caranx_crysos_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_1989.tif
-SEUS_FAL_IDW_Caranx_crysos_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_1990.tif
-SEUS_FAL_IDW_Caranx_crysos_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_1991.tif
-SEUS_FAL_IDW_Caranx_crysos_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_1992.tif
-SEUS_FAL_IDW_Caranx_crysos_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_1993.tif
-SEUS_FAL_IDW_Caranx_crysos_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_1994.tif
-SEUS_FAL_IDW_Caranx_crysos_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_1995.tif
-SEUS_FAL_IDW_Caranx_crysos_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_1996.tif
-SEUS_FAL_IDW_Caranx_crysos_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_1997.tif
-SEUS_FAL_IDW_Caranx_crysos_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_1998.tif
-SEUS_FAL_IDW_Caranx_crysos_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_1999.tif
-SEUS_FAL_IDW_Caranx_crysos_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2000.tif
-SEUS_FAL_IDW_Caranx_crysos_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2001.tif
-SEUS_FAL_IDW_Caranx_crysos_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2002.tif
-SEUS_FAL_IDW_Caranx_crysos_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2003.tif
-SEUS_FAL_IDW_Caranx_crysos_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2004.tif
-SEUS_FAL_IDW_Caranx_crysos_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2005.tif
-SEUS_FAL_IDW_Caranx_crysos_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2006.tif
-SEUS_FAL_IDW_Caranx_crysos_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2007.tif
-SEUS_FAL_IDW_Caranx_crysos_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2008.tif
-SEUS_FAL_IDW_Caranx_crysos_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2009.tif
-SEUS_FAL_IDW_Caranx_crysos_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2010.tif
-SEUS_FAL_IDW_Caranx_crysos_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2011.tif
-SEUS_FAL_IDW_Caranx_crysos_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2012.tif
-SEUS_FAL_IDW_Caranx_crysos_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2013.tif
-SEUS_FAL_IDW_Caranx_crysos_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2014.tif
-SEUS_FAL_IDW_Caranx_crysos_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2015.tif
-SEUS_FAL_IDW_Caranx_crysos_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2016.tif
-SEUS_FAL_IDW_Caranx_crysos_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2017.tif
-SEUS_FAL_IDW_Caranx_crysos_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2018.tif
-SEUS_FAL_IDW_Caranx_crysos_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2019.tif
-SEUS_FAL_IDW_Caranx_crysos_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2021.tif
-SEUS_FAL_IDW_Caranx_crysos_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2022.tif
-SEUS_FAL_IDW_Caranx_crysos_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2023.tif
-SEUS_FAL_IDW_Caranx_crysos_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Caranx crysos\SEUS_FAL_IDW_Caranx_crysos_2024.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_1989.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_1990.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_1991.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_1992.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_1993.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_1994.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_1995.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_1996.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_1997.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_1998.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_1999.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2000.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2001.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2002.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2003.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2004.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2005.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2006.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2007.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2008.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2009.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2010.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2011.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2012.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2013.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2014.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2015.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2016.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2017.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2018.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2019.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2021.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2022.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2023.tif
-SEUS_FAL_IDW_Centropristis_philadelphica_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 12:59:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis philadelphica\SEUS_FAL_IDW_Centropristis_philadelphica_2024.tif
-SEUS_FAL_IDW_Centropristis_striata_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_1989.tif
-SEUS_FAL_IDW_Centropristis_striata_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_1990.tif
-SEUS_FAL_IDW_Centropristis_striata_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_1991.tif
-SEUS_FAL_IDW_Centropristis_striata_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_1992.tif
-SEUS_FAL_IDW_Centropristis_striata_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_1993.tif
-SEUS_FAL_IDW_Centropristis_striata_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_1994.tif
-SEUS_FAL_IDW_Centropristis_striata_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_1995.tif
-SEUS_FAL_IDW_Centropristis_striata_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_1996.tif
-SEUS_FAL_IDW_Centropristis_striata_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_1997.tif
-SEUS_FAL_IDW_Centropristis_striata_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_1998.tif
-SEUS_FAL_IDW_Centropristis_striata_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_1999.tif
-SEUS_FAL_IDW_Centropristis_striata_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2000.tif
-SEUS_FAL_IDW_Centropristis_striata_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2001.tif
-SEUS_FAL_IDW_Centropristis_striata_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2002.tif
-SEUS_FAL_IDW_Centropristis_striata_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2003.tif
-SEUS_FAL_IDW_Centropristis_striata_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2004.tif
-SEUS_FAL_IDW_Centropristis_striata_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2005.tif
-SEUS_FAL_IDW_Centropristis_striata_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2006.tif
-SEUS_FAL_IDW_Centropristis_striata_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2007.tif
-SEUS_FAL_IDW_Centropristis_striata_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2008.tif
-SEUS_FAL_IDW_Centropristis_striata_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2009.tif
-SEUS_FAL_IDW_Centropristis_striata_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2010.tif
-SEUS_FAL_IDW_Centropristis_striata_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2011.tif
-SEUS_FAL_IDW_Centropristis_striata_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2012.tif
-SEUS_FAL_IDW_Centropristis_striata_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2013.tif
-SEUS_FAL_IDW_Centropristis_striata_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2014.tif
-SEUS_FAL_IDW_Centropristis_striata_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2015.tif
-SEUS_FAL_IDW_Centropristis_striata_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2016.tif
-SEUS_FAL_IDW_Centropristis_striata_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2017.tif
-SEUS_FAL_IDW_Centropristis_striata_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2018.tif
-SEUS_FAL_IDW_Centropristis_striata_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2019.tif
-SEUS_FAL_IDW_Centropristis_striata_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2021.tif
-SEUS_FAL_IDW_Centropristis_striata_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2022.tif
-SEUS_FAL_IDW_Centropristis_striata_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2023.tif
-SEUS_FAL_IDW_Centropristis_striata_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Centropristis striata\SEUS_FAL_IDW_Centropristis_striata_2024.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_1989.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_1990.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_1991.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_1992.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_1993.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_1994.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_1995.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_1996.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_1997.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_1998.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_1999.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2000.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2001.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2002.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2003.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2004.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2005.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2006.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2007.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2008.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2009.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2010.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2011.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2012.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2013.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2014.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2015.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2016.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2017.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2018.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2019.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2021.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2022.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2023.tif
-SEUS_FAL_IDW_Chaetodipterus_faber_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chaetodipterus faber\SEUS_FAL_IDW_Chaetodipterus_faber_2024.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_1989.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_1990.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_1991.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_1992.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_1993.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_1994.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_1995.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_1996.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_1997.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_1998.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_1999.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2000.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2001.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2002.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2003.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2004.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2005.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2006.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2007.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2008.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2009.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2010.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2011.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2012.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2013.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2014.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2015.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2016.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2017.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2018.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2019.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2021.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2022.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:52:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2023.tif
-SEUS_FAL_IDW_Chilomycterus_schoepfii_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chilomycterus schoepfii\SEUS_FAL_IDW_Chilomycterus_schoepfii_2024.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_1989.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_1990.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_1991.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_1992.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_1993.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_1994.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_1995.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_1996.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_1997.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_1998.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_1999.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2000.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2001.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2002.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2003.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2004.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2005.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2006.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2007.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2008.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2009.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2010.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2011.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2012.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2013.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2014.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2015.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2016.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2017.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2018.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2019.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2021.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2022.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2023.tif
-SEUS_FAL_IDW_Chloroscombrus_chrysurus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Chloroscombrus chrysurus\SEUS_FAL_IDW_Chloroscombrus_chrysurus_2024.tif
-SEUS_FAL_IDW_Citharichthys_macrops_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_1989.tif
-SEUS_FAL_IDW_Citharichthys_macrops_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_1990.tif
-SEUS_FAL_IDW_Citharichthys_macrops_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_1991.tif
-SEUS_FAL_IDW_Citharichthys_macrops_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_1992.tif
-SEUS_FAL_IDW_Citharichthys_macrops_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_1993.tif
-SEUS_FAL_IDW_Citharichthys_macrops_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_1994.tif
-SEUS_FAL_IDW_Citharichthys_macrops_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_1995.tif
-SEUS_FAL_IDW_Citharichthys_macrops_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_1996.tif
-SEUS_FAL_IDW_Citharichthys_macrops_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_1997.tif
-SEUS_FAL_IDW_Citharichthys_macrops_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_1998.tif
-SEUS_FAL_IDW_Citharichthys_macrops_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_1999.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2000.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2001.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2002.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2003.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2004.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2005.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2006.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2007.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2008.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2009.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2010.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2011.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2012.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2013.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2014.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2015.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2016.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2017.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2018.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2019.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2021.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2022.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2023.tif
-SEUS_FAL_IDW_Citharichthys_macrops_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:00:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys macrops\SEUS_FAL_IDW_Citharichthys_macrops_2024.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_1989.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_1990.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_1991.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_1992.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_1993.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_1994.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_1995.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_1996.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_1997.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_1998.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_1999.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2000.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2001.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2002.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2003.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2004.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2005.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2006.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2007.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2008.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2009.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2010.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2011.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2012.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2013.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2014.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2015.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2016.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2017.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2018.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2019.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2021.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2022.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2023.tif
-SEUS_FAL_IDW_Citharichthys_spilopterus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Citharichthys spilopterus\SEUS_FAL_IDW_Citharichthys_spilopterus_2024.tif
-SEUS_FAL_IDW_Cynoscion_nothus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_1989.tif
-SEUS_FAL_IDW_Cynoscion_nothus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_1990.tif
-SEUS_FAL_IDW_Cynoscion_nothus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_1991.tif
-SEUS_FAL_IDW_Cynoscion_nothus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_1992.tif
-SEUS_FAL_IDW_Cynoscion_nothus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_1993.tif
-SEUS_FAL_IDW_Cynoscion_nothus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_1994.tif
-SEUS_FAL_IDW_Cynoscion_nothus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_1995.tif
-SEUS_FAL_IDW_Cynoscion_nothus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_1996.tif
-SEUS_FAL_IDW_Cynoscion_nothus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_1997.tif
-SEUS_FAL_IDW_Cynoscion_nothus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_1998.tif
-SEUS_FAL_IDW_Cynoscion_nothus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_1999.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2000.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2001.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2002.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2003.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2004.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2005.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2006.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2007.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2008.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2009.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2010.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2011.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2012.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2013.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2014.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2015.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2016.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2017.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2018.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2019.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2021.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2022.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2023.tif
-SEUS_FAL_IDW_Cynoscion_nothus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion nothus\SEUS_FAL_IDW_Cynoscion_nothus_2024.tif
-SEUS_FAL_IDW_Cynoscion_regalis_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_1989.tif
-SEUS_FAL_IDW_Cynoscion_regalis_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_1990.tif
-SEUS_FAL_IDW_Cynoscion_regalis_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_1991.tif
-SEUS_FAL_IDW_Cynoscion_regalis_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_1992.tif
-SEUS_FAL_IDW_Cynoscion_regalis_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_1993.tif
-SEUS_FAL_IDW_Cynoscion_regalis_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_1994.tif
-SEUS_FAL_IDW_Cynoscion_regalis_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_1995.tif
-SEUS_FAL_IDW_Cynoscion_regalis_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_1996.tif
-SEUS_FAL_IDW_Cynoscion_regalis_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_1997.tif
-SEUS_FAL_IDW_Cynoscion_regalis_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_1998.tif
-SEUS_FAL_IDW_Cynoscion_regalis_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_1999.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2000.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2001.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2002.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2003.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2004.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2005.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2006.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2007.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2008.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2009.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2010.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2011.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2012.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2013.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2014.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2015.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2016.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2017.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2018.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2019.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2021.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2022.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2023.tif
-SEUS_FAL_IDW_Cynoscion_regalis_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Cynoscion regalis\SEUS_FAL_IDW_Cynoscion_regalis_2024.tif
-SEUS_FAL_IDW_Etropus_crossotus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:01:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_1989.tif
-SEUS_FAL_IDW_Etropus_crossotus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:01:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_1990.tif
-SEUS_FAL_IDW_Etropus_crossotus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:01:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_1991.tif
-SEUS_FAL_IDW_Etropus_crossotus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:01:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_1992.tif
-SEUS_FAL_IDW_Etropus_crossotus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:01:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_1993.tif
-SEUS_FAL_IDW_Etropus_crossotus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:02:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_1994.tif
-SEUS_FAL_IDW_Etropus_crossotus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:02:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_1995.tif
-SEUS_FAL_IDW_Etropus_crossotus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:02:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_1996.tif
-SEUS_FAL_IDW_Etropus_crossotus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:02:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_1997.tif
-SEUS_FAL_IDW_Etropus_crossotus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:02:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_1998.tif
-SEUS_FAL_IDW_Etropus_crossotus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:02:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_1999.tif
-SEUS_FAL_IDW_Etropus_crossotus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:02:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2000.tif
-SEUS_FAL_IDW_Etropus_crossotus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:02:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2001.tif
-SEUS_FAL_IDW_Etropus_crossotus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-03 13:02:28,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2002.tif
-SEUS_FAL_IDW_Etropus_crossotus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-08 14:46:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2003.tif
-SEUS_FAL_IDW_Etropus_crossotus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-08 14:46:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2004.tif
-SEUS_FAL_IDW_Etropus_crossotus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-08 14:46:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2005.tif
-SEUS_FAL_IDW_Etropus_crossotus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-08 14:46:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2006.tif
-SEUS_FAL_IDW_Etropus_crossotus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-08 14:46:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2007.tif
-SEUS_FAL_IDW_Etropus_crossotus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-08 14:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2008.tif
-SEUS_FAL_IDW_Etropus_crossotus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-08 14:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2009.tif
-SEUS_FAL_IDW_Etropus_crossotus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-08 14:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2010.tif
-SEUS_FAL_IDW_Etropus_crossotus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-08 14:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2011.tif
-SEUS_FAL_IDW_Etropus_crossotus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-08 14:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2012.tif
-SEUS_FAL_IDW_Etropus_crossotus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-08 14:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2013.tif
-SEUS_FAL_IDW_Etropus_crossotus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-08 14:46:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2014.tif
-SEUS_FAL_IDW_Etropus_crossotus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-08 14:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2015.tif
-SEUS_FAL_IDW_Etropus_crossotus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-08 14:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2016.tif
-SEUS_FAL_IDW_Etropus_crossotus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-08 14:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2017.tif
-SEUS_FAL_IDW_Etropus_crossotus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-08 14:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2018.tif
-SEUS_FAL_IDW_Etropus_crossotus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-08 14:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2019.tif
-SEUS_FAL_IDW_Etropus_crossotus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-08 14:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2021.tif
-SEUS_FAL_IDW_Etropus_crossotus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-08 14:46:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2022.tif
-SEUS_FAL_IDW_Etropus_crossotus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-08 14:46:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2023.tif
-SEUS_FAL_IDW_Etropus_crossotus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-08 14:46:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Etropus crossotus\SEUS_FAL_IDW_Etropus_crossotus_2024.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_1989.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_1990.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_1991.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_1992.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_1993.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_1994.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_1995.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_1996.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_1997.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_1998.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_1999.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2000.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2001.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2002.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2003.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2004.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2005.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2006.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2007.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2008.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2009.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2010.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2011.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2012.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2013.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2014.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2015.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2016.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2017.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2018.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2019.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2021.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2022.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2023.tif
-SEUS_FAL_IDW_Gibbesia_neglecta_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gibbesia neglecta\SEUS_FAL_IDW_Gibbesia_neglecta_2024.tif
-SEUS_FAL_IDW_Gymnura_micrura_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_1989.tif
-SEUS_FAL_IDW_Gymnura_micrura_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_1990.tif
-SEUS_FAL_IDW_Gymnura_micrura_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_1991.tif
-SEUS_FAL_IDW_Gymnura_micrura_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_1992.tif
-SEUS_FAL_IDW_Gymnura_micrura_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_1993.tif
-SEUS_FAL_IDW_Gymnura_micrura_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_1994.tif
-SEUS_FAL_IDW_Gymnura_micrura_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_1995.tif
-SEUS_FAL_IDW_Gymnura_micrura_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_1996.tif
-SEUS_FAL_IDW_Gymnura_micrura_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_1997.tif
-SEUS_FAL_IDW_Gymnura_micrura_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_1998.tif
-SEUS_FAL_IDW_Gymnura_micrura_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_1999.tif
-SEUS_FAL_IDW_Gymnura_micrura_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2000.tif
-SEUS_FAL_IDW_Gymnura_micrura_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2001.tif
-SEUS_FAL_IDW_Gymnura_micrura_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2002.tif
-SEUS_FAL_IDW_Gymnura_micrura_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2003.tif
-SEUS_FAL_IDW_Gymnura_micrura_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2004.tif
-SEUS_FAL_IDW_Gymnura_micrura_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2005.tif
-SEUS_FAL_IDW_Gymnura_micrura_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2006.tif
-SEUS_FAL_IDW_Gymnura_micrura_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2007.tif
-SEUS_FAL_IDW_Gymnura_micrura_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2008.tif
-SEUS_FAL_IDW_Gymnura_micrura_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:53:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2009.tif
-SEUS_FAL_IDW_Gymnura_micrura_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2010.tif
-SEUS_FAL_IDW_Gymnura_micrura_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2011.tif
-SEUS_FAL_IDW_Gymnura_micrura_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2012.tif
-SEUS_FAL_IDW_Gymnura_micrura_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2013.tif
-SEUS_FAL_IDW_Gymnura_micrura_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2014.tif
-SEUS_FAL_IDW_Gymnura_micrura_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2015.tif
-SEUS_FAL_IDW_Gymnura_micrura_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2016.tif
-SEUS_FAL_IDW_Gymnura_micrura_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2017.tif
-SEUS_FAL_IDW_Gymnura_micrura_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2018.tif
-SEUS_FAL_IDW_Gymnura_micrura_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2019.tif
-SEUS_FAL_IDW_Gymnura_micrura_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2021.tif
-SEUS_FAL_IDW_Gymnura_micrura_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2022.tif
-SEUS_FAL_IDW_Gymnura_micrura_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2023.tif
-SEUS_FAL_IDW_Gymnura_micrura_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Gymnura micrura\SEUS_FAL_IDW_Gymnura_micrura_2024.tif
-SEUS_FAL_IDW_Harengula_jaguana_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_1989.tif
-SEUS_FAL_IDW_Harengula_jaguana_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_1990.tif
-SEUS_FAL_IDW_Harengula_jaguana_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_1991.tif
-SEUS_FAL_IDW_Harengula_jaguana_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_1992.tif
-SEUS_FAL_IDW_Harengula_jaguana_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_1993.tif
-SEUS_FAL_IDW_Harengula_jaguana_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_1994.tif
-SEUS_FAL_IDW_Harengula_jaguana_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_1995.tif
-SEUS_FAL_IDW_Harengula_jaguana_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_1996.tif
-SEUS_FAL_IDW_Harengula_jaguana_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_1997.tif
-SEUS_FAL_IDW_Harengula_jaguana_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_1998.tif
-SEUS_FAL_IDW_Harengula_jaguana_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_1999.tif
-SEUS_FAL_IDW_Harengula_jaguana_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2000.tif
-SEUS_FAL_IDW_Harengula_jaguana_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2001.tif
-SEUS_FAL_IDW_Harengula_jaguana_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2002.tif
-SEUS_FAL_IDW_Harengula_jaguana_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2003.tif
-SEUS_FAL_IDW_Harengula_jaguana_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2004.tif
-SEUS_FAL_IDW_Harengula_jaguana_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2005.tif
-SEUS_FAL_IDW_Harengula_jaguana_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2006.tif
-SEUS_FAL_IDW_Harengula_jaguana_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2007.tif
-SEUS_FAL_IDW_Harengula_jaguana_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2008.tif
-SEUS_FAL_IDW_Harengula_jaguana_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2009.tif
-SEUS_FAL_IDW_Harengula_jaguana_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2010.tif
-SEUS_FAL_IDW_Harengula_jaguana_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2011.tif
-SEUS_FAL_IDW_Harengula_jaguana_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2012.tif
-SEUS_FAL_IDW_Harengula_jaguana_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2013.tif
-SEUS_FAL_IDW_Harengula_jaguana_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2014.tif
-SEUS_FAL_IDW_Harengula_jaguana_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2015.tif
-SEUS_FAL_IDW_Harengula_jaguana_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2016.tif
-SEUS_FAL_IDW_Harengula_jaguana_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2017.tif
-SEUS_FAL_IDW_Harengula_jaguana_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2018.tif
-SEUS_FAL_IDW_Harengula_jaguana_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2019.tif
-SEUS_FAL_IDW_Harengula_jaguana_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2021.tif
-SEUS_FAL_IDW_Harengula_jaguana_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2022.tif
-SEUS_FAL_IDW_Harengula_jaguana_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2023.tif
-SEUS_FAL_IDW_Harengula_jaguana_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Harengula jaguana\SEUS_FAL_IDW_Harengula_jaguana_2024.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_1989.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_1990.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_1991.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_1992.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_1993.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_1994.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_1995.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_1996.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_1997.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_1998.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_1999.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2000.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2001.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2002.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2003.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2004.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2005.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2006.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2007.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2008.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2009.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2010.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2011.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2012.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2013.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2014.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2015.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2016.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2017.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2018.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2019.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2021.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2022.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2023.tif
-SEUS_FAL_IDW_Lagodon_rhomboides_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lagodon rhomboides\SEUS_FAL_IDW_Lagodon_rhomboides_2024.tif
-SEUS_FAL_IDW_Larimus_fasciatus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_1989.tif
-SEUS_FAL_IDW_Larimus_fasciatus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_1990.tif
-SEUS_FAL_IDW_Larimus_fasciatus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_1991.tif
-SEUS_FAL_IDW_Larimus_fasciatus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_1992.tif
-SEUS_FAL_IDW_Larimus_fasciatus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_1993.tif
-SEUS_FAL_IDW_Larimus_fasciatus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_1994.tif
-SEUS_FAL_IDW_Larimus_fasciatus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_1995.tif
-SEUS_FAL_IDW_Larimus_fasciatus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_1996.tif
-SEUS_FAL_IDW_Larimus_fasciatus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_1997.tif
-SEUS_FAL_IDW_Larimus_fasciatus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_1998.tif
-SEUS_FAL_IDW_Larimus_fasciatus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_1999.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2000.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2001.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2002.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2003.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2004.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2005.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2006.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2007.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2008.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2009.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2010.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2011.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2012.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2013.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2014.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2015.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2016.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2017.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2018.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2019.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2021.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2022.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2023.tif
-SEUS_FAL_IDW_Larimus_fasciatus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Larimus fasciatus\SEUS_FAL_IDW_Larimus_fasciatus_2024.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_1989.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_1990.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_1991.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_1992.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_1993.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_1994.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_1995.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_1996.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_1997.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_1998.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_1999.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2000.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2001.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2002.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2003.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2004.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2005.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2006.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2007.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2008.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2009.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2010.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2011.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2012.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2013.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2014.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2015.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2016.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2017.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2018.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2019.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2021.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2022.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2023.tif
-SEUS_FAL_IDW_Leiostomus_xanthurus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Leiostomus xanthurus\SEUS_FAL_IDW_Leiostomus_xanthurus_2024.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_1989.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_1990.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_1991.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_1992.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_1993.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_1994.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_1995.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_1996.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_1997.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_1998.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_1999.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2000.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2001.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2002.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2003.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2004.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2005.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2006.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2007.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2008.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2009.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2010.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2011.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2012.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2013.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2014.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2015.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2016.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2017.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2018.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2019.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2021.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2022.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2023.tif
-SEUS_FAL_IDW_Lolliguncula_brevis_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Lolliguncula brevis\SEUS_FAL_IDW_Lolliguncula_brevis_2024.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_1989.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_1990.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_1991.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_1992.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_1993.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_1994.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_1995.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:54:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_1996.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_1997.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_1998.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_1999.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2000.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2001.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2002.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2003.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2004.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2005.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2006.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2007.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2008.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2009.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2010.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2011.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2012.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2013.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2014.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2015.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2016.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2017.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2018.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2019.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2021.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2022.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2023.tif
-SEUS_FAL_IDW_Menticirrhus_americanus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus americanus\SEUS_FAL_IDW_Menticirrhus_americanus_2024.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_1989.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_1990.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_1991.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_1992.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_1993.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_1994.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_1995.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_1996.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_1997.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_1998.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_1999.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2000.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2001.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2002.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2003.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2004.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2005.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2006.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2007.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2008.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2009.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2010.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2011.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2012.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2013.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2014.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2015.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2016.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2017.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2018.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2019.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2021.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2022.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2023.tif
-SEUS_FAL_IDW_Menticirrhus_littoralis_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Menticirrhus littoralis\SEUS_FAL_IDW_Menticirrhus_littoralis_2024.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_1989.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_1990.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_1991.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_1992.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_1993.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_1994.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_1995.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_1996.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_1997.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_1998.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_1999.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2000.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2001.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2002.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2003.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2004.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2005.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2006.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2007.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2008.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2009.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2010.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2011.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2012.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2013.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2014.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2015.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2016.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2017.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2018.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2019.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2021.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2022.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2023.tif
-SEUS_FAL_IDW_Micropogonias_undulatus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Micropogonias undulatus\SEUS_FAL_IDW_Micropogonias_undulatus_2024.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_1989.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_1990.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_1991.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_1992.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_1993.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_1994.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_1995.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_1996.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_1997.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_1998.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_1999.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2000.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2001.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2002.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2003.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2004.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2005.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2006.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2007.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2008.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2009.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2010.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2011.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2012.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2013.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2014.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2015.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2016.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2017.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2018.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2019.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2021.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2022.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2023.tif
-SEUS_FAL_IDW_Opisthonema_oglinum_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Opisthonema oglinum\SEUS_FAL_IDW_Opisthonema_oglinum_2024.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_1989.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_1990.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_1991.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_1992.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_1993.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_1994.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_1995.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_1996.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_1997.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_1998.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_1999.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2000.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2001.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2002.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2003.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2004.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2005.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2006.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2007.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2008.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2009.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2010.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2011.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2012.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2013.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2014.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2015.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2016.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2017.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2018.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2019.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2021.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2022.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2023.tif
-SEUS_FAL_IDW_Orthopristis_chrysoptera_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Orthopristis chrysoptera\SEUS_FAL_IDW_Orthopristis_chrysoptera_2024.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_1989.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_1990.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_1991.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_1992.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_1993.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_1994.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_1995.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_1996.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_1997.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_1998.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_1999.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2000.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2001.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2002.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2003.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2004.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2005.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2006.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2007.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2008.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2009.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2010.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2011.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2012.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2013.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2014.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2015.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2016.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2017.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2018.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:55:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2019.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2021.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2022.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2023.tif
-SEUS_FAL_IDW_Ovalipes_ocellatus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes ocellatus\SEUS_FAL_IDW_Ovalipes_ocellatus_2024.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_1989.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_1990.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_1991.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_1992.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_1993.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_1994.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_1995.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_1996.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_1997.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_1998.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_1999.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2000.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2001.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2002.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2003.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2004.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2005.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2006.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2007.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2008.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2009.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2010.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2011.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2012.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2013.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2014.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2015.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2016.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2017.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2018.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2019.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2021.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2022.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2023.tif
-SEUS_FAL_IDW_Ovalipes_stephensoni_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Ovalipes stephensoni\SEUS_FAL_IDW_Ovalipes_stephensoni_2024.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_1989.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_1990.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_1991.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_1992.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_1993.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_1994.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_1995.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_1996.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_1997.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_1998.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_1999.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2000.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2001.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2002.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2003.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2004.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2005.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2006.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2007.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2008.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2009.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2010.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2011.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2012.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2013.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2014.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2015.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2016.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2017.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2018.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2019.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2021.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2022.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2023.tif
-SEUS_FAL_IDW_Pagurus_pollicaris_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pagurus pollicaris\SEUS_FAL_IDW_Pagurus_pollicaris_2024.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_1989.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_1990.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_1991.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_1992.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_1993.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_1994.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_1995.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_1996.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_1997.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_1998.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_1999.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2000.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2001.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2002.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2003.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2004.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2005.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2006.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2007.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2008.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2009.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2010.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2011.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2012.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2013.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2014.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2015.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2016.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2017.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2018.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2019.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2021.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2022.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2023.tif
-SEUS_FAL_IDW_Paralichthys_dentatus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys dentatus\SEUS_FAL_IDW_Paralichthys_dentatus_2024.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_1989.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_1990.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_1991.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_1992.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_1993.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_1994.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_1995.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_1996.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_1997.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_1998.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_1999.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2000.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2001.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2002.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2003.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2004.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2005.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2006.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2007.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2008.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2009.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2010.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2011.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2012.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2013.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2014.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2015.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2016.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2017.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2018.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2019.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2021.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2022.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2023.tif
-SEUS_FAL_IDW_Paralichthys_lethostigma_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Paralichthys lethostigma\SEUS_FAL_IDW_Paralichthys_lethostigma_2024.tif
-SEUS_FAL_IDW_Peprilus_paru_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_1989.tif
-SEUS_FAL_IDW_Peprilus_paru_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_1990.tif
-SEUS_FAL_IDW_Peprilus_paru_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_1991.tif
-SEUS_FAL_IDW_Peprilus_paru_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_1992.tif
-SEUS_FAL_IDW_Peprilus_paru_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_1993.tif
-SEUS_FAL_IDW_Peprilus_paru_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_1994.tif
-SEUS_FAL_IDW_Peprilus_paru_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_1995.tif
-SEUS_FAL_IDW_Peprilus_paru_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_1996.tif
-SEUS_FAL_IDW_Peprilus_paru_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_1997.tif
-SEUS_FAL_IDW_Peprilus_paru_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_1998.tif
-SEUS_FAL_IDW_Peprilus_paru_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_1999.tif
-SEUS_FAL_IDW_Peprilus_paru_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2000.tif
-SEUS_FAL_IDW_Peprilus_paru_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2001.tif
-SEUS_FAL_IDW_Peprilus_paru_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2002.tif
-SEUS_FAL_IDW_Peprilus_paru_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2003.tif
-SEUS_FAL_IDW_Peprilus_paru_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2004.tif
-SEUS_FAL_IDW_Peprilus_paru_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2005.tif
-SEUS_FAL_IDW_Peprilus_paru_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2006.tif
-SEUS_FAL_IDW_Peprilus_paru_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2007.tif
-SEUS_FAL_IDW_Peprilus_paru_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2008.tif
-SEUS_FAL_IDW_Peprilus_paru_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2009.tif
-SEUS_FAL_IDW_Peprilus_paru_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2010.tif
-SEUS_FAL_IDW_Peprilus_paru_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2011.tif
-SEUS_FAL_IDW_Peprilus_paru_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2012.tif
-SEUS_FAL_IDW_Peprilus_paru_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2013.tif
-SEUS_FAL_IDW_Peprilus_paru_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2014.tif
-SEUS_FAL_IDW_Peprilus_paru_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2015.tif
-SEUS_FAL_IDW_Peprilus_paru_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2016.tif
-SEUS_FAL_IDW_Peprilus_paru_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2017.tif
-SEUS_FAL_IDW_Peprilus_paru_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2018.tif
-SEUS_FAL_IDW_Peprilus_paru_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2019.tif
-SEUS_FAL_IDW_Peprilus_paru_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2021.tif
-SEUS_FAL_IDW_Peprilus_paru_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2022.tif
-SEUS_FAL_IDW_Peprilus_paru_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2023.tif
-SEUS_FAL_IDW_Peprilus_paru_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus paru\SEUS_FAL_IDW_Peprilus_paru_2024.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_1989.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_1990.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_1991.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_1992.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_1993.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_1994.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_1995.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_1996.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_1997.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_1998.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_1999.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2000.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2001.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2002.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2003.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2004.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2005.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:56:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2006.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2007.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2008.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2009.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2010.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2011.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2012.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2013.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2014.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2015.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2016.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2017.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2018.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2019.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2021.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2022.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2023.tif
-SEUS_FAL_IDW_Peprilus_triacanthus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Peprilus triacanthus\SEUS_FAL_IDW_Peprilus_triacanthus_2024.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_1989.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_1990.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_1991.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_1992.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_1993.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_1994.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_1995.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_1996.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_1997.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_1998.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_1999.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2000.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2001.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2002.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2003.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2004.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2005.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2006.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2007.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2008.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2009.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2010.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2011.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2012.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2013.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2014.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 22:20:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2015.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 17:28:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2016.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 17:28:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2017.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 17:28:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2018.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 17:28:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2019.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 17:28:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2021.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 17:28:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2022.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 17:28:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2023.tif
-SEUS_FAL_IDW_Pomatomus_saltatrix_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-24 17:28:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Pomatomus saltatrix\SEUS_FAL_IDW_Pomatomus_saltatrix_2024.tif
-SEUS_FAL_IDW_Prionotus_carolinus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_1989.tif
-SEUS_FAL_IDW_Prionotus_carolinus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_1990.tif
-SEUS_FAL_IDW_Prionotus_carolinus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_1991.tif
-SEUS_FAL_IDW_Prionotus_carolinus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_1992.tif
-SEUS_FAL_IDW_Prionotus_carolinus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_1993.tif
-SEUS_FAL_IDW_Prionotus_carolinus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_1994.tif
-SEUS_FAL_IDW_Prionotus_carolinus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_1995.tif
-SEUS_FAL_IDW_Prionotus_carolinus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_1996.tif
-SEUS_FAL_IDW_Prionotus_carolinus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_1997.tif
-SEUS_FAL_IDW_Prionotus_carolinus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_1998.tif
-SEUS_FAL_IDW_Prionotus_carolinus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_1999.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2000.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2001.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2002.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2003.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2004.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2005.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2006.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2007.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2008.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2009.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2010.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2011.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2012.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2013.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2014.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2015.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2016.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2017.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2018.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2019.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2021.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2022.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2023.tif
-SEUS_FAL_IDW_Prionotus_carolinus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus carolinus\SEUS_FAL_IDW_Prionotus_carolinus_2024.tif
-SEUS_FAL_IDW_Prionotus_evolans_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_1989.tif
-SEUS_FAL_IDW_Prionotus_evolans_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_1990.tif
-SEUS_FAL_IDW_Prionotus_evolans_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_1991.tif
-SEUS_FAL_IDW_Prionotus_evolans_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_1992.tif
-SEUS_FAL_IDW_Prionotus_evolans_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_1993.tif
-SEUS_FAL_IDW_Prionotus_evolans_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_1994.tif
-SEUS_FAL_IDW_Prionotus_evolans_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_1995.tif
-SEUS_FAL_IDW_Prionotus_evolans_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_1996.tif
-SEUS_FAL_IDW_Prionotus_evolans_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_1997.tif
-SEUS_FAL_IDW_Prionotus_evolans_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_1998.tif
-SEUS_FAL_IDW_Prionotus_evolans_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_1999.tif
-SEUS_FAL_IDW_Prionotus_evolans_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2000.tif
-SEUS_FAL_IDW_Prionotus_evolans_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2001.tif
-SEUS_FAL_IDW_Prionotus_evolans_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2002.tif
-SEUS_FAL_IDW_Prionotus_evolans_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2003.tif
-SEUS_FAL_IDW_Prionotus_evolans_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2004.tif
-SEUS_FAL_IDW_Prionotus_evolans_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2005.tif
-SEUS_FAL_IDW_Prionotus_evolans_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2006.tif
-SEUS_FAL_IDW_Prionotus_evolans_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2007.tif
-SEUS_FAL_IDW_Prionotus_evolans_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2008.tif
-SEUS_FAL_IDW_Prionotus_evolans_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2009.tif
-SEUS_FAL_IDW_Prionotus_evolans_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2010.tif
-SEUS_FAL_IDW_Prionotus_evolans_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2011.tif
-SEUS_FAL_IDW_Prionotus_evolans_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2012.tif
-SEUS_FAL_IDW_Prionotus_evolans_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2013.tif
-SEUS_FAL_IDW_Prionotus_evolans_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2014.tif
-SEUS_FAL_IDW_Prionotus_evolans_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2015.tif
-SEUS_FAL_IDW_Prionotus_evolans_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2016.tif
-SEUS_FAL_IDW_Prionotus_evolans_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2017.tif
-SEUS_FAL_IDW_Prionotus_evolans_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2018.tif
-SEUS_FAL_IDW_Prionotus_evolans_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2019.tif
-SEUS_FAL_IDW_Prionotus_evolans_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2021.tif
-SEUS_FAL_IDW_Prionotus_evolans_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2022.tif
-SEUS_FAL_IDW_Prionotus_evolans_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2023.tif
-SEUS_FAL_IDW_Prionotus_evolans_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus evolans\SEUS_FAL_IDW_Prionotus_evolans_2024.tif
-SEUS_FAL_IDW_Prionotus_rubio_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_1989.tif
-SEUS_FAL_IDW_Prionotus_rubio_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_1990.tif
-SEUS_FAL_IDW_Prionotus_rubio_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_1991.tif
-SEUS_FAL_IDW_Prionotus_rubio_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_1992.tif
-SEUS_FAL_IDW_Prionotus_rubio_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_1993.tif
-SEUS_FAL_IDW_Prionotus_rubio_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_1994.tif
-SEUS_FAL_IDW_Prionotus_rubio_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_1995.tif
-SEUS_FAL_IDW_Prionotus_rubio_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_1996.tif
-SEUS_FAL_IDW_Prionotus_rubio_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_1997.tif
-SEUS_FAL_IDW_Prionotus_rubio_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_1998.tif
-SEUS_FAL_IDW_Prionotus_rubio_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_1999.tif
-SEUS_FAL_IDW_Prionotus_rubio_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2000.tif
-SEUS_FAL_IDW_Prionotus_rubio_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2001.tif
-SEUS_FAL_IDW_Prionotus_rubio_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2002.tif
-SEUS_FAL_IDW_Prionotus_rubio_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2003.tif
-SEUS_FAL_IDW_Prionotus_rubio_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2004.tif
-SEUS_FAL_IDW_Prionotus_rubio_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2005.tif
-SEUS_FAL_IDW_Prionotus_rubio_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2006.tif
-SEUS_FAL_IDW_Prionotus_rubio_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2007.tif
-SEUS_FAL_IDW_Prionotus_rubio_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2008.tif
-SEUS_FAL_IDW_Prionotus_rubio_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2009.tif
-SEUS_FAL_IDW_Prionotus_rubio_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2010.tif
-SEUS_FAL_IDW_Prionotus_rubio_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2011.tif
-SEUS_FAL_IDW_Prionotus_rubio_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2012.tif
-SEUS_FAL_IDW_Prionotus_rubio_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2013.tif
-SEUS_FAL_IDW_Prionotus_rubio_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2014.tif
-SEUS_FAL_IDW_Prionotus_rubio_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2015.tif
-SEUS_FAL_IDW_Prionotus_rubio_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2016.tif
-SEUS_FAL_IDW_Prionotus_rubio_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2017.tif
-SEUS_FAL_IDW_Prionotus_rubio_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2018.tif
-SEUS_FAL_IDW_Prionotus_rubio_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2019.tif
-SEUS_FAL_IDW_Prionotus_rubio_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2021.tif
-SEUS_FAL_IDW_Prionotus_rubio_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2022.tif
-SEUS_FAL_IDW_Prionotus_rubio_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2023.tif
-SEUS_FAL_IDW_Prionotus_rubio_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus rubio\SEUS_FAL_IDW_Prionotus_rubio_2024.tif
-SEUS_FAL_IDW_Prionotus_scitulus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_1989.tif
-SEUS_FAL_IDW_Prionotus_scitulus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_1990.tif
-SEUS_FAL_IDW_Prionotus_scitulus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_1991.tif
-SEUS_FAL_IDW_Prionotus_scitulus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_1992.tif
-SEUS_FAL_IDW_Prionotus_scitulus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_1993.tif
-SEUS_FAL_IDW_Prionotus_scitulus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_1994.tif
-SEUS_FAL_IDW_Prionotus_scitulus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_1995.tif
-SEUS_FAL_IDW_Prionotus_scitulus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_1996.tif
-SEUS_FAL_IDW_Prionotus_scitulus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_1997.tif
-SEUS_FAL_IDW_Prionotus_scitulus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_1998.tif
-SEUS_FAL_IDW_Prionotus_scitulus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_1999.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2000.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2001.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2002.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2003.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2004.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2005.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2006.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2007.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2008.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2009.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2010.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2011.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2012.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2013.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2014.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2015.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2016.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2017.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2018.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2019.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2021.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2022.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2023.tif
-SEUS_FAL_IDW_Prionotus_scitulus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus scitulus\SEUS_FAL_IDW_Prionotus_scitulus_2024.tif
-SEUS_FAL_IDW_Prionotus_tribulus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_1989.tif
-SEUS_FAL_IDW_Prionotus_tribulus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_1990.tif
-SEUS_FAL_IDW_Prionotus_tribulus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_1991.tif
-SEUS_FAL_IDW_Prionotus_tribulus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_1992.tif
-SEUS_FAL_IDW_Prionotus_tribulus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_1993.tif
-SEUS_FAL_IDW_Prionotus_tribulus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_1994.tif
-SEUS_FAL_IDW_Prionotus_tribulus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_1995.tif
-SEUS_FAL_IDW_Prionotus_tribulus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_1996.tif
-SEUS_FAL_IDW_Prionotus_tribulus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_1997.tif
-SEUS_FAL_IDW_Prionotus_tribulus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_1998.tif
-SEUS_FAL_IDW_Prionotus_tribulus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_1999.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2000.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2001.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2002.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2003.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2004.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2005.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2006.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2007.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2008.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2009.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2010.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2011.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2012.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2013.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2014.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2015.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2016.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2017.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2018.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2019.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2021.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2022.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2023.tif
-SEUS_FAL_IDW_Prionotus_tribulus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Prionotus tribulus\SEUS_FAL_IDW_Prionotus_tribulus_2024.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_1989.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_1990.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_1991.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_1992.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:57:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_1993.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_1994.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_1995.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_1996.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_1997.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_1998.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_1999.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2000.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2001.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2002.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2003.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2004.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2005.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2006.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2007.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2008.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2009.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2010.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2011.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2012.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2013.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2014.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2015.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2016.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2017.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2018.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2019.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2021.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2022.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2023.tif
-SEUS_FAL_IDW_Rhinoptera_bonasus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhinoptera bonasus\SEUS_FAL_IDW_Rhinoptera_bonasus_2024.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1989.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1990.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1991.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1992.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1993.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1994.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1995.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1996.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1997.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1998.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_1999.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2000.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2001.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2002.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2003.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2004.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2005.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2006.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2007.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2008.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2009.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2010.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2011.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2012.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2013.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2014.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2015.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2016.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2017.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2018.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2019.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2021.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2022.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2023.tif
-SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Rhizoprionodon terraenovae\SEUS_FAL_IDW_Rhizoprionodon_terraenovae_2024.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_1989.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_1990.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_1991.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_1992.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_1993.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_1994.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_1995.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_1996.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_1997.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_1998.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_1999.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2000.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2001.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2002.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2003.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2004.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2005.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2006.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2007.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2008.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2009.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2010.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2011.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2012.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2013.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2014.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2015.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2016.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2017.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2018.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2019.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2021.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2022.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2023.tif
-SEUS_FAL_IDW_Scomberomorus_cavalla_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus cavalla\SEUS_FAL_IDW_Scomberomorus_cavalla_2024.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_1989.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_1990.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_1991.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_1992.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_1993.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_1994.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_1995.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_1996.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_1997.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_1998.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_1999.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2000.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2001.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2002.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2003.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2004.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2005.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2006.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2007.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2008.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2009.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2010.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2011.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2012.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2013.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2014.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2015.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2016.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2017.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2018.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2019.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2021.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2022.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2023.tif
-SEUS_FAL_IDW_Scomberomorus_maculatus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scomberomorus maculatus\SEUS_FAL_IDW_Scomberomorus_maculatus_2024.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_1989.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_1990.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_1991.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_1992.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_1993.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_1994.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_1995.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_1996.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_1997.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_1998.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_1999.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2000.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2001.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2002.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2003.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2004.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2005.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2006.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2007.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2008.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2009.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2010.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2011.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2012.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2013.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2014.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2015.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2016.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2017.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2018.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2019.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2021.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2022.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2023.tif
-SEUS_FAL_IDW_Scophthalmus_aquosus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Scophthalmus aquosus\SEUS_FAL_IDW_Scophthalmus_aquosus_2024.tif
-SEUS_FAL_IDW_Selene_setapinnis_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_1989.tif
-SEUS_FAL_IDW_Selene_setapinnis_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_1990.tif
-SEUS_FAL_IDW_Selene_setapinnis_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_1991.tif
-SEUS_FAL_IDW_Selene_setapinnis_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_1992.tif
-SEUS_FAL_IDW_Selene_setapinnis_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_1993.tif
-SEUS_FAL_IDW_Selene_setapinnis_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_1994.tif
-SEUS_FAL_IDW_Selene_setapinnis_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_1995.tif
-SEUS_FAL_IDW_Selene_setapinnis_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_1996.tif
-SEUS_FAL_IDW_Selene_setapinnis_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_1997.tif
-SEUS_FAL_IDW_Selene_setapinnis_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_1998.tif
-SEUS_FAL_IDW_Selene_setapinnis_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_1999.tif
-SEUS_FAL_IDW_Selene_setapinnis_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2000.tif
-SEUS_FAL_IDW_Selene_setapinnis_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2001.tif
-SEUS_FAL_IDW_Selene_setapinnis_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2002.tif
-SEUS_FAL_IDW_Selene_setapinnis_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2003.tif
-SEUS_FAL_IDW_Selene_setapinnis_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2004.tif
-SEUS_FAL_IDW_Selene_setapinnis_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2005.tif
-SEUS_FAL_IDW_Selene_setapinnis_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2006.tif
-SEUS_FAL_IDW_Selene_setapinnis_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2007.tif
-SEUS_FAL_IDW_Selene_setapinnis_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2008.tif
-SEUS_FAL_IDW_Selene_setapinnis_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2009.tif
-SEUS_FAL_IDW_Selene_setapinnis_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2010.tif
-SEUS_FAL_IDW_Selene_setapinnis_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2011.tif
-SEUS_FAL_IDW_Selene_setapinnis_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2012.tif
-SEUS_FAL_IDW_Selene_setapinnis_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2013.tif
-SEUS_FAL_IDW_Selene_setapinnis_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2014.tif
-SEUS_FAL_IDW_Selene_setapinnis_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2015.tif
-SEUS_FAL_IDW_Selene_setapinnis_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2016.tif
-SEUS_FAL_IDW_Selene_setapinnis_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:58:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2017.tif
-SEUS_FAL_IDW_Selene_setapinnis_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2018.tif
-SEUS_FAL_IDW_Selene_setapinnis_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2019.tif
-SEUS_FAL_IDW_Selene_setapinnis_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2021.tif
-SEUS_FAL_IDW_Selene_setapinnis_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2022.tif
-SEUS_FAL_IDW_Selene_setapinnis_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2023.tif
-SEUS_FAL_IDW_Selene_setapinnis_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene setapinnis\SEUS_FAL_IDW_Selene_setapinnis_2024.tif
-SEUS_FAL_IDW_Selene_vomer_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_1989.tif
-SEUS_FAL_IDW_Selene_vomer_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_1990.tif
-SEUS_FAL_IDW_Selene_vomer_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_1991.tif
-SEUS_FAL_IDW_Selene_vomer_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_1992.tif
-SEUS_FAL_IDW_Selene_vomer_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_1993.tif
-SEUS_FAL_IDW_Selene_vomer_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_1994.tif
-SEUS_FAL_IDW_Selene_vomer_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_1995.tif
-SEUS_FAL_IDW_Selene_vomer_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_1996.tif
-SEUS_FAL_IDW_Selene_vomer_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_1997.tif
-SEUS_FAL_IDW_Selene_vomer_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_1998.tif
-SEUS_FAL_IDW_Selene_vomer_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_1999.tif
-SEUS_FAL_IDW_Selene_vomer_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2000.tif
-SEUS_FAL_IDW_Selene_vomer_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2001.tif
-SEUS_FAL_IDW_Selene_vomer_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2002.tif
-SEUS_FAL_IDW_Selene_vomer_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2003.tif
-SEUS_FAL_IDW_Selene_vomer_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2004.tif
-SEUS_FAL_IDW_Selene_vomer_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2005.tif
-SEUS_FAL_IDW_Selene_vomer_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2006.tif
-SEUS_FAL_IDW_Selene_vomer_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2007.tif
-SEUS_FAL_IDW_Selene_vomer_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2008.tif
-SEUS_FAL_IDW_Selene_vomer_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2009.tif
-SEUS_FAL_IDW_Selene_vomer_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2010.tif
-SEUS_FAL_IDW_Selene_vomer_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2011.tif
-SEUS_FAL_IDW_Selene_vomer_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2012.tif
-SEUS_FAL_IDW_Selene_vomer_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2013.tif
-SEUS_FAL_IDW_Selene_vomer_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2014.tif
-SEUS_FAL_IDW_Selene_vomer_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2015.tif
-SEUS_FAL_IDW_Selene_vomer_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2016.tif
-SEUS_FAL_IDW_Selene_vomer_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2017.tif
-SEUS_FAL_IDW_Selene_vomer_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2018.tif
-SEUS_FAL_IDW_Selene_vomer_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2019.tif
-SEUS_FAL_IDW_Selene_vomer_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2021.tif
-SEUS_FAL_IDW_Selene_vomer_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2022.tif
-SEUS_FAL_IDW_Selene_vomer_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2023.tif
-SEUS_FAL_IDW_Selene_vomer_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Selene vomer\SEUS_FAL_IDW_Selene_vomer_2024.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_1989.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_1990.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_1991.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_1992.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_1993.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_1994.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_1995.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_1996.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_1997.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_1998.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_1999.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2000.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2001.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2002.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2003.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2004.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2005.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2006.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2007.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2008.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2009.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2010.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2011.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2012.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2013.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2014.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2015.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2016.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2017.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2018.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2019.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2021.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2022.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2023.tif
-SEUS_FAL_IDW_Sphoeroides_maculatus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphoeroides maculatus\SEUS_FAL_IDW_Sphoeroides_maculatus_2024.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_1989.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_1990.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_1991.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_1992.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_1993.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_1994.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_1995.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_1996.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_1997.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_1998.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_1999.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2000.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2001.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2002.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2003.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2004.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2005.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2006.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2007.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2008.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2009.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2010.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2011.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2012.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2013.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2014.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2015.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2016.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2017.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2018.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2019.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2021.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2022.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2023.tif
-SEUS_FAL_IDW_Sphyraena_guachancho_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyraena guachancho\SEUS_FAL_IDW_Sphyraena_guachancho_2024.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_1989.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_1990.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_1991.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_1992.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_1993.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_1994.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_1995.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_1996.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_1997.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_1998.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_1999.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2000.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2001.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2002.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2003.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2004.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2005.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2006.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2007.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2008.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2009.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2010.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2011.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2012.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2013.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2014.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2015.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2016.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2017.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2018.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2019.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2021.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2022.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2023.tif
-SEUS_FAL_IDW_Sphyrna_tiburo_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Sphyrna tiburo\SEUS_FAL_IDW_Sphyrna_tiburo_2024.tif
-SEUS_FAL_IDW_Squilla_empusa_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_1989.tif
-SEUS_FAL_IDW_Squilla_empusa_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_1990.tif
-SEUS_FAL_IDW_Squilla_empusa_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_1991.tif
-SEUS_FAL_IDW_Squilla_empusa_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_1992.tif
-SEUS_FAL_IDW_Squilla_empusa_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_1993.tif
-SEUS_FAL_IDW_Squilla_empusa_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_1994.tif
-SEUS_FAL_IDW_Squilla_empusa_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_1995.tif
-SEUS_FAL_IDW_Squilla_empusa_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_1996.tif
-SEUS_FAL_IDW_Squilla_empusa_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_1997.tif
-SEUS_FAL_IDW_Squilla_empusa_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_1998.tif
-SEUS_FAL_IDW_Squilla_empusa_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_1999.tif
-SEUS_FAL_IDW_Squilla_empusa_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2000.tif
-SEUS_FAL_IDW_Squilla_empusa_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2001.tif
-SEUS_FAL_IDW_Squilla_empusa_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2002.tif
-SEUS_FAL_IDW_Squilla_empusa_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2003.tif
-SEUS_FAL_IDW_Squilla_empusa_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2004.tif
-SEUS_FAL_IDW_Squilla_empusa_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2005.tif
-SEUS_FAL_IDW_Squilla_empusa_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2006.tif
-SEUS_FAL_IDW_Squilla_empusa_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2007.tif
-SEUS_FAL_IDW_Squilla_empusa_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2008.tif
-SEUS_FAL_IDW_Squilla_empusa_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2009.tif
-SEUS_FAL_IDW_Squilla_empusa_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2010.tif
-SEUS_FAL_IDW_Squilla_empusa_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2011.tif
-SEUS_FAL_IDW_Squilla_empusa_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2012.tif
-SEUS_FAL_IDW_Squilla_empusa_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2013.tif
-SEUS_FAL_IDW_Squilla_empusa_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2014.tif
-SEUS_FAL_IDW_Squilla_empusa_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2015.tif
-SEUS_FAL_IDW_Squilla_empusa_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2016.tif
-SEUS_FAL_IDW_Squilla_empusa_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2017.tif
-SEUS_FAL_IDW_Squilla_empusa_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2018.tif
-SEUS_FAL_IDW_Squilla_empusa_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2019.tif
-SEUS_FAL_IDW_Squilla_empusa_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2021.tif
-SEUS_FAL_IDW_Squilla_empusa_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2022.tif
-SEUS_FAL_IDW_Squilla_empusa_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2023.tif
-SEUS_FAL_IDW_Squilla_empusa_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Squilla empusa\SEUS_FAL_IDW_Squilla_empusa_2024.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_1989.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_1990.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_1991.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_1992.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_1993.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_1994.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_1995.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_1996.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_1997.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_1998.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_1999.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2000.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2001.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 15:59:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2002.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2003.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2004.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2005.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2006.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2007.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:00,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2008.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2009.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2010.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2011.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2012.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2013.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2014.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2015.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2016.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2017.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2018.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2019.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2021.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2022.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2023.tif
-SEUS_FAL_IDW_Stellifer_lanceolatus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stellifer lanceolatus\SEUS_FAL_IDW_Stellifer_lanceolatus_2024.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_1989.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_1990.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_1991.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_1992.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_1993.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_1994.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_1995.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_1996.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_1997.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_1998.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_1999.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2000.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2001.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2002.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2003.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2004.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2005.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2006.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2007.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2008.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2009.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2010.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2011.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2012.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2013.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2014.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2015.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2016.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2017.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2018.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2019.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2021.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2022.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2023.tif
-SEUS_FAL_IDW_Stephanolepis_hispida_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Stephanolepis hispida\SEUS_FAL_IDW_Stephanolepis_hispida_2024.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_1989.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_1990.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_1991.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_1992.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_1993.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_1994.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_1995.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_1996.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_1997.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_1998.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_1999.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2000.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2001.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2002.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2003.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2004.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2005.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2006.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2007.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2008.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2009.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2010.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2011.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2012.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2013.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2014.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2015.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2016.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2017.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2018.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2019.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2021.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2022.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2023.tif
-SEUS_FAL_IDW_Symphurus_plagiusa_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Symphurus plagiusa\SEUS_FAL_IDW_Symphurus_plagiusa_2024.tif
-SEUS_FAL_IDW_Synodus_foetens_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_1989.tif
-SEUS_FAL_IDW_Synodus_foetens_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_1990.tif
-SEUS_FAL_IDW_Synodus_foetens_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_1991.tif
-SEUS_FAL_IDW_Synodus_foetens_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_1992.tif
-SEUS_FAL_IDW_Synodus_foetens_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_1993.tif
-SEUS_FAL_IDW_Synodus_foetens_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_1994.tif
-SEUS_FAL_IDW_Synodus_foetens_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_1995.tif
-SEUS_FAL_IDW_Synodus_foetens_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_1996.tif
-SEUS_FAL_IDW_Synodus_foetens_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_1997.tif
-SEUS_FAL_IDW_Synodus_foetens_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_1998.tif
-SEUS_FAL_IDW_Synodus_foetens_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_1999.tif
-SEUS_FAL_IDW_Synodus_foetens_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2000.tif
-SEUS_FAL_IDW_Synodus_foetens_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2001.tif
-SEUS_FAL_IDW_Synodus_foetens_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2002.tif
-SEUS_FAL_IDW_Synodus_foetens_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2003.tif
-SEUS_FAL_IDW_Synodus_foetens_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2004.tif
-SEUS_FAL_IDW_Synodus_foetens_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2005.tif
-SEUS_FAL_IDW_Synodus_foetens_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2006.tif
-SEUS_FAL_IDW_Synodus_foetens_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2007.tif
-SEUS_FAL_IDW_Synodus_foetens_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2008.tif
-SEUS_FAL_IDW_Synodus_foetens_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2009.tif
-SEUS_FAL_IDW_Synodus_foetens_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2010.tif
-SEUS_FAL_IDW_Synodus_foetens_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2011.tif
-SEUS_FAL_IDW_Synodus_foetens_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2012.tif
-SEUS_FAL_IDW_Synodus_foetens_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2013.tif
-SEUS_FAL_IDW_Synodus_foetens_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2014.tif
-SEUS_FAL_IDW_Synodus_foetens_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2015.tif
-SEUS_FAL_IDW_Synodus_foetens_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2016.tif
-SEUS_FAL_IDW_Synodus_foetens_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2017.tif
-SEUS_FAL_IDW_Synodus_foetens_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2018.tif
-SEUS_FAL_IDW_Synodus_foetens_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2019.tif
-SEUS_FAL_IDW_Synodus_foetens_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2021.tif
-SEUS_FAL_IDW_Synodus_foetens_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2022.tif
-SEUS_FAL_IDW_Synodus_foetens_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2023.tif
-SEUS_FAL_IDW_Synodus_foetens_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Synodus foetens\SEUS_FAL_IDW_Synodus_foetens_2024.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_1989.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_1990.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_1991.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_1992.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_1993.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_1994.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_1995.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_1996.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_1997.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_1998.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_1999.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2000.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2001.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2002.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2003.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2004.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2005.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2006.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2007.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2008.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2009.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2010.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2011.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2012.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2013.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2014.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:45,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2015.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2016.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2017.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2018.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2019.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2021.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2022.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2023.tif
-SEUS_FAL_IDW_Trachinotus_carolinus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trachinotus carolinus\SEUS_FAL_IDW_Trachinotus_carolinus_2024.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_1989.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_1990.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_1991.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_1992.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_1993.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_1994.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_1995.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_1996.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_1997.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_1998.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_1999.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2000.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2001.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2002.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2003.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2004.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2005.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2006.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2007.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2008.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2009.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2010.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2011.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2012.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2013.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2014.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2015.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2016.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2017.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2018.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2019.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2021.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2022.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2023.tif
-SEUS_FAL_IDW_Trichiurus_lepturus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trichiurus lepturus\SEUS_FAL_IDW_Trichiurus_lepturus_2024.tif
-SEUS_FAL_IDW_Trinectes_maculatus_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:00:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_1989.tif
-SEUS_FAL_IDW_Trinectes_maculatus_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_1990.tif
-SEUS_FAL_IDW_Trinectes_maculatus_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_1991.tif
-SEUS_FAL_IDW_Trinectes_maculatus_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_1992.tif
-SEUS_FAL_IDW_Trinectes_maculatus_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_1993.tif
-SEUS_FAL_IDW_Trinectes_maculatus_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_1994.tif
-SEUS_FAL_IDW_Trinectes_maculatus_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_1995.tif
-SEUS_FAL_IDW_Trinectes_maculatus_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_1996.tif
-SEUS_FAL_IDW_Trinectes_maculatus_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:01,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_1997.tif
-SEUS_FAL_IDW_Trinectes_maculatus_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_1998.tif
-SEUS_FAL_IDW_Trinectes_maculatus_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_1999.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2000.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2001.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2002.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2003.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2004.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2005.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2006.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2007.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2008.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2009.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2010.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2011.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2012.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2013.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2014.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2015.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2016.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2017.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2018.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2019.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2021.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2022.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2023.tif
-SEUS_FAL_IDW_Trinectes_maculatus_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Trinectes maculatus\SEUS_FAL_IDW_Trinectes_maculatus_2024.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1989.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1989.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1990.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1990.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1991.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1991.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1992.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1992.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1993.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1993.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1994.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1994.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1995.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1995.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1996.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1996.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1997.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1997.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1998.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1998.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1999.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_1999.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2000.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2000.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2001.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2001.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2002.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2002.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2003.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2003.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2004.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2004.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2005.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2005.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2006.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2006.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2007.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2007.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2008.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2008.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2009.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2009.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2010.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2010.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2011.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2011.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2012.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2012.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2013.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2013.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2014.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2014.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2015.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2015.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2016.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2016.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2017.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2017.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2018.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2018.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2019.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2019.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2021.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2021.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2022.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2022.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2023.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2023.tif
-SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2024.tif,.tif,388.15 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\Xiphopenaeus kroyeri\SEUS_FAL_IDW_Xiphopenaeus_kroyeri_2024.tif
-SEUS_FAL_IDW_Core_Species_Richness_1989.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_1989.tif
-SEUS_FAL_IDW_Core_Species_Richness_1990.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_1990.tif
-SEUS_FAL_IDW_Core_Species_Richness_1991.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_1991.tif
-SEUS_FAL_IDW_Core_Species_Richness_1992.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_1992.tif
-SEUS_FAL_IDW_Core_Species_Richness_1993.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_1993.tif
-SEUS_FAL_IDW_Core_Species_Richness_1994.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_1994.tif
-SEUS_FAL_IDW_Core_Species_Richness_1995.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_1995.tif
-SEUS_FAL_IDW_Core_Species_Richness_1996.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_1996.tif
-SEUS_FAL_IDW_Core_Species_Richness_1997.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_1997.tif
-SEUS_FAL_IDW_Core_Species_Richness_1998.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_1998.tif
-SEUS_FAL_IDW_Core_Species_Richness_1999.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_1999.tif
-SEUS_FAL_IDW_Core_Species_Richness_2000.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2000.tif
-SEUS_FAL_IDW_Core_Species_Richness_2001.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2001.tif
-SEUS_FAL_IDW_Core_Species_Richness_2002.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2002.tif
-SEUS_FAL_IDW_Core_Species_Richness_2003.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2003.tif
-SEUS_FAL_IDW_Core_Species_Richness_2004.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2004.tif
-SEUS_FAL_IDW_Core_Species_Richness_2005.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2005.tif
-SEUS_FAL_IDW_Core_Species_Richness_2006.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2006.tif
-SEUS_FAL_IDW_Core_Species_Richness_2007.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2007.tif
-SEUS_FAL_IDW_Core_Species_Richness_2008.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2008.tif
-SEUS_FAL_IDW_Core_Species_Richness_2009.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2009.tif
-SEUS_FAL_IDW_Core_Species_Richness_2010.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2010.tif
-SEUS_FAL_IDW_Core_Species_Richness_2011.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2011.tif
-SEUS_FAL_IDW_Core_Species_Richness_2012.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2012.tif
-SEUS_FAL_IDW_Core_Species_Richness_2013.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2013.tif
-SEUS_FAL_IDW_Core_Species_Richness_2014.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2014.tif
-SEUS_FAL_IDW_Core_Species_Richness_2015.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2015.tif
-SEUS_FAL_IDW_Core_Species_Richness_2016.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2016.tif
-SEUS_FAL_IDW_Core_Species_Richness_2017.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2017.tif
-SEUS_FAL_IDW_Core_Species_Richness_2018.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2018.tif
-SEUS_FAL_IDW_Core_Species_Richness_2019.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2019.tif
-SEUS_FAL_IDW_Core_Species_Richness_2021.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2021.tif
-SEUS_FAL_IDW_Core_Species_Richness_2022.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2022.tif
-SEUS_FAL_IDW_Core_Species_Richness_2023.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2023.tif
-SEUS_FAL_IDW_Core_Species_Richness_2024.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Core Species Richness\SEUS_FAL_IDW_Core_Species_Richness_2024.tif
-SEUS_FAL_IDW_Species_Richness_1989.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_1989.tif
-SEUS_FAL_IDW_Species_Richness_1990.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_1990.tif
-SEUS_FAL_IDW_Species_Richness_1991.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_1991.tif
-SEUS_FAL_IDW_Species_Richness_1992.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_1992.tif
-SEUS_FAL_IDW_Species_Richness_1993.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_1993.tif
-SEUS_FAL_IDW_Species_Richness_1994.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_1994.tif
-SEUS_FAL_IDW_Species_Richness_1995.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_1995.tif
-SEUS_FAL_IDW_Species_Richness_1996.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_1996.tif
-SEUS_FAL_IDW_Species_Richness_1997.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_1997.tif
-SEUS_FAL_IDW_Species_Richness_1998.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_1998.tif
-SEUS_FAL_IDW_Species_Richness_1999.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_1999.tif
-SEUS_FAL_IDW_Species_Richness_2000.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2000.tif
-SEUS_FAL_IDW_Species_Richness_2001.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2001.tif
-SEUS_FAL_IDW_Species_Richness_2002.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2002.tif
-SEUS_FAL_IDW_Species_Richness_2003.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2003.tif
-SEUS_FAL_IDW_Species_Richness_2004.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2004.tif
-SEUS_FAL_IDW_Species_Richness_2005.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2005.tif
-SEUS_FAL_IDW_Species_Richness_2006.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2006.tif
-SEUS_FAL_IDW_Species_Richness_2007.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2007.tif
-SEUS_FAL_IDW_Species_Richness_2008.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2008.tif
-SEUS_FAL_IDW_Species_Richness_2009.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2009.tif
-SEUS_FAL_IDW_Species_Richness_2010.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2010.tif
-SEUS_FAL_IDW_Species_Richness_2011.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2011.tif
-SEUS_FAL_IDW_Species_Richness_2012.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2012.tif
-SEUS_FAL_IDW_Species_Richness_2013.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2013.tif
-SEUS_FAL_IDW_Species_Richness_2014.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2014.tif
-SEUS_FAL_IDW_Species_Richness_2015.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2015.tif
-SEUS_FAL_IDW_Species_Richness_2016.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2016.tif
-SEUS_FAL_IDW_Species_Richness_2017.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2017.tif
-SEUS_FAL_IDW_Species_Richness_2018.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2018.tif
-SEUS_FAL_IDW_Species_Richness_2019.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2019.tif
-SEUS_FAL_IDW_Species_Richness_2021.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2021.tif
-SEUS_FAL_IDW_Species_Richness_2022.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2022.tif
-SEUS_FAL_IDW_Species_Richness_2023.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2023.tif
-SEUS_FAL_IDW_Species_Richness_2024.tif,.tif,388.11 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_FAL_IDW\_Species Richness\SEUS_FAL_IDW_Species_Richness_2024.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1989.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1990.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1991.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1992.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1993.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1994.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1995.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1996.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1997.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1998.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_1999.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2000.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2001.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2002.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2003.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2004.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2005.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2006.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2007.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2008.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2009.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2010.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2011.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2012.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2013.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2014.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2015.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2016.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2017.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2018.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2019.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2022.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2023.tif
-SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:01:59,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ancylopsetta quadrocellata\SEUS_SPR_IDW_Ancylopsetta_quadrocellata_2024.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_1989.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_1990.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_1991.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_1992.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_1993.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_1994.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_1995.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_1996.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_1997.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_1998.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_1999.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2000.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2001.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2002.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2003.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2004.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2005.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2006.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2007.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2008.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2009.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2010.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2011.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2012.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2013.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2014.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2015.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2016.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2017.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2018.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2019.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2022.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:15,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2023.tif
-SEUS_SPR_IDW_Bairdiella_chrysoura_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Bairdiella chrysoura\SEUS_SPR_IDW_Bairdiella_chrysoura_2024.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_1989.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_1990.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_1991.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_1992.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_1993.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_1994.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_1995.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_1996.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_1997.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_1998.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_1999.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2000.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2001.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2002.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2003.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2004.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2005.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2006.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2007.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2008.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2009.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2010.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2011.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2012.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2013.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2014.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2015.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2016.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2017.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2018.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2019.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2022.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2023.tif
-SEUS_SPR_IDW_Brevoortia_tyrannus_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Brevoortia tyrannus\SEUS_SPR_IDW_Brevoortia_tyrannus_2024.tif
-SEUS_SPR_IDW_Callinectes_similis_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_1989.tif
-SEUS_SPR_IDW_Callinectes_similis_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_1990.tif
-SEUS_SPR_IDW_Callinectes_similis_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_1991.tif
-SEUS_SPR_IDW_Callinectes_similis_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_1992.tif
-SEUS_SPR_IDW_Callinectes_similis_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_1993.tif
-SEUS_SPR_IDW_Callinectes_similis_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_1994.tif
-SEUS_SPR_IDW_Callinectes_similis_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_1995.tif
-SEUS_SPR_IDW_Callinectes_similis_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_1996.tif
-SEUS_SPR_IDW_Callinectes_similis_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_1997.tif
-SEUS_SPR_IDW_Callinectes_similis_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_1998.tif
-SEUS_SPR_IDW_Callinectes_similis_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_1999.tif
-SEUS_SPR_IDW_Callinectes_similis_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2000.tif
-SEUS_SPR_IDW_Callinectes_similis_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2001.tif
-SEUS_SPR_IDW_Callinectes_similis_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2002.tif
-SEUS_SPR_IDW_Callinectes_similis_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2003.tif
-SEUS_SPR_IDW_Callinectes_similis_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2004.tif
-SEUS_SPR_IDW_Callinectes_similis_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2005.tif
-SEUS_SPR_IDW_Callinectes_similis_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2006.tif
-SEUS_SPR_IDW_Callinectes_similis_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2007.tif
-SEUS_SPR_IDW_Callinectes_similis_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2008.tif
-SEUS_SPR_IDW_Callinectes_similis_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2009.tif
-SEUS_SPR_IDW_Callinectes_similis_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2010.tif
-SEUS_SPR_IDW_Callinectes_similis_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2011.tif
-SEUS_SPR_IDW_Callinectes_similis_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2012.tif
-SEUS_SPR_IDW_Callinectes_similis_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2013.tif
-SEUS_SPR_IDW_Callinectes_similis_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2014.tif
-SEUS_SPR_IDW_Callinectes_similis_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2015.tif
-SEUS_SPR_IDW_Callinectes_similis_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2016.tif
-SEUS_SPR_IDW_Callinectes_similis_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2017.tif
-SEUS_SPR_IDW_Callinectes_similis_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2018.tif
-SEUS_SPR_IDW_Callinectes_similis_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2019.tif
-SEUS_SPR_IDW_Callinectes_similis_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2022.tif
-SEUS_SPR_IDW_Callinectes_similis_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2023.tif
-SEUS_SPR_IDW_Callinectes_similis_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Callinectes similis\SEUS_SPR_IDW_Callinectes_similis_2024.tif
-SEUS_SPR_IDW_Centropristis_striata_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_1989.tif
-SEUS_SPR_IDW_Centropristis_striata_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_1990.tif
-SEUS_SPR_IDW_Centropristis_striata_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_1991.tif
-SEUS_SPR_IDW_Centropristis_striata_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_1992.tif
-SEUS_SPR_IDW_Centropristis_striata_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_1993.tif
-SEUS_SPR_IDW_Centropristis_striata_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_1994.tif
-SEUS_SPR_IDW_Centropristis_striata_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_1995.tif
-SEUS_SPR_IDW_Centropristis_striata_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_1996.tif
-SEUS_SPR_IDW_Centropristis_striata_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_1997.tif
-SEUS_SPR_IDW_Centropristis_striata_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_1998.tif
-SEUS_SPR_IDW_Centropristis_striata_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_1999.tif
-SEUS_SPR_IDW_Centropristis_striata_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2000.tif
-SEUS_SPR_IDW_Centropristis_striata_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2001.tif
-SEUS_SPR_IDW_Centropristis_striata_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2002.tif
-SEUS_SPR_IDW_Centropristis_striata_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2003.tif
-SEUS_SPR_IDW_Centropristis_striata_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2004.tif
-SEUS_SPR_IDW_Centropristis_striata_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2005.tif
-SEUS_SPR_IDW_Centropristis_striata_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2006.tif
-SEUS_SPR_IDW_Centropristis_striata_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2007.tif
-SEUS_SPR_IDW_Centropristis_striata_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2008.tif
-SEUS_SPR_IDW_Centropristis_striata_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2009.tif
-SEUS_SPR_IDW_Centropristis_striata_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2010.tif
-SEUS_SPR_IDW_Centropristis_striata_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2011.tif
-SEUS_SPR_IDW_Centropristis_striata_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2012.tif
-SEUS_SPR_IDW_Centropristis_striata_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2013.tif
-SEUS_SPR_IDW_Centropristis_striata_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2014.tif
-SEUS_SPR_IDW_Centropristis_striata_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2015.tif
-SEUS_SPR_IDW_Centropristis_striata_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2016.tif
-SEUS_SPR_IDW_Centropristis_striata_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2017.tif
-SEUS_SPR_IDW_Centropristis_striata_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2018.tif
-SEUS_SPR_IDW_Centropristis_striata_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2019.tif
-SEUS_SPR_IDW_Centropristis_striata_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2022.tif
-SEUS_SPR_IDW_Centropristis_striata_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2023.tif
-SEUS_SPR_IDW_Centropristis_striata_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Centropristis striata\SEUS_SPR_IDW_Centropristis_striata_2024.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_1989.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_1990.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_1991.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_1992.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_1993.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_1994.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_1995.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_1996.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_1997.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_1998.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_1999.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2000.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2001.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2002.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2003.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2004.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2005.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2006.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2007.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2008.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2009.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2010.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2011.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2012.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2013.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2014.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2015.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2016.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2017.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2018.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2019.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2022.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2023.tif
-SEUS_SPR_IDW_Chaetodipterus_faber_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chaetodipterus faber\SEUS_SPR_IDW_Chaetodipterus_faber_2024.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_1989.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:02:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_1990.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_1991.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_1992.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_1993.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_1994.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_1995.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_1996.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_1997.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_1998.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_1999.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2000.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2001.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2002.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2003.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2004.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2005.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2006.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2007.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2008.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2009.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2010.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2011.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2012.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2013.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2014.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2015.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2016.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2017.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2018.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2019.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2022.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2023.tif
-SEUS_SPR_IDW_Chilomycterus_schoepfii_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chilomycterus schoepfii\SEUS_SPR_IDW_Chilomycterus_schoepfii_2024.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_1989.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_1990.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_1991.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_1992.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_1993.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_1994.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_1995.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_1996.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_1997.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_1998.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_1999.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2000.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2001.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2002.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2003.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2004.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2005.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2006.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2007.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2008.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2009.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2010.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2011.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2012.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2013.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2014.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2015.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2016.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2017.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2018.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2019.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2022.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2023.tif
-SEUS_SPR_IDW_Chloroscombrus_chrysurus_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Chloroscombrus chrysurus\SEUS_SPR_IDW_Chloroscombrus_chrysurus_2024.tif
-SEUS_SPR_IDW_Citharichthys_macrops_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_1989.tif
-SEUS_SPR_IDW_Citharichthys_macrops_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_1990.tif
-SEUS_SPR_IDW_Citharichthys_macrops_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_1991.tif
-SEUS_SPR_IDW_Citharichthys_macrops_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_1992.tif
-SEUS_SPR_IDW_Citharichthys_macrops_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_1993.tif
-SEUS_SPR_IDW_Citharichthys_macrops_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_1994.tif
-SEUS_SPR_IDW_Citharichthys_macrops_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_1995.tif
-SEUS_SPR_IDW_Citharichthys_macrops_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_1996.tif
-SEUS_SPR_IDW_Citharichthys_macrops_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_1997.tif
-SEUS_SPR_IDW_Citharichthys_macrops_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_1998.tif
-SEUS_SPR_IDW_Citharichthys_macrops_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_1999.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2000.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2001.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2002.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2003.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2004.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2005.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2006.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2007.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2008.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2009.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2010.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2011.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2012.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2013.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2014.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2015.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2016.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2017.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2018.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2019.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2022.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2023.tif
-SEUS_SPR_IDW_Citharichthys_macrops_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Citharichthys macrops\SEUS_SPR_IDW_Citharichthys_macrops_2024.tif
-SEUS_SPR_IDW_Cynoscion_nothus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_1989.tif
-SEUS_SPR_IDW_Cynoscion_nothus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_1990.tif
-SEUS_SPR_IDW_Cynoscion_nothus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_1991.tif
-SEUS_SPR_IDW_Cynoscion_nothus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_1992.tif
-SEUS_SPR_IDW_Cynoscion_nothus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_1993.tif
-SEUS_SPR_IDW_Cynoscion_nothus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_1994.tif
-SEUS_SPR_IDW_Cynoscion_nothus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_1995.tif
-SEUS_SPR_IDW_Cynoscion_nothus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_1996.tif
-SEUS_SPR_IDW_Cynoscion_nothus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_1997.tif
-SEUS_SPR_IDW_Cynoscion_nothus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_1998.tif
-SEUS_SPR_IDW_Cynoscion_nothus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_1999.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2000.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2001.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2002.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2003.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2004.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2005.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2006.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2007.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2008.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2009.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2010.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2011.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2012.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2013.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2014.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2015.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2016.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2017.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2018.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2019.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2022.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2023.tif
-SEUS_SPR_IDW_Cynoscion_nothus_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion nothus\SEUS_SPR_IDW_Cynoscion_nothus_2024.tif
-SEUS_SPR_IDW_Cynoscion_regalis_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_1989.tif
-SEUS_SPR_IDW_Cynoscion_regalis_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_1990.tif
-SEUS_SPR_IDW_Cynoscion_regalis_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_1991.tif
-SEUS_SPR_IDW_Cynoscion_regalis_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_1992.tif
-SEUS_SPR_IDW_Cynoscion_regalis_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_1993.tif
-SEUS_SPR_IDW_Cynoscion_regalis_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_1994.tif
-SEUS_SPR_IDW_Cynoscion_regalis_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_1995.tif
-SEUS_SPR_IDW_Cynoscion_regalis_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_1996.tif
-SEUS_SPR_IDW_Cynoscion_regalis_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_1997.tif
-SEUS_SPR_IDW_Cynoscion_regalis_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_1998.tif
-SEUS_SPR_IDW_Cynoscion_regalis_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_1999.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2000.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2001.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2002.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2003.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2004.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2005.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2006.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2007.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2008.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2009.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2010.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2011.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2012.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2013.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2014.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2015.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2016.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2017.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2018.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2019.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2022.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2023.tif
-SEUS_SPR_IDW_Cynoscion_regalis_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Cynoscion regalis\SEUS_SPR_IDW_Cynoscion_regalis_2024.tif
-SEUS_SPR_IDW_Etropus_crossotus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_1989.tif
-SEUS_SPR_IDW_Etropus_crossotus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_1990.tif
-SEUS_SPR_IDW_Etropus_crossotus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_1991.tif
-SEUS_SPR_IDW_Etropus_crossotus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_1992.tif
-SEUS_SPR_IDW_Etropus_crossotus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_1993.tif
-SEUS_SPR_IDW_Etropus_crossotus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_1994.tif
-SEUS_SPR_IDW_Etropus_crossotus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_1995.tif
-SEUS_SPR_IDW_Etropus_crossotus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_1996.tif
-SEUS_SPR_IDW_Etropus_crossotus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_1997.tif
-SEUS_SPR_IDW_Etropus_crossotus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_1998.tif
-SEUS_SPR_IDW_Etropus_crossotus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_1999.tif
-SEUS_SPR_IDW_Etropus_crossotus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2000.tif
-SEUS_SPR_IDW_Etropus_crossotus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2001.tif
-SEUS_SPR_IDW_Etropus_crossotus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2002.tif
-SEUS_SPR_IDW_Etropus_crossotus_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2003.tif
-SEUS_SPR_IDW_Etropus_crossotus_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2004.tif
-SEUS_SPR_IDW_Etropus_crossotus_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2005.tif
-SEUS_SPR_IDW_Etropus_crossotus_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2006.tif
-SEUS_SPR_IDW_Etropus_crossotus_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2007.tif
-SEUS_SPR_IDW_Etropus_crossotus_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2008.tif
-SEUS_SPR_IDW_Etropus_crossotus_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2009.tif
-SEUS_SPR_IDW_Etropus_crossotus_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2010.tif
-SEUS_SPR_IDW_Etropus_crossotus_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2011.tif
-SEUS_SPR_IDW_Etropus_crossotus_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2012.tif
-SEUS_SPR_IDW_Etropus_crossotus_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2013.tif
-SEUS_SPR_IDW_Etropus_crossotus_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2014.tif
-SEUS_SPR_IDW_Etropus_crossotus_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2015.tif
-SEUS_SPR_IDW_Etropus_crossotus_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2016.tif
-SEUS_SPR_IDW_Etropus_crossotus_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:03:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2017.tif
-SEUS_SPR_IDW_Etropus_crossotus_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2018.tif
-SEUS_SPR_IDW_Etropus_crossotus_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2019.tif
-SEUS_SPR_IDW_Etropus_crossotus_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2022.tif
-SEUS_SPR_IDW_Etropus_crossotus_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2023.tif
-SEUS_SPR_IDW_Etropus_crossotus_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Etropus crossotus\SEUS_SPR_IDW_Etropus_crossotus_2024.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_1989.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_1990.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_1991.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_1992.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_1993.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_1994.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_1995.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_1996.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_1997.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_1998.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_1999.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2000.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2001.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2002.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2003.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2004.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2005.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2006.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2007.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2008.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2009.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2010.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2011.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2012.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2013.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2014.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2015.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2016.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2017.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2018.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2019.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2022.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2023.tif
-SEUS_SPR_IDW_Gibbesia_neglecta_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gibbesia neglecta\SEUS_SPR_IDW_Gibbesia_neglecta_2024.tif
-SEUS_SPR_IDW_Gymnura_micrura_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_1989.tif
-SEUS_SPR_IDW_Gymnura_micrura_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_1990.tif
-SEUS_SPR_IDW_Gymnura_micrura_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_1991.tif
-SEUS_SPR_IDW_Gymnura_micrura_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_1992.tif
-SEUS_SPR_IDW_Gymnura_micrura_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_1993.tif
-SEUS_SPR_IDW_Gymnura_micrura_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_1994.tif
-SEUS_SPR_IDW_Gymnura_micrura_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_1995.tif
-SEUS_SPR_IDW_Gymnura_micrura_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_1996.tif
-SEUS_SPR_IDW_Gymnura_micrura_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_1997.tif
-SEUS_SPR_IDW_Gymnura_micrura_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_1998.tif
-SEUS_SPR_IDW_Gymnura_micrura_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_1999.tif
-SEUS_SPR_IDW_Gymnura_micrura_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2000.tif
-SEUS_SPR_IDW_Gymnura_micrura_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2001.tif
-SEUS_SPR_IDW_Gymnura_micrura_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2002.tif
-SEUS_SPR_IDW_Gymnura_micrura_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2003.tif
-SEUS_SPR_IDW_Gymnura_micrura_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2004.tif
-SEUS_SPR_IDW_Gymnura_micrura_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2005.tif
-SEUS_SPR_IDW_Gymnura_micrura_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2006.tif
-SEUS_SPR_IDW_Gymnura_micrura_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2007.tif
-SEUS_SPR_IDW_Gymnura_micrura_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2008.tif
-SEUS_SPR_IDW_Gymnura_micrura_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2009.tif
-SEUS_SPR_IDW_Gymnura_micrura_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2010.tif
-SEUS_SPR_IDW_Gymnura_micrura_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2011.tif
-SEUS_SPR_IDW_Gymnura_micrura_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2012.tif
-SEUS_SPR_IDW_Gymnura_micrura_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2013.tif
-SEUS_SPR_IDW_Gymnura_micrura_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2014.tif
-SEUS_SPR_IDW_Gymnura_micrura_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2015.tif
-SEUS_SPR_IDW_Gymnura_micrura_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2016.tif
-SEUS_SPR_IDW_Gymnura_micrura_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2017.tif
-SEUS_SPR_IDW_Gymnura_micrura_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2018.tif
-SEUS_SPR_IDW_Gymnura_micrura_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2019.tif
-SEUS_SPR_IDW_Gymnura_micrura_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2022.tif
-SEUS_SPR_IDW_Gymnura_micrura_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2023.tif
-SEUS_SPR_IDW_Gymnura_micrura_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Gymnura micrura\SEUS_SPR_IDW_Gymnura_micrura_2024.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_1989.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_1990.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_1991.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_1992.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_1993.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_1994.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_1995.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_1996.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_1997.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_1998.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_1999.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2000.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2001.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2002.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2003.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2004.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2005.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2006.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2007.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2008.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2009.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2010.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2011.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2012.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2013.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2014.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2015.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2016.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2017.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2018.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2019.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2022.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2023.tif
-SEUS_SPR_IDW_Hepatus_epheliticus_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Hepatus epheliticus\SEUS_SPR_IDW_Hepatus_epheliticus_2024.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_1989.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_1990.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_1991.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_1992.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_1993.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_1994.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_1995.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_1996.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_1997.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_1998.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_1999.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2000.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2001.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2002.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2003.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2004.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2005.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2006.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2007.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2008.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2009.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2010.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2011.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2012.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2013.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2014.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2015.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2016.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2017.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2018.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2019.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2022.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2023.tif
-SEUS_SPR_IDW_Lagodon_rhomboides_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lagodon rhomboides\SEUS_SPR_IDW_Lagodon_rhomboides_2024.tif
-SEUS_SPR_IDW_Larimus_fasciatus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_1989.tif
-SEUS_SPR_IDW_Larimus_fasciatus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_1990.tif
-SEUS_SPR_IDW_Larimus_fasciatus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_1991.tif
-SEUS_SPR_IDW_Larimus_fasciatus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_1992.tif
-SEUS_SPR_IDW_Larimus_fasciatus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_1993.tif
-SEUS_SPR_IDW_Larimus_fasciatus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_1994.tif
-SEUS_SPR_IDW_Larimus_fasciatus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_1995.tif
-SEUS_SPR_IDW_Larimus_fasciatus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_1996.tif
-SEUS_SPR_IDW_Larimus_fasciatus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_1997.tif
-SEUS_SPR_IDW_Larimus_fasciatus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_1998.tif
-SEUS_SPR_IDW_Larimus_fasciatus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_1999.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2000.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2001.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2002.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2003.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2004.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2005.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2006.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2007.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2008.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2009.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2010.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2011.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2012.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2013.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2014.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2015.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2016.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2017.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2018.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2019.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2022.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2023.tif
-SEUS_SPR_IDW_Larimus_fasciatus_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Larimus fasciatus\SEUS_SPR_IDW_Larimus_fasciatus_2024.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_1989.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_1990.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_1991.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_1992.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_1993.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_1994.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_1995.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_1996.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_1997.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_1998.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_1999.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2000.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2001.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2002.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2003.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2004.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2005.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2006.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2007.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2008.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2009.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:04:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2010.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2011.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2012.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2013.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2014.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2015.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2016.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2017.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2018.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2019.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2022.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2023.tif
-SEUS_SPR_IDW_Leiostomus_xanthurus_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Leiostomus xanthurus\SEUS_SPR_IDW_Leiostomus_xanthurus_2024.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_1989.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_1990.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_1991.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_1992.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_1993.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_1994.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_1995.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_1996.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_1997.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_1998.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_1999.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2000.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2001.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2002.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2003.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2004.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2005.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2006.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2007.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2008.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2009.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2010.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2011.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2012.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2013.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2014.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2015.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2016.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2017.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2018.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2019.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2022.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2023.tif
-SEUS_SPR_IDW_Lolliguncula_brevis_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Lolliguncula brevis\SEUS_SPR_IDW_Lolliguncula_brevis_2024.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_1989.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_1990.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_1991.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_1992.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_1993.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_1994.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_1995.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_1996.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_1997.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_1998.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_1999.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2000.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2001.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2002.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2003.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2004.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2005.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2006.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2007.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2008.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2009.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2010.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2011.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2012.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2013.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2014.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2015.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2016.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2017.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2018.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2019.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2022.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2023.tif
-SEUS_SPR_IDW_Menticirrhus_americanus_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus americanus\SEUS_SPR_IDW_Menticirrhus_americanus_2024.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_1989.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_1990.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_1991.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_1992.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_1993.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_1994.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_1995.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_1996.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_1997.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_1998.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_1999.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2000.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2001.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2002.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2003.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2004.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2005.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2006.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2007.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2008.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2009.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2010.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2011.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2012.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2013.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2014.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2015.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2016.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2017.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2018.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2019.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2022.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2023.tif
-SEUS_SPR_IDW_Menticirrhus_littoralis_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Menticirrhus littoralis\SEUS_SPR_IDW_Menticirrhus_littoralis_2024.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_1989.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_1990.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_1991.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_1992.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_1993.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_1994.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_1995.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_1996.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_1997.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_1998.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_1999.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2000.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2001.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2002.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2003.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2004.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2005.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2006.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2007.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2008.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2009.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2010.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2011.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2012.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2013.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2014.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2015.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2016.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2017.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2018.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2019.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2022.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2023.tif
-SEUS_SPR_IDW_Micropogonias_undulatus_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Micropogonias undulatus\SEUS_SPR_IDW_Micropogonias_undulatus_2024.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-27 11:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_1989.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-27 11:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_1990.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-27 11:48:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_1991.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-27 11:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_1992.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-27 11:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_1993.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-27 11:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_1994.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-27 11:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_1995.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-27 11:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_1996.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-27 11:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_1997.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-27 11:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_1998.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-27 11:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_1999.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-27 11:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2000.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-27 11:48:32,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2001.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-26 11:55:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2002.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-26 11:55:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2003.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-26 11:55:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2004.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-26 11:55:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2005.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-26 11:55:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2006.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-26 11:55:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2007.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-26 11:55:16,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2008.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-26 11:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2009.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-26 11:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2010.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-26 11:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2011.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-26 11:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2012.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-26 11:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2013.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-26 11:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2014.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-26 11:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2015.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-26 11:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2016.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-26 11:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2017.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-26 11:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2018.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-26 11:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2019.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-26 11:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2022.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-26 11:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2023.tif
-SEUS_SPR_IDW_Myliobatis_freminvillei_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-03-26 11:55:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Myliobatis freminvillei\SEUS_SPR_IDW_Myliobatis_freminvillei_2024.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_1989.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_1990.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_1991.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_1992.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_1993.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_1994.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_1995.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_1996.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_1997.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_1998.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_1999.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2000.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2001.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2002.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2003.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2004.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2005.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2006.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2007.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2008.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2009.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2010.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2011.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2012.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2013.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2014.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2015.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2016.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2017.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2018.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2019.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2022.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2023.tif
-SEUS_SPR_IDW_Opisthonema_oglinum_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Opisthonema oglinum\SEUS_SPR_IDW_Opisthonema_oglinum_2024.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_1989.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_1990.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_1991.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_1992.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_1993.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_1994.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_1995.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_1996.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_1997.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_1998.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_1999.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2000.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2001.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2002.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:05:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2003.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2004.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2005.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2006.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2007.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2008.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2009.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2010.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2011.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2012.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2013.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2014.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2015.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2016.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2017.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2018.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2019.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2022.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2023.tif
-SEUS_SPR_IDW_Orthopristis_chrysoptera_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Orthopristis chrysoptera\SEUS_SPR_IDW_Orthopristis_chrysoptera_2024.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_1989.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_1990.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_1991.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_1992.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_1993.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_1994.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_1995.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_1996.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_1997.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_1998.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_1999.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2000.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2001.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2002.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2003.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2004.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2005.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2006.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2007.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2008.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2009.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2010.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2011.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2012.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2013.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2014.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2015.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2016.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2017.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2018.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2019.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2022.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2023.tif
-SEUS_SPR_IDW_Ovalipes_ocellatus_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes ocellatus\SEUS_SPR_IDW_Ovalipes_ocellatus_2024.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_1989.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_1990.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_1991.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_1992.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_1993.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_1994.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_1995.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_1996.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_1997.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_1998.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_1999.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2000.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2001.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2002.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2003.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2004.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2005.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2006.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2007.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2008.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2009.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2010.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2011.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2012.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2013.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2014.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2015.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2016.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2017.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2018.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2019.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2022.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2023.tif
-SEUS_SPR_IDW_Ovalipes_stephensoni_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Ovalipes stephensoni\SEUS_SPR_IDW_Ovalipes_stephensoni_2024.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_1989.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_1990.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_1991.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_1992.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_1993.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_1994.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_1995.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_1996.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_1997.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_1998.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_1999.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2000.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2001.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2002.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2003.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2004.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2005.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2006.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2007.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2008.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2009.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2010.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2011.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2012.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2013.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2014.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2015.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2016.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2017.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2018.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2019.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2022.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2023.tif
-SEUS_SPR_IDW_Pagurus_pollicaris_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pagurus pollicaris\SEUS_SPR_IDW_Pagurus_pollicaris_2024.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_1989.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_1990.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_1991.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_1992.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_1993.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_1994.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_1995.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_1996.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_1997.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_1998.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_1999.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2000.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2001.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2002.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2003.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2004.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2005.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2006.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2007.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2008.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2009.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2010.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2011.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2012.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2013.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2014.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2015.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2016.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2017.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:46,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2018.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2019.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2022.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2023.tif
-SEUS_SPR_IDW_Paralichthys_dentatus_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys dentatus\SEUS_SPR_IDW_Paralichthys_dentatus_2024.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_1989.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_1990.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_1991.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_1992.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_1993.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_1994.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_1995.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_1996.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_1997.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_1998.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_1999.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2000.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2001.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2002.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2003.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2004.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2005.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2006.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2007.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2008.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2009.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2010.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2011.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2012.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2013.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2014.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2015.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2016.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2017.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2018.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2019.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2022.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2023.tif
-SEUS_SPR_IDW_Paralichthys_lethostigma_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Paralichthys lethostigma\SEUS_SPR_IDW_Paralichthys_lethostigma_2024.tif
-SEUS_SPR_IDW_Peprilus_paru_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_1989.tif
-SEUS_SPR_IDW_Peprilus_paru_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_1990.tif
-SEUS_SPR_IDW_Peprilus_paru_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_1991.tif
-SEUS_SPR_IDW_Peprilus_paru_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_1992.tif
-SEUS_SPR_IDW_Peprilus_paru_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_1993.tif
-SEUS_SPR_IDW_Peprilus_paru_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_1994.tif
-SEUS_SPR_IDW_Peprilus_paru_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_1995.tif
-SEUS_SPR_IDW_Peprilus_paru_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:06:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_1996.tif
-SEUS_SPR_IDW_Peprilus_paru_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_1997.tif
-SEUS_SPR_IDW_Peprilus_paru_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_1998.tif
-SEUS_SPR_IDW_Peprilus_paru_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_1999.tif
-SEUS_SPR_IDW_Peprilus_paru_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2000.tif
-SEUS_SPR_IDW_Peprilus_paru_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2001.tif
-SEUS_SPR_IDW_Peprilus_paru_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2002.tif
-SEUS_SPR_IDW_Peprilus_paru_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2003.tif
-SEUS_SPR_IDW_Peprilus_paru_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:02,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2004.tif
-SEUS_SPR_IDW_Peprilus_paru_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2005.tif
-SEUS_SPR_IDW_Peprilus_paru_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2006.tif
-SEUS_SPR_IDW_Peprilus_paru_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2007.tif
-SEUS_SPR_IDW_Peprilus_paru_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2008.tif
-SEUS_SPR_IDW_Peprilus_paru_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2009.tif
-SEUS_SPR_IDW_Peprilus_paru_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2010.tif
-SEUS_SPR_IDW_Peprilus_paru_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2011.tif
-SEUS_SPR_IDW_Peprilus_paru_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2012.tif
-SEUS_SPR_IDW_Peprilus_paru_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2013.tif
-SEUS_SPR_IDW_Peprilus_paru_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2014.tif
-SEUS_SPR_IDW_Peprilus_paru_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2015.tif
-SEUS_SPR_IDW_Peprilus_paru_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2016.tif
-SEUS_SPR_IDW_Peprilus_paru_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2017.tif
-SEUS_SPR_IDW_Peprilus_paru_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2018.tif
-SEUS_SPR_IDW_Peprilus_paru_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2019.tif
-SEUS_SPR_IDW_Peprilus_paru_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2022.tif
-SEUS_SPR_IDW_Peprilus_paru_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2023.tif
-SEUS_SPR_IDW_Peprilus_paru_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus paru\SEUS_SPR_IDW_Peprilus_paru_2024.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_1989.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_1990.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_1991.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_1992.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_1993.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_1994.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_1995.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_1996.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_1997.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_1998.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_1999.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2000.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2001.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2002.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2003.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2004.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2005.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2006.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2007.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2008.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2009.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2010.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2011.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2012.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2013.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2014.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2015.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2016.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2017.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:17,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2018.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2019.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2022.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2023.tif
-SEUS_SPR_IDW_Peprilus_triacanthus_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Peprilus triacanthus\SEUS_SPR_IDW_Peprilus_triacanthus_2024.tif
-SEUS_SPR_IDW_Persephona_mediterranea_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_1989.tif
-SEUS_SPR_IDW_Persephona_mediterranea_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_1990.tif
-SEUS_SPR_IDW_Persephona_mediterranea_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_1991.tif
-SEUS_SPR_IDW_Persephona_mediterranea_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_1992.tif
-SEUS_SPR_IDW_Persephona_mediterranea_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_1993.tif
-SEUS_SPR_IDW_Persephona_mediterranea_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_1994.tif
-SEUS_SPR_IDW_Persephona_mediterranea_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_1995.tif
-SEUS_SPR_IDW_Persephona_mediterranea_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_1996.tif
-SEUS_SPR_IDW_Persephona_mediterranea_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_1997.tif
-SEUS_SPR_IDW_Persephona_mediterranea_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_1998.tif
-SEUS_SPR_IDW_Persephona_mediterranea_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_1999.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2000.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2001.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2002.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2003.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2004.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2005.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2006.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2007.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2008.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2009.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2010.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2011.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2012.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2013.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2014.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2015.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2016.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2017.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2018.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2019.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2022.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2023.tif
-SEUS_SPR_IDW_Persephona_mediterranea_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Persephona mediterranea\SEUS_SPR_IDW_Persephona_mediterranea_2024.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_1989.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_1990.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_1991.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_1992.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_1993.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_1994.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_1995.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_1996.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_1997.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_1998.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_1999.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2000.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2001.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2002.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2003.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2004.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2005.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2006.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2007.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2008.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2009.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2010.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2011.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2012.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2013.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2014.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2015.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2016.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2017.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2018.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2019.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2022.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2023.tif
-SEUS_SPR_IDW_Pomatomus_saltatrix_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Pomatomus saltatrix\SEUS_SPR_IDW_Pomatomus_saltatrix_2024.tif
-SEUS_SPR_IDW_Prionotus_carolinus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_1989.tif
-SEUS_SPR_IDW_Prionotus_carolinus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_1990.tif
-SEUS_SPR_IDW_Prionotus_carolinus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_1991.tif
-SEUS_SPR_IDW_Prionotus_carolinus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_1992.tif
-SEUS_SPR_IDW_Prionotus_carolinus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_1993.tif
-SEUS_SPR_IDW_Prionotus_carolinus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_1994.tif
-SEUS_SPR_IDW_Prionotus_carolinus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_1995.tif
-SEUS_SPR_IDW_Prionotus_carolinus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_1996.tif
-SEUS_SPR_IDW_Prionotus_carolinus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_1997.tif
-SEUS_SPR_IDW_Prionotus_carolinus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_1998.tif
-SEUS_SPR_IDW_Prionotus_carolinus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_1999.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2000.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2001.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2002.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2003.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2004.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2005.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2006.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2007.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2008.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2009.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2010.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2011.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:47,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2012.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2013.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2014.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2015.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2016.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2017.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2018.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2019.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:48,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2022.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2023.tif
-SEUS_SPR_IDW_Prionotus_carolinus_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus carolinus\SEUS_SPR_IDW_Prionotus_carolinus_2024.tif
-SEUS_SPR_IDW_Prionotus_evolans_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_1989.tif
-SEUS_SPR_IDW_Prionotus_evolans_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_1990.tif
-SEUS_SPR_IDW_Prionotus_evolans_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_1991.tif
-SEUS_SPR_IDW_Prionotus_evolans_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_1992.tif
-SEUS_SPR_IDW_Prionotus_evolans_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_1993.tif
-SEUS_SPR_IDW_Prionotus_evolans_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_1994.tif
-SEUS_SPR_IDW_Prionotus_evolans_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_1995.tif
-SEUS_SPR_IDW_Prionotus_evolans_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_1996.tif
-SEUS_SPR_IDW_Prionotus_evolans_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_1997.tif
-SEUS_SPR_IDW_Prionotus_evolans_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_1998.tif
-SEUS_SPR_IDW_Prionotus_evolans_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_1999.tif
-SEUS_SPR_IDW_Prionotus_evolans_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2000.tif
-SEUS_SPR_IDW_Prionotus_evolans_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2001.tif
-SEUS_SPR_IDW_Prionotus_evolans_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2002.tif
-SEUS_SPR_IDW_Prionotus_evolans_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2003.tif
-SEUS_SPR_IDW_Prionotus_evolans_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2004.tif
-SEUS_SPR_IDW_Prionotus_evolans_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2005.tif
-SEUS_SPR_IDW_Prionotus_evolans_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2006.tif
-SEUS_SPR_IDW_Prionotus_evolans_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2007.tif
-SEUS_SPR_IDW_Prionotus_evolans_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2008.tif
-SEUS_SPR_IDW_Prionotus_evolans_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2009.tif
-SEUS_SPR_IDW_Prionotus_evolans_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2010.tif
-SEUS_SPR_IDW_Prionotus_evolans_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2011.tif
-SEUS_SPR_IDW_Prionotus_evolans_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2012.tif
-SEUS_SPR_IDW_Prionotus_evolans_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2013.tif
-SEUS_SPR_IDW_Prionotus_evolans_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2014.tif
-SEUS_SPR_IDW_Prionotus_evolans_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2015.tif
-SEUS_SPR_IDW_Prionotus_evolans_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2016.tif
-SEUS_SPR_IDW_Prionotus_evolans_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2017.tif
-SEUS_SPR_IDW_Prionotus_evolans_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2018.tif
-SEUS_SPR_IDW_Prionotus_evolans_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2019.tif
-SEUS_SPR_IDW_Prionotus_evolans_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2022.tif
-SEUS_SPR_IDW_Prionotus_evolans_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2023.tif
-SEUS_SPR_IDW_Prionotus_evolans_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus evolans\SEUS_SPR_IDW_Prionotus_evolans_2024.tif
-SEUS_SPR_IDW_Prionotus_scitulus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:07:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_1989.tif
-SEUS_SPR_IDW_Prionotus_scitulus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_1990.tif
-SEUS_SPR_IDW_Prionotus_scitulus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_1991.tif
-SEUS_SPR_IDW_Prionotus_scitulus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_1992.tif
-SEUS_SPR_IDW_Prionotus_scitulus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_1993.tif
-SEUS_SPR_IDW_Prionotus_scitulus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_1994.tif
-SEUS_SPR_IDW_Prionotus_scitulus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_1995.tif
-SEUS_SPR_IDW_Prionotus_scitulus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_1996.tif
-SEUS_SPR_IDW_Prionotus_scitulus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_1997.tif
-SEUS_SPR_IDW_Prionotus_scitulus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_1998.tif
-SEUS_SPR_IDW_Prionotus_scitulus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_1999.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2000.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2001.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2002.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2003.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2004.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2005.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2006.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2007.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2008.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2009.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2010.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2011.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2012.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2013.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2014.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2015.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2016.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2017.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2018.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2019.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2022.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2023.tif
-SEUS_SPR_IDW_Prionotus_scitulus_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus scitulus\SEUS_SPR_IDW_Prionotus_scitulus_2024.tif
-SEUS_SPR_IDW_Prionotus_tribulus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_1989.tif
-SEUS_SPR_IDW_Prionotus_tribulus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_1990.tif
-SEUS_SPR_IDW_Prionotus_tribulus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_1991.tif
-SEUS_SPR_IDW_Prionotus_tribulus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_1992.tif
-SEUS_SPR_IDW_Prionotus_tribulus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_1993.tif
-SEUS_SPR_IDW_Prionotus_tribulus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_1994.tif
-SEUS_SPR_IDW_Prionotus_tribulus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_1995.tif
-SEUS_SPR_IDW_Prionotus_tribulus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_1996.tif
-SEUS_SPR_IDW_Prionotus_tribulus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_1997.tif
-SEUS_SPR_IDW_Prionotus_tribulus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_1998.tif
-SEUS_SPR_IDW_Prionotus_tribulus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_1999.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2000.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2001.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2002.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2003.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2004.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2005.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:18,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2006.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2007.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2008.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2009.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2010.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2011.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2012.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2013.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2014.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2015.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2016.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2017.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2018.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2019.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2022.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2023.tif
-SEUS_SPR_IDW_Prionotus_tribulus_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Prionotus tribulus\SEUS_SPR_IDW_Prionotus_tribulus_2024.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_1989.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_1990.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_1991.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_1992.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_1993.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_1994.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_1995.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_1996.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_1997.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_1998.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_1999.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2000.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2001.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2002.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2003.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2004.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2005.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2006.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2007.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2008.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2009.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2010.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2011.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2012.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2013.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2014.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2015.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2016.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2017.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2018.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2019.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2022.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2023.tif
-SEUS_SPR_IDW_Rhinoptera_bonasus_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhinoptera bonasus\SEUS_SPR_IDW_Rhinoptera_bonasus_2024.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1989.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1990.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1991.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1992.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1993.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1994.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1995.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1996.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1997.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1998.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_1999.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2000.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2001.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2002.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2003.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2004.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2005.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2006.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2007.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2008.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2009.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2010.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2011.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2012.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2013.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2014.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2015.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2016.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2017.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2018.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2019.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2022.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2023.tif
-SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Rhizoprionodon terraenovae\SEUS_SPR_IDW_Rhizoprionodon_terraenovae_2024.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_1989.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_1990.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_1991.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_1992.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_1993.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_1994.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_1995.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_1996.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_1997.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_1998.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_1999.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2000.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2001.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2002.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2003.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2004.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2005.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2006.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2007.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2008.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2009.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2010.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2011.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2012.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2013.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2014.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2015.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2016.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2017.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2018.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2019.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2022.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2023.tif
-SEUS_SPR_IDW_Scomberomorus_maculatus_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scomberomorus maculatus\SEUS_SPR_IDW_Scomberomorus_maculatus_2024.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_1989.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_1990.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_1991.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_1992.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_1993.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_1994.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_1995.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_1996.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_1997.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_1998.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_1999.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2000.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2001.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2002.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2003.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2004.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2005.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2006.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2007.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2008.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2009.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2010.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2011.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2012.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2013.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2014.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2015.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2016.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:08:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2017.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2018.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2019.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2022.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2023.tif
-SEUS_SPR_IDW_Scophthalmus_aquosus_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Scophthalmus aquosus\SEUS_SPR_IDW_Scophthalmus_aquosus_2024.tif
-SEUS_SPR_IDW_Selene_setapinnis_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_1989.tif
-SEUS_SPR_IDW_Selene_setapinnis_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_1990.tif
-SEUS_SPR_IDW_Selene_setapinnis_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_1991.tif
-SEUS_SPR_IDW_Selene_setapinnis_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_1992.tif
-SEUS_SPR_IDW_Selene_setapinnis_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_1993.tif
-SEUS_SPR_IDW_Selene_setapinnis_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_1994.tif
-SEUS_SPR_IDW_Selene_setapinnis_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_1995.tif
-SEUS_SPR_IDW_Selene_setapinnis_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_1996.tif
-SEUS_SPR_IDW_Selene_setapinnis_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_1997.tif
-SEUS_SPR_IDW_Selene_setapinnis_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_1998.tif
-SEUS_SPR_IDW_Selene_setapinnis_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_1999.tif
-SEUS_SPR_IDW_Selene_setapinnis_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2000.tif
-SEUS_SPR_IDW_Selene_setapinnis_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2001.tif
-SEUS_SPR_IDW_Selene_setapinnis_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2002.tif
-SEUS_SPR_IDW_Selene_setapinnis_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2003.tif
-SEUS_SPR_IDW_Selene_setapinnis_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2004.tif
-SEUS_SPR_IDW_Selene_setapinnis_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2005.tif
-SEUS_SPR_IDW_Selene_setapinnis_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2006.tif
-SEUS_SPR_IDW_Selene_setapinnis_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2007.tif
-SEUS_SPR_IDW_Selene_setapinnis_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2008.tif
-SEUS_SPR_IDW_Selene_setapinnis_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2009.tif
-SEUS_SPR_IDW_Selene_setapinnis_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2010.tif
-SEUS_SPR_IDW_Selene_setapinnis_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2011.tif
-SEUS_SPR_IDW_Selene_setapinnis_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2012.tif
-SEUS_SPR_IDW_Selene_setapinnis_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2013.tif
-SEUS_SPR_IDW_Selene_setapinnis_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2014.tif
-SEUS_SPR_IDW_Selene_setapinnis_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2015.tif
-SEUS_SPR_IDW_Selene_setapinnis_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2016.tif
-SEUS_SPR_IDW_Selene_setapinnis_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2017.tif
-SEUS_SPR_IDW_Selene_setapinnis_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2018.tif
-SEUS_SPR_IDW_Selene_setapinnis_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2019.tif
-SEUS_SPR_IDW_Selene_setapinnis_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2022.tif
-SEUS_SPR_IDW_Selene_setapinnis_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2023.tif
-SEUS_SPR_IDW_Selene_setapinnis_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Selene setapinnis\SEUS_SPR_IDW_Selene_setapinnis_2024.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_1989.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_1990.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_1991.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_1992.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_1993.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_1994.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_1995.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_1996.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_1997.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_1998.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_1999.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2000.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2001.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2002.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2003.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2004.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2005.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2006.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2007.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2008.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2009.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2010.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2011.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2012.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2013.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2014.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2015.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2016.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2017.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2018.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2019.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2022.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2023.tif
-SEUS_SPR_IDW_Sphoeroides_maculatus_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphoeroides maculatus\SEUS_SPR_IDW_Sphoeroides_maculatus_2024.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_1989.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_1990.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_1991.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_1992.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_1993.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_1994.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_1995.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_1996.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_1997.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_1998.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_1999.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2000.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2001.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2002.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2003.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2004.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2005.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2006.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2007.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2008.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2009.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2010.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2011.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2012.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2013.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2014.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2015.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2016.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2017.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:33,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2018.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2019.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2022.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2023.tif
-SEUS_SPR_IDW_Sphyrna_tiburo_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Sphyrna tiburo\SEUS_SPR_IDW_Sphyrna_tiburo_2024.tif
-SEUS_SPR_IDW_Squilla_empusa_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_1989.tif
-SEUS_SPR_IDW_Squilla_empusa_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_1990.tif
-SEUS_SPR_IDW_Squilla_empusa_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_1991.tif
-SEUS_SPR_IDW_Squilla_empusa_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_1992.tif
-SEUS_SPR_IDW_Squilla_empusa_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_1993.tif
-SEUS_SPR_IDW_Squilla_empusa_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_1994.tif
-SEUS_SPR_IDW_Squilla_empusa_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_1995.tif
-SEUS_SPR_IDW_Squilla_empusa_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_1996.tif
-SEUS_SPR_IDW_Squilla_empusa_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_1997.tif
-SEUS_SPR_IDW_Squilla_empusa_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_1998.tif
-SEUS_SPR_IDW_Squilla_empusa_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_1999.tif
-SEUS_SPR_IDW_Squilla_empusa_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2000.tif
-SEUS_SPR_IDW_Squilla_empusa_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2001.tif
-SEUS_SPR_IDW_Squilla_empusa_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2002.tif
-SEUS_SPR_IDW_Squilla_empusa_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2003.tif
-SEUS_SPR_IDW_Squilla_empusa_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2004.tif
-SEUS_SPR_IDW_Squilla_empusa_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2005.tif
-SEUS_SPR_IDW_Squilla_empusa_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2006.tif
-SEUS_SPR_IDW_Squilla_empusa_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2007.tif
-SEUS_SPR_IDW_Squilla_empusa_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2008.tif
-SEUS_SPR_IDW_Squilla_empusa_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2009.tif
-SEUS_SPR_IDW_Squilla_empusa_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2010.tif
-SEUS_SPR_IDW_Squilla_empusa_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2011.tif
-SEUS_SPR_IDW_Squilla_empusa_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2012.tif
-SEUS_SPR_IDW_Squilla_empusa_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2013.tif
-SEUS_SPR_IDW_Squilla_empusa_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2014.tif
-SEUS_SPR_IDW_Squilla_empusa_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2015.tif
-SEUS_SPR_IDW_Squilla_empusa_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2016.tif
-SEUS_SPR_IDW_Squilla_empusa_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2017.tif
-SEUS_SPR_IDW_Squilla_empusa_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2018.tif
-SEUS_SPR_IDW_Squilla_empusa_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2019.tif
-SEUS_SPR_IDW_Squilla_empusa_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2022.tif
-SEUS_SPR_IDW_Squilla_empusa_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2023.tif
-SEUS_SPR_IDW_Squilla_empusa_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Squilla empusa\SEUS_SPR_IDW_Squilla_empusa_2024.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_1989.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_1990.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_1991.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_1992.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_1993.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_1994.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_1995.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_1996.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:49,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_1997.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_1998.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_1999.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2000.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2001.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2002.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2003.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2004.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2005.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2006.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2007.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2008.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2009.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2010.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2011.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2012.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2013.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2014.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2015.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2016.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2017.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2018.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2019.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2022.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2023.tif
-SEUS_SPR_IDW_Stellifer_lanceolatus_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Stellifer lanceolatus\SEUS_SPR_IDW_Stellifer_lanceolatus_2024.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_1989.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_1990.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_1991.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_1992.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_1993.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_1994.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_1995.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_1996.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_1997.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_1998.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_1999.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:55,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2000.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2001.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2002.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2003.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2004.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2005.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2006.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2007.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2008.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2009.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:09:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2010.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2011.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2012.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2013.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:03,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2014.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2015.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2016.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2017.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2018.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2019.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2022.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2023.tif
-SEUS_SPR_IDW_Symphurus_plagiusa_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Symphurus plagiusa\SEUS_SPR_IDW_Symphurus_plagiusa_2024.tif
-SEUS_SPR_IDW_Synodus_foetens_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_1989.tif
-SEUS_SPR_IDW_Synodus_foetens_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_1990.tif
-SEUS_SPR_IDW_Synodus_foetens_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_1991.tif
-SEUS_SPR_IDW_Synodus_foetens_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_1992.tif
-SEUS_SPR_IDW_Synodus_foetens_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_1993.tif
-SEUS_SPR_IDW_Synodus_foetens_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_1994.tif
-SEUS_SPR_IDW_Synodus_foetens_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_1995.tif
-SEUS_SPR_IDW_Synodus_foetens_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_1996.tif
-SEUS_SPR_IDW_Synodus_foetens_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_1997.tif
-SEUS_SPR_IDW_Synodus_foetens_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_1998.tif
-SEUS_SPR_IDW_Synodus_foetens_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_1999.tif
-SEUS_SPR_IDW_Synodus_foetens_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:08,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2000.tif
-SEUS_SPR_IDW_Synodus_foetens_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2001.tif
-SEUS_SPR_IDW_Synodus_foetens_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2002.tif
-SEUS_SPR_IDW_Synodus_foetens_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2003.tif
-SEUS_SPR_IDW_Synodus_foetens_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2004.tif
-SEUS_SPR_IDW_Synodus_foetens_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2005.tif
-SEUS_SPR_IDW_Synodus_foetens_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2006.tif
-SEUS_SPR_IDW_Synodus_foetens_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2007.tif
-SEUS_SPR_IDW_Synodus_foetens_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:09,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2008.tif
-SEUS_SPR_IDW_Synodus_foetens_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2009.tif
-SEUS_SPR_IDW_Synodus_foetens_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2010.tif
-SEUS_SPR_IDW_Synodus_foetens_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2011.tif
-SEUS_SPR_IDW_Synodus_foetens_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2012.tif
-SEUS_SPR_IDW_Synodus_foetens_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2013.tif
-SEUS_SPR_IDW_Synodus_foetens_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2014.tif
-SEUS_SPR_IDW_Synodus_foetens_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2015.tif
-SEUS_SPR_IDW_Synodus_foetens_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2016.tif
-SEUS_SPR_IDW_Synodus_foetens_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2017.tif
-SEUS_SPR_IDW_Synodus_foetens_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2018.tif
-SEUS_SPR_IDW_Synodus_foetens_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2019.tif
-SEUS_SPR_IDW_Synodus_foetens_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2022.tif
-SEUS_SPR_IDW_Synodus_foetens_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2023.tif
-SEUS_SPR_IDW_Synodus_foetens_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Synodus foetens\SEUS_SPR_IDW_Synodus_foetens_2024.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_1989.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_1990.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_1991.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_1992.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:19,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_1993.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_1994.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_1995.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_1996.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_1997.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_1998.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_1999.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2000.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2001.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2002.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2003.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2004.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2005.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2006.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2007.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2008.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2009.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2010.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2011.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2012.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2013.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2014.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2015.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2016.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2017.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2018.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:22,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2019.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2022.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2023.tif
-SEUS_SPR_IDW_Trichiurus_lepturus_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trichiurus lepturus\SEUS_SPR_IDW_Trichiurus_lepturus_2024.tif
-SEUS_SPR_IDW_Trinectes_maculatus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_1989.tif
-SEUS_SPR_IDW_Trinectes_maculatus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_1990.tif
-SEUS_SPR_IDW_Trinectes_maculatus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_1991.tif
-SEUS_SPR_IDW_Trinectes_maculatus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_1992.tif
-SEUS_SPR_IDW_Trinectes_maculatus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_1993.tif
-SEUS_SPR_IDW_Trinectes_maculatus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_1994.tif
-SEUS_SPR_IDW_Trinectes_maculatus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_1995.tif
-SEUS_SPR_IDW_Trinectes_maculatus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_1996.tif
-SEUS_SPR_IDW_Trinectes_maculatus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_1997.tif
-SEUS_SPR_IDW_Trinectes_maculatus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_1998.tif
-SEUS_SPR_IDW_Trinectes_maculatus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_1999.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2000.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2001.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2002.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2003.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2004.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2005.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2006.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2007.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2008.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2009.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:34,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2010.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2011.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2012.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2013.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2014.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2015.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2016.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2017.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2018.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:35,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2019.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2022.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2023.tif
-SEUS_SPR_IDW_Trinectes_maculatus_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:36,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Trinectes maculatus\SEUS_SPR_IDW_Trinectes_maculatus_2024.tif
-SEUS_SPR_IDW_Urophycis_regia_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_1989.tif
-SEUS_SPR_IDW_Urophycis_regia_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_1990.tif
-SEUS_SPR_IDW_Urophycis_regia_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_1991.tif
-SEUS_SPR_IDW_Urophycis_regia_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_1992.tif
-SEUS_SPR_IDW_Urophycis_regia_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_1993.tif
-SEUS_SPR_IDW_Urophycis_regia_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_1994.tif
-SEUS_SPR_IDW_Urophycis_regia_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_1995.tif
-SEUS_SPR_IDW_Urophycis_regia_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_1996.tif
-SEUS_SPR_IDW_Urophycis_regia_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_1997.tif
-SEUS_SPR_IDW_Urophycis_regia_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_1998.tif
-SEUS_SPR_IDW_Urophycis_regia_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_1999.tif
-SEUS_SPR_IDW_Urophycis_regia_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2000.tif
-SEUS_SPR_IDW_Urophycis_regia_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2001.tif
-SEUS_SPR_IDW_Urophycis_regia_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2002.tif
-SEUS_SPR_IDW_Urophycis_regia_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2003.tif
-SEUS_SPR_IDW_Urophycis_regia_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2004.tif
-SEUS_SPR_IDW_Urophycis_regia_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2005.tif
-SEUS_SPR_IDW_Urophycis_regia_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2006.tif
-SEUS_SPR_IDW_Urophycis_regia_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2007.tif
-SEUS_SPR_IDW_Urophycis_regia_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2008.tif
-SEUS_SPR_IDW_Urophycis_regia_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2009.tif
-SEUS_SPR_IDW_Urophycis_regia_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2010.tif
-SEUS_SPR_IDW_Urophycis_regia_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:40,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2011.tif
-SEUS_SPR_IDW_Urophycis_regia_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2012.tif
-SEUS_SPR_IDW_Urophycis_regia_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2013.tif
-SEUS_SPR_IDW_Urophycis_regia_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2014.tif
-SEUS_SPR_IDW_Urophycis_regia_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2015.tif
-SEUS_SPR_IDW_Urophycis_regia_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2016.tif
-SEUS_SPR_IDW_Urophycis_regia_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2017.tif
-SEUS_SPR_IDW_Urophycis_regia_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2018.tif
-SEUS_SPR_IDW_Urophycis_regia_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2019.tif
-SEUS_SPR_IDW_Urophycis_regia_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2022.tif
-SEUS_SPR_IDW_Urophycis_regia_2023.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2023.tif
-SEUS_SPR_IDW_Urophycis_regia_2024.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\Urophycis regia\SEUS_SPR_IDW_Urophycis_regia_2024.tif
-SEUS_SPR_IDW_Core_Species_Richness_1989.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_1989.tif
-SEUS_SPR_IDW_Core_Species_Richness_1990.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_1990.tif
-SEUS_SPR_IDW_Core_Species_Richness_1991.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_1991.tif
-SEUS_SPR_IDW_Core_Species_Richness_1992.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_1992.tif
-SEUS_SPR_IDW_Core_Species_Richness_1993.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_1993.tif
-SEUS_SPR_IDW_Core_Species_Richness_1994.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_1994.tif
-SEUS_SPR_IDW_Core_Species_Richness_1995.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:50,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_1995.tif
-SEUS_SPR_IDW_Core_Species_Richness_1996.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_1996.tif
-SEUS_SPR_IDW_Core_Species_Richness_1997.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_1997.tif
-SEUS_SPR_IDW_Core_Species_Richness_1998.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_1998.tif
-SEUS_SPR_IDW_Core_Species_Richness_1999.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_1999.tif
-SEUS_SPR_IDW_Core_Species_Richness_2000.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2000.tif
-SEUS_SPR_IDW_Core_Species_Richness_2001.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:51,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2001.tif
-SEUS_SPR_IDW_Core_Species_Richness_2002.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2002.tif
-SEUS_SPR_IDW_Core_Species_Richness_2003.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2003.tif
-SEUS_SPR_IDW_Core_Species_Richness_2004.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2004.tif
-SEUS_SPR_IDW_Core_Species_Richness_2005.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2005.tif
-SEUS_SPR_IDW_Core_Species_Richness_2006.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2006.tif
-SEUS_SPR_IDW_Core_Species_Richness_2007.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2007.tif
-SEUS_SPR_IDW_Core_Species_Richness_2008.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:52,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2008.tif
-SEUS_SPR_IDW_Core_Species_Richness_2009.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2009.tif
-SEUS_SPR_IDW_Core_Species_Richness_2010.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2010.tif
-SEUS_SPR_IDW_Core_Species_Richness_2011.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2011.tif
-SEUS_SPR_IDW_Core_Species_Richness_2012.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2012.tif
-SEUS_SPR_IDW_Core_Species_Richness_2013.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2013.tif
-SEUS_SPR_IDW_Core_Species_Richness_2014.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2014.tif
-SEUS_SPR_IDW_Core_Species_Richness_2015.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2015.tif
-SEUS_SPR_IDW_Core_Species_Richness_2016.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:53,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2016.tif
-SEUS_SPR_IDW_Core_Species_Richness_2017.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2017.tif
-SEUS_SPR_IDW_Core_Species_Richness_2018.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2018.tif
-SEUS_SPR_IDW_Core_Species_Richness_2019.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2019.tif
-SEUS_SPR_IDW_Core_Species_Richness_2022.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2022.tif
-SEUS_SPR_IDW_Core_Species_Richness_2023.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2023.tif
-SEUS_SPR_IDW_Core_Species_Richness_2024.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:54,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Core Species Richness\SEUS_SPR_IDW_Core_Species_Richness_2024.tif
-SEUS_SPR_IDW_Species_Richness_1989.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_1989.tif
-SEUS_SPR_IDW_Species_Richness_1990.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_1990.tif
-SEUS_SPR_IDW_Species_Richness_1991.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_1991.tif
-SEUS_SPR_IDW_Species_Richness_1992.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_1992.tif
-SEUS_SPR_IDW_Species_Richness_1993.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:56,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_1993.tif
-SEUS_SPR_IDW_Species_Richness_1994.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_1994.tif
-SEUS_SPR_IDW_Species_Richness_1995.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_1995.tif
-SEUS_SPR_IDW_Species_Richness_1996.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_1996.tif
-SEUS_SPR_IDW_Species_Richness_1997.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_1997.tif
-SEUS_SPR_IDW_Species_Richness_1998.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_1998.tif
-SEUS_SPR_IDW_Species_Richness_1999.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_1999.tif
-SEUS_SPR_IDW_Species_Richness_2000.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2000.tif
-SEUS_SPR_IDW_Species_Richness_2001.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2001.tif
-SEUS_SPR_IDW_Species_Richness_2002.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:57,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2002.tif
-SEUS_SPR_IDW_Species_Richness_2003.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:10:58,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2003.tif
-SEUS_SPR_IDW_Species_Richness_2004.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2004.tif
-SEUS_SPR_IDW_Species_Richness_2005.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2005.tif
-SEUS_SPR_IDW_Species_Richness_2006.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2006.tif
-SEUS_SPR_IDW_Species_Richness_2007.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2007.tif
-SEUS_SPR_IDW_Species_Richness_2008.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:04,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2008.tif
-SEUS_SPR_IDW_Species_Richness_2009.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2009.tif
-SEUS_SPR_IDW_Species_Richness_2010.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2010.tif
-SEUS_SPR_IDW_Species_Richness_2011.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2011.tif
-SEUS_SPR_IDW_Species_Richness_2012.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2012.tif
-SEUS_SPR_IDW_Species_Richness_2013.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2013.tif
-SEUS_SPR_IDW_Species_Richness_2014.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:05,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2014.tif
-SEUS_SPR_IDW_Species_Richness_2015.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2015.tif
-SEUS_SPR_IDW_Species_Richness_2016.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2016.tif
-SEUS_SPR_IDW_Species_Richness_2017.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2017.tif
-SEUS_SPR_IDW_Species_Richness_2018.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2018.tif
-SEUS_SPR_IDW_Species_Richness_2019.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2019.tif
-SEUS_SPR_IDW_Species_Richness_2022.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:06,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2022.tif
-SEUS_SPR_IDW_Species_Richness_2023.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2023.tif
-SEUS_SPR_IDW_Species_Richness_2024.tif,.tif,580.18 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:07,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SPR_IDW\_Species Richness\SEUS_SPR_IDW_Species_Richness_2024.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1989.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1990.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:10,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1991.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1992.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1993.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1994.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1995.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1996.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1997.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1998.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:11,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_1999.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2000.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2001.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2002.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2003.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2004.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2005.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:12,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2006.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2007.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2008.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2009.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2010.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2011.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2012.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2013.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2014.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:13,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2015.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2016.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2017.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:14,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2018.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:20,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2019.tif
-SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:21,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Ancylopsetta quadrocellata\SEUS_SUM_IDW_Ancylopsetta_quadrocellata_2022.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_1989.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_1990.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_1991.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_1992.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_1993.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:23,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_1994.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_1995.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_1996.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_1997.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_1998.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_1999.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2000.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:24,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2001.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2002.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2003.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2004.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2005.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2006.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2007.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:25,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2008.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2009.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2010.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2011.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2012.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2013.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2014.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2015.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:26,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2016.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2017.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2018.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2019.tif
-SEUS_SUM_IDW_Arenaeus_cribrarius_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:27,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Arenaeus cribrarius\SEUS_SUM_IDW_Arenaeus_cribrarius_2022.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_1989.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_1990.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_1991.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:29,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_1992.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_1993.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_1994.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_1995.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_1996.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_1997.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_1998.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_1999.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2000.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:30,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2001.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2002.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2003.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:31,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2003.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2004.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2004.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2005.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:37,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2005.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2006.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2006.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2007.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2007.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2008.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2008.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2009.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2009.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2010.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2010.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2011.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2011.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2012.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2012.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2013.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2013.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2014.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:38,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2014.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2015.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2015.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2016.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2016.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2017.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2017.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2018.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2018.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2019.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2019.tif
-SEUS_SUM_IDW_Bairdiella_chrysoura_2022.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:39,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Bairdiella chrysoura\SEUS_SUM_IDW_Bairdiella_chrysoura_2022.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_1989.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_1989.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_1990.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_1990.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_1991.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_1991.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_1992.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_1992.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_1993.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_1993.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_1994.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_1994.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_1995.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:41,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_1995.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_1996.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_1996.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_1997.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_1997.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_1998.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_1998.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_1999.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_1999.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2000.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2000.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2001.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2001.tif
-SEUS_SUM_IDW_Brevoortia_tyrannus_2002.tif,.tif,580.22 KB,2025-09-18 20:24:17.828552,2024-08-26 15:06:02.564091,2026-04-12 16:11:42,C:\Users\john.f.kennedy\Documents\ArcGIS\Projects\DisMAP\ArcGIS-Analysis-Python\August 1 2025\Images\SEUS_SUM_IDW\Brevoortia tyrannus\SEUS_SUM_IDW_Brevoortia_tyrannus_2002.ti